Sha256: ef56f84ce399f86211c48763118e760814e53a832e2447d30d9bbe41829bfcef
Contents?: true
Size: 1.14 KB
Versions: 20
Compression:
Stored size: 1.14 KB
Contents
// Variables //------------------------------------------------------ $pill-background-color: $aqua-dark !default; $pill-background-color-hover: $lightgray-dark !default; $pill-font-color: $darkgray-dark !default; $pill-font-color-active: $white !default; // Exports //------------------------------------------------------ @include exports("pill") { /** * pill * -------------------------------------------------- */ .nav-pills { & > li.active > a, & > li.active > a:hover, & > li.active > a:focus { color: $pill-font-color-active; background-color: $pill-background-color; } & > li > a { color: $pill-background-color; } & > li > a:hover { color: $pill-font-color; background-color: $pill-background-color-hover; } & > .active > a > .badge { color: $pill-background-color; } & .open > a, & .open > a:focus, & .open > a:hover { color: $pill-font-color; background-color: $pill-background-color-hover; } } }
Version data entries
20 entries across 20 versions & 2 rubygems