Fix “sensitive” media warning and upload form colors in Mastodon-light

This commit is contained in:
Thibaut Girka 2018-09-04 18:11:13 +02:00 committed by ThibG
parent f1a73fd5f4
commit 3d5a789bbb
1 changed files with 24 additions and 0 deletions

View File

@ -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
.dropdown-menu {
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 {
border-bottom-color: lighten($ui-base-color, 12%);
}