Update selected tab gradient colors

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

View File

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