Update selected tab style

This commit is contained in:
EliverLara
2020-03-14 13:48:29 -06:00
parent 0c29f53928
commit 4d8d2c0969
5 changed files with 53 additions and 46 deletions

View File

@@ -604,3 +604,15 @@ box-shadow: none;
@mixin scale-highlight($dir) {
background: linear-gradient(to $dir, #ff005d, #ff8b26);
}
@mixin selected-tab($dir) {
background:
linear-gradient(to $dir, $selected-tab-gradient-start, $selected-tab-gradient-end)
left
bottom
lighten(mix($base_color, darken($headerbar_color, 8%), 30%), 4%)
no-repeat;
@if $dir==right { background-size: 100% 2px; }
@else if $dir==bottom { background-size: 2px 100%; }
border: 0;
}