open #1515 open #117 Fixing selects; Minor tweak to normalize espresso/.../mixins.scss; (cherry picked from commit 2866d56)
21 lines
802 B
SCSS
21 lines
802 B
SCSS
@mixin containerSubtle($bg: $colorBodyBg, $fg: $colorBodyFg, $hover: false) {
|
|
@include containerBase($bg, $fg);
|
|
@include background-image(linear-gradient(lighten($bg, 5%), $bg));
|
|
@include boxShdwSubtle();
|
|
}
|
|
|
|
@mixin btnSubtle($bg: $colorBodyBg, $bgHov: none, $fg: $colorBodyFg, $ic: $colorBtnIcon) {
|
|
@include containerSubtle($bg, $fg);
|
|
@include btnBase($bg, linear-gradient(lighten($bg, 15%), lighten($bg, 10%)), $fg, $ic);
|
|
@include text-shadow($shdwItemText);
|
|
}
|
|
|
|
@function pullForward($c: $colorBodyBg, $p: 20%) {
|
|
// For dark interfaces, lighter things come forward - opposite for light interfaces
|
|
@return lighten($c, $p);
|
|
}
|
|
|
|
@function pushBack($c: $colorBodyBg, $p: 20%) {
|
|
// For dark interfaces, darker things move back - opposite for light interfaces
|
|
@return darken($c, $p);
|
|
} |