mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-13 17:14:04 +02:00
derp
This commit is contained in:
@@ -230,11 +230,41 @@ base_url: "../"
|
|||||||
<h3 id="btn-groups-vertical">Vertical button groups</h3>
|
<h3 id="btn-groups-vertical">Vertical button groups</h3>
|
||||||
<p>Make a set of buttons appear vertically stacked rather than horizontally.</p>
|
<p>Make a set of buttons appear vertically stacked rather than horizontally.</p>
|
||||||
<div class="bs-example">
|
<div class="bs-example">
|
||||||
<div class="btn-group-vertical">
|
<div class="btn-group btn-group-vertical">
|
||||||
<button type="button" class="btn btn-default">Button</button>
|
<button type="button" class="btn btn-default">Button</button>
|
||||||
<button type="button" class="btn btn-default">Button</button>
|
<button type="button" class="btn btn-default">Button</button>
|
||||||
|
<div class="btn-group">
|
||||||
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||||
|
Dropdown
|
||||||
|
<span class="caret"></span>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="#">Dropdown link</a></li>
|
||||||
|
<li><a href="#">Dropdown link</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<button type="button" class="btn btn-default">Button</button>
|
<button type="button" class="btn btn-default">Button</button>
|
||||||
<button type="button" class="btn btn-default">Button</button>
|
<button type="button" class="btn btn-default">Button</button>
|
||||||
|
<div class="btn-group">
|
||||||
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||||
|
Dropdown
|
||||||
|
<span class="caret"></span>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="#">Dropdown link</a></li>
|
||||||
|
<li><a href="#">Dropdown link</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="btn-group">
|
||||||
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||||
|
Dropdown
|
||||||
|
<span class="caret"></span>
|
||||||
|
</button>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="#">Dropdown link</a></li>
|
||||||
|
<li><a href="#">Dropdown link</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
|
34
dist/css/bootstrap.css
vendored
34
dist/css/bootstrap.css
vendored
@@ -3551,28 +3551,52 @@ button.close {
|
|||||||
border-bottom-width: 5px;
|
border-bottom-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-vertical > .btn {
|
.btn-group-vertical > .btn,
|
||||||
|
.btn-group-vertical > .btn-group {
|
||||||
display: block;
|
display: block;
|
||||||
float: none;
|
float: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-vertical > .btn + .btn {
|
.btn-group-vertical .btn + .btn,
|
||||||
|
.btn-group-vertical .btn + .btn-group,
|
||||||
|
.btn-group-vertical .btn-group + .btn,
|
||||||
|
.btn-group-vertical .btn-group + .btn-group {
|
||||||
margin-top: -1px;
|
margin-top: -1px;
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-vertical .btn:not(:first-child):not(:last-child) {
|
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-vertical .btn:first-child:not(:last-child) {
|
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
||||||
|
border-top-right-radius: 4px;
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group-vertical .btn:last-child:not(:first-child) {
|
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
|
||||||
|
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
|
||||||
|
border-top-right-radius: 4px;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -55,11 +55,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Prevent double borders when buttons are next to each other
|
// Prevent double borders when buttons are next to each other
|
||||||
.btn-group .btn + .btn,
|
.btn-group {
|
||||||
.btn-group .btn + .btn-group,
|
.btn + .btn,
|
||||||
.btn-group .btn-group + .btn,
|
.btn + .btn-group,
|
||||||
.btn-group .btn-group + .btn-group {
|
.btn-group + .btn,
|
||||||
margin-left: -1px;
|
.btn-group + .btn-group {
|
||||||
|
margin-left: -1px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Optional: Group multiple button groups together for a toolbar
|
// Optional: Group multiple button groups together for a toolbar
|
||||||
@@ -166,26 +168,51 @@
|
|||||||
// Vertical button groups
|
// Vertical button groups
|
||||||
// ----------------------
|
// ----------------------
|
||||||
|
|
||||||
.btn-group-vertical > .btn {
|
.btn-group-vertical > .btn,
|
||||||
|
.btn-group-vertical > .btn-group {
|
||||||
display: block;
|
display: block;
|
||||||
float: none;
|
float: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
+ .btn {
|
}
|
||||||
|
.btn-group-vertical {
|
||||||
|
.btn + .btn,
|
||||||
|
.btn + .btn-group,
|
||||||
|
.btn-group + .btn,
|
||||||
|
.btn-group + .btn-group {
|
||||||
margin-top: -1px;
|
margin-top: -1px;
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btn-group-vertical .btn {
|
|
||||||
|
.btn-group-vertical > .btn {
|
||||||
&:not(:first-child):not(:last-child) {
|
&:not(:first-child):not(:last-child) {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
&:first-child:not(:last-child) {
|
&:first-child:not(:last-child) {
|
||||||
|
border-top-right-radius: @border-radius-base;
|
||||||
.border-bottom-radius(0);
|
.border-bottom-radius(0);
|
||||||
}
|
}
|
||||||
&:last-child:not(:first-child) {
|
&:last-child:not(:first-child) {
|
||||||
|
border-bottom-left-radius: @border-radius-base;
|
||||||
.border-top-radius(0);
|
.border-top-radius(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.btn-group-vertical > .btn-group:first-child {
|
||||||
|
> .btn:last-child,
|
||||||
|
> .dropdown-toggle {
|
||||||
|
border-top-right-radius: @border-radius-base;
|
||||||
|
.border-bottom-radius(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
||||||
|
border-bottom-left-radius: @border-radius-base;
|
||||||
|
.border-top-radius(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Justified button groups
|
// Justified button groups
|
||||||
|
Reference in New Issue
Block a user