forked from treehouse/mastodon
Fix “sensitive” media warning and upload form colors in Mastodon-light
parent
f1a73fd5f4
commit
3d5a789bbb
|
@ -82,6 +82,12 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Change the background colors of media and video spoilers
|
||||||
|
.media-spoiler,
|
||||||
|
.video-player__spoiler {
|
||||||
|
background: $ui-base-color;
|
||||||
|
}
|
||||||
|
|
||||||
// Change the colors used in the dropdown menu
|
// Change the colors used in the dropdown menu
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
background: $ui-base-color;
|
background: $ui-base-color;
|
||||||
|
@ -147,6 +153,24 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.composer--upload_form--actions .icon-button {
|
||||||
|
color: lighten($white, 7%);
|
||||||
|
|
||||||
|
&:active,
|
||||||
|
&:focus,
|
||||||
|
&:hover {
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.composer--upload_form--item > div input {
|
||||||
|
color: lighten($white, 7%);
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: lighten($white, 10%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-menu__separator {
|
.dropdown-menu__separator {
|
||||||
border-bottom-color: lighten($ui-base-color, 12%);
|
border-bottom-color: lighten($ui-base-color, 12%);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue