Browse Source

Fix activity-stream-tabs colors and set text variables for text colors (#7722)

pull/4/head
Lynx Kotoura 5 years ago
committed by Eugen Rochko
parent
commit
73923ea6c4
1 changed files with 7 additions and 13 deletions
  1. +7
    -13
      app/javascript/styles/mastodon-light/diff.scss

+ 7
- 13
app/javascript/styles/mastodon-light/diff.scss View File

@ -26,20 +26,20 @@
}
.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button {
color: $ui-base-color;
color: lighten($white, 7%);
&:active,
&:focus,
&:hover {
color: darken($ui-base-color, 7%);
color: $white;
}
}
.compose-form .compose-form__modifiers .compose-form__upload-description input {
color: $ui-base-color;
color: lighten($white, 7%);
&::placeholder {
color: $ui-base-color;
color: lighten($white, 7%);
}
}
@ -100,7 +100,7 @@
.dropdown-menu__item {
a {
background: $ui-base-color;
color: $ui-secondary-color;
color: $darker-text-color;
}
}
@ -189,12 +189,6 @@
// Change the default colors used on some parts of the profile pages
.activity-stream-tabs {
background: $account-background-color;
a {
&.active {
color: $ui-primary-color;
}
}
}
.activity-stream {
@ -219,7 +213,7 @@
.account-grid-card {
.controls {
.icon-button {
color: $ui-secondary-color;
color: $darker-text-color;
}
}
@ -230,7 +224,7 @@
}
.username {
color: $ui-secondary-color;
color: $darker-text-color;
}
.account__header__content {

Loading…
Cancel
Save