Browse Source

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

closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
3d5a789bbb
1 changed files with 24 additions and 0 deletions
  1. +24
    -0
      app/javascript/flavours/glitch/styles/mastodon-light/diff.scss

+ 24
- 0
app/javascript/flavours/glitch/styles/mastodon-light/diff.scss 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%);
}

Loading…
Cancel
Save