Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
01421ecd
Commit
01421ecd
authored
Nov 30, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove sprites vars, change zindex vars
parent
12a00f62
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
31 deletions
+12
-31
docs/customize.html
docs/customize.html
+0
-6
docs/templates/pages/customize.mustache
docs/templates/pages/customize.mustache
+0
-6
less/dropdowns.less
less/dropdowns.less
+1
-1
less/modals.less
less/modals.less
+2
-2
less/navbar.less
less/navbar.less
+1
-1
less/popovers.less
less/popovers.less
+1
-1
less/tooltip.less
less/tooltip.less
+1
-1
less/variables.less
less/variables.less
+6
-13
No files found.
docs/customize.html
View file @
01421ecd
...
...
@@ -248,12 +248,6 @@
<label>
@link-color-hover
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"darken(@link-color, 15%)"
>
<h3>
Sprites
</h3>
<label>
@iconSpritePath
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"'../img/glyphicons-halflings.png'"
>
<label>
@iconWhiteSpritePath
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"'../img/glyphicons-halflings-white.png'"
>
<h3>
Grid system
</h3>
<label>
@gridColumns
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"12"
>
...
...
docs/templates/pages/customize.mustache
View file @
01421ecd
...
...
@@ -180,12 +180,6 @@
<label>
@link-color-hover
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"darken(@link-color, 15%)"
>
<h3>
{{
_i
}}
Sprites
{{/
i
}}
</h3>
<label>
@iconSpritePath
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"'../img/glyphicons-halflings.png'"
>
<label>
@iconWhiteSpritePath
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"'../img/glyphicons-halflings-white.png'"
>
<h3>
{{
_i
}}
Grid system
{{/
i
}}
</h3>
<label>
@gridColumns
</label>
<input
type=
"text"
class=
"span3"
placeholder=
"12"
>
...
...
less/dropdowns.less
View file @
01421ecd
...
...
@@ -38,7 +38,7 @@
position: absolute;
top: 100%;
left: 0;
z-index: @zindex
D
ropdown;
z-index: @zindex
-d
ropdown;
display: none; // none by default, but block on "open" of the menu
float: left;
min-width: 160px;
...
...
less/modals.less
View file @
01421ecd
...
...
@@ -9,7 +9,7 @@
right: 0;
bottom: 0;
left: 0;
z-index: @zindex
ModalBackdrop
;
z-index: @zindex
-modal-background
;
background-color: @black;
// Fade for backdrop
&.fade { opacity: 0; }
...
...
@@ -25,7 +25,7 @@
position: fixed;
top: 10%;
left: 50%;
z-index: @zindex
M
odal;
z-index: @zindex
-m
odal;
width: 560px;
margin-left: -280px;
background-color: #fff;
...
...
less/navbar.less
View file @
01421ecd
...
...
@@ -157,7 +157,7 @@
position: fixed;
right: 0;
left: 0;
z-index: @zindex
FixedNavbar
;
z-index: @zindex
-navbar-fixed
;
margin-bottom: 0; // remove 18px margin for default navbar
border-width: 0 0 1px;
padding-left: 0;
...
...
less/popovers.less
View file @
01421ecd
...
...
@@ -7,7 +7,7 @@
position: absolute;
top: 0;
left: 0;
z-index: @zindex
P
opover;
z-index: @zindex
-p
opover;
display: none;
width: 236px;
padding: 1px;
...
...
less/tooltip.less
View file @
01421ecd
...
...
@@ -6,7 +6,7 @@
// Base class
.tooltip {
position: absolute;
z-index: @zindex
T
ooltip;
z-index: @zindex
-t
ooltip;
display: block;
visibility: visible;
padding: 5px;
...
...
less/variables.less
View file @
01421ecd
...
...
@@ -138,19 +138,12 @@
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
@zindexDropdown: 1000;
@zindexPopover: 1010;
@zindexTooltip: 1030;
@zindexFixedNavbar: 1030;
@zindexModalBackdrop: 1040;
@zindexModal: 1050;
// Sprite icons path
// -------------------------
@iconSpritePath: "../img/glyphicons-halflings.png";
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
@zindex-dropdown: 1000;
@zindex-popover: 1010;
@zindex-tooltip: 1030;
@zindex-navbar-fixed: 1030;
@zindex-modal-background: 1040;
@zindex-modal: 1050;
// Input placeholder text color
// -------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment