Commit 96136dbb authored by Mark Otto's avatar Mark Otto

Merge branch 'pullright' of https://github.com/liuyl/bootstrap into liuyl-pullright

Conflicts:
	dist/css/bootstrap.min.css
parents e23906fa efac0bf8
...@@ -633,7 +633,6 @@ blockquote small:before { ...@@ -633,7 +633,6 @@ blockquote small:before {
} }
blockquote.pull-right { blockquote.pull-right {
float: right;
padding-right: 15px; padding-right: 15px;
padding-left: 0; padding-left: 0;
border-right: 5px solid #eeeeee; border-right: 5px solid #eeeeee;
...@@ -1636,6 +1635,7 @@ textarea.input-sm { ...@@ -1636,6 +1635,7 @@ textarea.input-sm {
.form-control-static { .form-control-static {
padding-top: 6px; padding-top: 6px;
margin-bottom: 0;
} }
.help-block { .help-block {
...@@ -2619,10 +2619,6 @@ button.close { ...@@ -2619,10 +2619,6 @@ button.close {
border-bottom-color: #ffffff; border-bottom-color: #ffffff;
} }
.nav > .pull-right {
float: right;
}
.nav .nav-divider { .nav .nav-divider {
height: 1px; height: 1px;
margin: 9px 0; margin: 9px 0;
...@@ -3088,7 +3084,6 @@ button.close { ...@@ -3088,7 +3084,6 @@ button.close {
border-radius: 0; border-radius: 0;
} }
.navbar-nav.pull-right { .navbar-nav.pull-right {
float: right;
width: auto; width: auto;
} }
.navbar-toggle { .navbar-toggle {
...@@ -4547,11 +4542,11 @@ a.list-group-item.active > .badge, ...@@ -4547,11 +4542,11 @@ a.list-group-item.active > .badge,
} }
.pull-right { .pull-right {
float: right; float: right !important;
} }
.pull-left { .pull-left {
float: left; float: left !important;
} }
.hide { .hide {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -318,7 +318,6 @@ ...@@ -318,7 +318,6 @@
} }
&.pull-right { &.pull-right {
float: right;
width: auto; width: auto;
} }
} }
......
...@@ -56,12 +56,6 @@ ...@@ -56,12 +56,6 @@
} }
} }
// Redeclare pull classes because of specificity
// Todo: consider making these utilities !important to avoid this bullshit
> .pull-right {
float: right;
}
// Dividers (basically an hr) within the dropdown // Dividers (basically an hr) within the dropdown
.nav-divider { .nav-divider {
.nav-divider(); .nav-divider();
......
...@@ -202,7 +202,6 @@ blockquote { ...@@ -202,7 +202,6 @@ blockquote {
// Float right with text-align: right // Float right with text-align: right
&.pull-right { &.pull-right {
float: right;
padding-right: 15px; padding-right: 15px;
padding-left: 0; padding-left: 0;
border-right: 5px solid @blockquote-border-color; border-right: 5px solid @blockquote-border-color;
......
...@@ -10,10 +10,10 @@ ...@@ -10,10 +10,10 @@
.clearfix(); .clearfix();
} }
.pull-right { .pull-right {
float: right; float: right !important;
} }
.pull-left { .pull-left {
float: left; float: left !important;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment