Permalink
Browse files
Fixing Issue with 3rd level active state for dropdown menus
- Loading branch information
|
@@ -7702,7 +7702,7 @@ button.close { |
|
|
background-color: #eee; |
|
|
} |
|
|
|
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active a { |
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active > a { |
|
|
background-color: #0f4786; |
|
|
color: #fff; |
|
|
} |
|
|
|
@@ -7702,7 +7702,7 @@ button.close { |
|
|
background-color: #eee; |
|
|
} |
|
|
|
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active a { |
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active > a { |
|
|
background-color: #0f861a; |
|
|
color: #fff; |
|
|
} |
|
|
|
@@ -7702,7 +7702,7 @@ button.close { |
|
|
background-color: #eee; |
|
|
} |
|
|
|
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active a { |
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active > a { |
|
|
background-color: #e07502; |
|
|
color: #fff; |
|
|
} |
|
|
|
@@ -7702,7 +7702,7 @@ button.close { |
|
|
background-color: #eee; |
|
|
} |
|
|
|
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active a { |
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active > a { |
|
|
background-color: #850f86; |
|
|
color: #fff; |
|
|
} |
|
|
|
@@ -7702,7 +7702,7 @@ button.close { |
|
|
background-color: #eee; |
|
|
} |
|
|
|
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active a { |
|
|
#nav-secondary .nav.nav-pills.nav-stacked .active > a { |
|
|
background-color: #BD4147; |
|
|
color: #fff; |
|
|
} |
|
|
|
@@ -22,7 +22,7 @@ $btn-primary-border: darken($brand-primary, 15%) !default; |
|
|
$btn-success-border: darken($brand-success, 15%) !default; |
|
|
$btn-info-border: darken($brand-info, 15%) !default; |
|
|
$btn-warning-border: darken($brand-warning, 15%) !default; |
|
|
$btn-danger-border: darken($brand-danger, 15%) !default; |
|
|
$btn-danger-border: darken($brand-danger, 15%) !default; |
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1,4 +1,4 @@ |
|
|
// blue |
|
|
$nav-color-base: #0f4786; |
|
|
$widget-head-color: $nav-color-base; |
|
|
@import "_hale2015-common.scss";
|
|
|
@import "_hale2015-common.scss";
|
|
|
@@ -1,4 +1,4 @@ |
|
|
// green |
|
|
$nav-color-base: #0f861a; |
|
|
$widget-head-color: $nav-color-base; |
|
|
@import "_hale2015-common.scss";
|
|
|
@import "_hale2015-common.scss";
|
|
|
@@ -1,4 +1,4 @@ |
|
|
// orange |
|
|
$nav-color-base: #e07502; |
|
|
$widget-head-color: $nav-color-base; |
|
|
@import "_hale2015-common.scss";
|
|
|
@import "_hale2015-common.scss";
|
|
|
@@ -1,4 +1,4 @@ |
|
|
// purple |
|
|
$nav-color-base: #850f86; |
|
|
$widget-head-color: $nav-color-base; |
|
|
@import "_hale2015-common.scss";
|
|
|
@import "_hale2015-common.scss";
|
|
|
@@ -1,4 +1,4 @@ |
|
|
// red |
|
|
$nav-color-base: #BD4147; |
|
|
$widget-head-color: $nav-color-base; |
|
|
@import "_hale2015-common.scss";
|
|
|
@import "_hale2015-common.scss";
|