mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Updated drag & drop indicator color
This commit is contained in:
parent
04f39e047e
commit
f901adf5ae
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-image-uploader.-drag-over {
|
.gh-image-uploader.-drag-over {
|
||||||
border: 2px solid var(--blue);
|
border: 2px solid var(--green);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-image-uploader.-with-image {
|
.gh-image-uploader.-with-image {
|
||||||
|
|
|
@ -621,7 +621,7 @@ export default Service.extend({
|
||||||
if (!dropIndicator) {
|
if (!dropIndicator) {
|
||||||
dropIndicator = document.createElement('div');
|
dropIndicator = document.createElement('div');
|
||||||
dropIndicator.id = constants.DROP_INDICATOR_ID;
|
dropIndicator.id = constants.DROP_INDICATOR_ID;
|
||||||
dropIndicator.classList.add('bg-blue', 'br-pill');
|
dropIndicator.classList.add('bg-green', 'br-pill');
|
||||||
dropIndicator.style.position = 'absolute';
|
dropIndicator.style.position = 'absolute';
|
||||||
dropIndicator.style.opacity = 0;
|
dropIndicator.style.opacity = 0;
|
||||||
dropIndicator.style.width = '4px';
|
dropIndicator.style.width = '4px';
|
||||||
|
|
Loading…
Add table
Reference in a new issue