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
95c2877f
Commit
95c2877f
authored
Mar 25, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove > in fluid grid selectors, fix double padding issue on fluid layout and example
parent
8d52e6d4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
8 deletions
+16
-8
docs/assets/bootstrap.zip
docs/assets/bootstrap.zip
+0
-0
docs/assets/css/bootstrap-responsive.css
docs/assets/css/bootstrap-responsive.css
+7
-4
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+2
-2
less/mixins.less
less/mixins.less
+2
-2
less/responsive-767px-max.less
less/responsive-767px-max.less
+5
-0
No files found.
docs/assets/bootstrap.zip
View file @
95c2877f
No preview for this file type
docs/assets/css/bootstrap-responsive.css
View file @
95c2877f
...
...
@@ -136,6 +136,9 @@
margin-left
:
-20px
;
margin-right
:
-20px
;
}
.container-fluid
{
padding
:
0
;
}
.container
{
width
:
auto
;
}
...
...
@@ -282,11 +285,11 @@
.row-fluid
:after
{
clear
:
both
;
}
.row-fluid
>
[
class
*=
"span"
]
{
.row-fluid
[
class
*=
"span"
]
{
float
:
left
;
margin-left
:
2.762430939%
;
}
.row-fluid
>
[
class
*=
"span"
]
:first-child
{
.row-fluid
[
class
*=
"span"
]
:first-child
{
margin-left
:
0
;
}
.row-fluid
>
.span12
{
...
...
@@ -473,11 +476,11 @@
.row-fluid
:after
{
clear
:
both
;
}
.row-fluid
>
[
class
*=
"span"
]
{
.row-fluid
[
class
*=
"span"
]
{
float
:
left
;
margin-left
:
2.564102564%
;
}
.row-fluid
>
[
class
*=
"span"
]
:first-child
{
.row-fluid
[
class
*=
"span"
]
:first-child
{
margin-left
:
0
;
}
.row-fluid
>
.span12
{
...
...
docs/assets/css/bootstrap.css
View file @
95c2877f
...
...
@@ -253,11 +253,11 @@ a:hover {
.row-fluid
:after
{
clear
:
both
;
}
.row-fluid
>
[
class
*=
"span"
]
{
.row-fluid
[
class
*=
"span"
]
{
float
:
left
;
margin-left
:
2.127659574%
;
}
.row-fluid
>
[
class
*=
"span"
]
:first-child
{
.row-fluid
[
class
*=
"span"
]
:first-child
{
margin-left
:
0
;
}
.row-fluid
>
.span12
{
...
...
less/mixins.less
View file @
95c2877f
...
...
@@ -578,11 +578,11 @@
.row-fluid {
width: 100%;
.clearfix();
>
[class*="span"] {
[class*="span"] {
float: left;
margin-left: @fluidGridGutterWidth;
}
>
[class*="span"]:first-child {
[class*="span"]:first-child {
margin-left: 0;
}
...
...
less/responsive-767px-max.less
View file @
95c2877f
...
...
@@ -75,11 +75,16 @@
padding-left: 20px;
padding-right: 20px;
}
// Negative indent the now static "fixed" navbar
.navbar-fixed-top,
.navbar-fixed-bottom {
margin-left: -20px;
margin-right: -20px;
}
// Remove padding on container given explicit padding set on body
.container-fluid {
padding: 0;
}
// GRID & CONTAINERS
// -----------------
...
...
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