fixed active and disabled elements of navbar

This commit is contained in:
FezVrasta 2014-12-13 12:32:27 +01:00
parent f9c738d19e
commit fb512058b2
9 changed files with 12 additions and 9 deletions

View File

@ -19401,13 +19401,14 @@ legend {
.navbar .navbar-nav > .active > a:hover, .navbar .navbar-nav > .active > a:hover,
.navbar .navbar-nav > .active > a:focus { .navbar .navbar-nav > .active > a:focus {
color: inherit; color: inherit;
background-color: transparent; background-color: rgba(255, 255, 255, 0.1);
} }
.navbar .navbar-nav > .disabled > a, .navbar .navbar-nav > .disabled > a,
.navbar .navbar-nav > .disabled > a:hover, .navbar .navbar-nav > .disabled > a:hover,
.navbar .navbar-nav > .disabled > a:focus { .navbar .navbar-nav > .disabled > a:focus {
color: inherit; color: inherit;
background-color: transparent; background-color: transparent;
opacity: 0.9;
} }
.navbar .navbar-toggle { .navbar .navbar-toggle {
border: 0; border: 0;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -19377,13 +19377,14 @@ legend {
.navbar .navbar-nav > .active > a:hover, .navbar .navbar-nav > .active > a:hover,
.navbar .navbar-nav > .active > a:focus { .navbar .navbar-nav > .active > a:focus {
color: inherit; color: inherit;
background-color: transparent; background-color: rgba(255, 255, 255, 0.1);
} }
.navbar .navbar-nav > .disabled > a, .navbar .navbar-nav > .disabled > a,
.navbar .navbar-nav > .disabled > a:hover, .navbar .navbar-nav > .disabled > a:hover,
.navbar .navbar-nav > .disabled > a:focus { .navbar .navbar-nav > .disabled > a:focus {
color: inherit; color: inherit;
background-color: transparent; background-color: transparent;
opacity: 0.9;
} }
.navbar .navbar-toggle { .navbar .navbar-toggle {
border: 0; border: 0;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,7 @@
&:hover, &:hover,
&:focus { &:focus {
color: inherit; color: inherit;
background-color: transparent; background-color: rgba(255, 255, 255, 0.1);
} }
} }
> .disabled > a { > .disabled > a {
@ -47,6 +47,7 @@
&:focus { &:focus {
color: inherit; color: inherit;
background-color: transparent; background-color: transparent;
opacity: 0.9;
} }
} }
} }