mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-13 17:14:04 +02:00
clear up nav variables
This commit is contained in:
Binary file not shown.
5
docs/assets/css/bootstrap.css
vendored
5
docs/assets/css/bootstrap.css
vendored
@@ -310,8 +310,9 @@ h4,
|
|||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-weight: bold;
|
font-family: '';
|
||||||
color: #333333;
|
font-weight: normal;
|
||||||
|
color: '';
|
||||||
text-rendering: optimizelegibility;
|
text-rendering: optimizelegibility;
|
||||||
}
|
}
|
||||||
h1 small,
|
h1 small,
|
||||||
|
@@ -233,9 +233,9 @@
|
|||||||
// Active nav items
|
// Active nav items
|
||||||
.navbar .nav .active > a,
|
.navbar .nav .active > a,
|
||||||
.navbar .nav .active > a:hover {
|
.navbar .nav .active > a:hover {
|
||||||
color: @navbarLinkColorHover;
|
color: @navbarLinkColorActive;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: @navbarBackground;
|
background-color: @navbarLinkBackgroundActive;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dividers (basically a vertical hr)
|
// Dividers (basically a vertical hr)
|
||||||
|
@@ -105,10 +105,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// COMPONENT VARIABLES
|
// COMPONENT VARIABLES
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
// Z-index master list
|
// Z-index master list
|
||||||
|
// -------------------------
|
||||||
// Used for a bird's eye view of components dependent on the z-axis
|
// Used for a bird's eye view of components dependent on the z-axis
|
||||||
// Try to avoid customizing these :)
|
// Try to avoid customizing these :)
|
||||||
@zindexDropdown: 1000;
|
@zindexDropdown: 1000;
|
||||||
@@ -118,32 +120,46 @@
|
|||||||
@zindexModalBackdrop: 1040;
|
@zindexModalBackdrop: 1040;
|
||||||
@zindexModal: 1050;
|
@zindexModal: 1050;
|
||||||
|
|
||||||
|
|
||||||
// Sprite icons path
|
// Sprite icons path
|
||||||
|
// -------------------------
|
||||||
@iconSpritePath: "../img/glyphicons-halflings.png";
|
@iconSpritePath: "../img/glyphicons-halflings.png";
|
||||||
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
||||||
|
|
||||||
|
|
||||||
// Input placeholder text color
|
// Input placeholder text color
|
||||||
|
// -------------------------
|
||||||
@placeholderText: @grayLight;
|
@placeholderText: @grayLight;
|
||||||
|
|
||||||
|
|
||||||
// Hr border color
|
// Hr border color
|
||||||
|
// -------------------------
|
||||||
@hrBorder: @grayLighter;
|
@hrBorder: @grayLighter;
|
||||||
|
|
||||||
|
|
||||||
// Navbar
|
// Navbar
|
||||||
|
// -------------------------
|
||||||
@navbarHeight: 40px;
|
@navbarHeight: 40px;
|
||||||
@navbarBackground: @grayDarker;
|
@navbarBackground: @grayDarker;
|
||||||
@navbarBackgroundHighlight: @grayDark;
|
@navbarBackgroundHighlight: @grayDark;
|
||||||
@navbarLinkBackgroundHover: transparent;
|
|
||||||
|
|
||||||
@navbarText: @grayLight;
|
@navbarText: @grayLight;
|
||||||
@navbarLinkColor: @grayLight;
|
@navbarLinkColor: @grayLight;
|
||||||
@navbarLinkColorHover: @white;
|
@navbarLinkColorHover: @white;
|
||||||
|
@navbarLinkColorActive: @navbarLinkColorHover;
|
||||||
|
@navbarLinkBackgroundHover: transparent;
|
||||||
|
@navbarLinkBackgroundActive: @navbarBackground;
|
||||||
|
|
||||||
|
|
||||||
// Hero unit
|
// Hero unit
|
||||||
|
// -------------------------
|
||||||
@heroUnitBackground: #312f2e;
|
@heroUnitBackground: #312f2e;
|
||||||
@heroUnitHeadingColor: @white;
|
@heroUnitHeadingColor: @white;
|
||||||
@heroUnitLeadColor: @white;
|
@heroUnitLeadColor: @white;
|
||||||
|
|
||||||
|
|
||||||
// Form states and alerts
|
// Form states and alerts
|
||||||
|
// -------------------------
|
||||||
@warningText: #c09853;
|
@warningText: #c09853;
|
||||||
@warningBackground: #fcf8e3;
|
@warningBackground: #fcf8e3;
|
||||||
@warningBorder: darken(spin(@warningBackground, -10), 3%);
|
@warningBorder: darken(spin(@warningBackground, -10), 3%);
|
||||||
@@ -162,15 +178,19 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// GRID
|
// GRID
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
// Default 940px grid
|
// Default 940px grid
|
||||||
|
// -------------------------
|
||||||
@gridColumns: 12;
|
@gridColumns: 12;
|
||||||
@gridColumnWidth: 60px;
|
@gridColumnWidth: 60px;
|
||||||
@gridGutterWidth: 20px;
|
@gridGutterWidth: 20px;
|
||||||
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
||||||
|
|
||||||
|
|
||||||
// Fluid grid
|
// Fluid grid
|
||||||
|
// -------------------------
|
||||||
@fluidGridColumnWidth: 6.382978723%;
|
@fluidGridColumnWidth: 6.382978723%;
|
||||||
@fluidGridGutterWidth: 2.127659574%;
|
@fluidGridGutterWidth: 2.127659574%;
|
||||||
|
Reference in New Issue
Block a user