DEV: Refactor `dark-light-diff` usage in stylesheets

- Adds new `$danger-low-mid` SCSS variable
- Removes `dark-light-diff` outside variables and color transformations
This commit is contained in:
Penar Musaraj 2020-07-28 11:00:24 -04:00
parent c9485692ed
commit 69efbd213b
No known key found for this signature in database
GPG Key ID: E390435D881FF0F7
6 changed files with 12 additions and 27 deletions

View File

@ -255,7 +255,7 @@
background: blend-primary-secondary(5%);
&:hover {
color: $primary;
background: dark-light-diff($primary, $secondary, 90%, -80%);
background: $primary-low;
}
}
/* as a big ol' click target, don't let text inside be selected */

View File

@ -789,12 +789,7 @@ blockquote > *:last-child {
}
.small-action.deleted {
background-color: dark-light-diff(
rgba($danger, 0.7),
$secondary,
50%,
-60%
);
background-color: $danger-low-mid;
}
.small-action-desc.timegap {

View File

@ -16,13 +16,7 @@
}
&.deleted {
opacity: 0.8;
background-color: dark-light-diff(
rgba($danger, 0.7),
$secondary,
50%,
-10%
);
background-color: $danger-low-mid;
}
&.hidden {

View File

@ -64,6 +64,12 @@ $highlight-high: dark-light-diff($highlight, $secondary, -50%, -10%) !default;
//danger
$danger-low: dark-light-diff($danger, $secondary, 85%, -64%) !default;
$danger-low-mid: dark-light-diff(
rgba($danger, 0.7),
$secondary,
50%,
-60%
) !default;
$danger-medium: dark-light-diff($danger, $secondary, 30%, -35%) !default;
//success

View File

@ -418,7 +418,7 @@ pre.copy-codeblocks:hover .copy-cmd {
width: 100%;
&:hover {
color: $primary;
background: dark-light-diff($primary, $secondary, 90%, -80%);
background: $primary-low;
}
}
}
@ -512,12 +512,7 @@ video {
.deleted {
.topic-body {
background-color: dark-light-diff(
rgba($danger, 0.7),
$secondary,
50%,
-60%
);
background-color: $danger-low-mid;
}
}

View File

@ -312,12 +312,7 @@ button.select-post {
.deleted {
.topic-body {
background-color: dark-light-diff(
rgba($danger, 0.7),
$secondary,
50%,
-60%
);
background-color: $danger-low-mid;
}
}