mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
add navbar background hover variable and fix uneditable-input with append/prepend controls
This commit is contained in:
parent
86b6ea4b5f
commit
a9e469e75a
5 changed files with 4 additions and 1 deletions
Binary file not shown.
1
docs/assets/css/bootstrap.css
vendored
1
docs/assets/css/bootstrap.css
vendored
|
@ -913,6 +913,7 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
||||||
border-radius: 3px 0 0 3px;
|
border-radius: 3px 0 0 3px;
|
||||||
}
|
}
|
||||||
.input-append .uneditable-input {
|
.input-append .uneditable-input {
|
||||||
|
border-left-color: #eee;
|
||||||
border-right-color: #ccc;
|
border-right-color: #ccc;
|
||||||
}
|
}
|
||||||
.input-append .add-on {
|
.input-append .add-on {
|
||||||
|
|
|
@ -395,6 +395,7 @@ select:focus:required:invalid {
|
||||||
.border-radius(3px 0 0 3px);
|
.border-radius(3px 0 0 3px);
|
||||||
}
|
}
|
||||||
.uneditable-input {
|
.uneditable-input {
|
||||||
|
border-left-color: #eee;
|
||||||
border-right-color: #ccc;
|
border-right-color: #ccc;
|
||||||
}
|
}
|
||||||
.add-on {
|
.add-on {
|
||||||
|
|
|
@ -194,7 +194,7 @@
|
||||||
}
|
}
|
||||||
// Hover
|
// Hover
|
||||||
.navbar .nav > li > a:hover {
|
.navbar .nav > li > a:hover {
|
||||||
background-color: transparent;
|
background-color: @navbarLinkBackgroundHover; // "transparent" is default to differentiate :hover from .active
|
||||||
color: @navbarLinkColorHover;
|
color: @navbarLinkColorHover;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
@navbarHeight: 40px;
|
@navbarHeight: 40px;
|
||||||
@navbarBackground: @grayDarker;
|
@navbarBackground: @grayDarker;
|
||||||
@navbarBackgroundHighlight: @grayDark;
|
@navbarBackgroundHighlight: @grayDark;
|
||||||
|
@navbarLinkBackgroundHover: transparent;
|
||||||
|
|
||||||
@navbarText: @grayLight;
|
@navbarText: @grayLight;
|
||||||
@navbarLinkColor: @grayLight;
|
@navbarLinkColor: @grayLight;
|
||||||
|
|
Loading…
Reference in a new issue