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
69a3e9b4
Commit
69a3e9b4
authored
Aug 13, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable button groups in vertical button groups
parent
f15f2598
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
21 deletions
+60
-21
components.html
components.html
+11
-1
dist/css/bootstrap.css
dist/css/bootstrap.css
+28
-6
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/button-groups.less
less/button-groups.less
+20
-13
No files found.
components.html
View file @
69a3e9b4
...
@@ -230,7 +230,7 @@ base_url: "../"
...
@@ -230,7 +230,7 @@ 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
btn-group
-vertical"
>
<div
class=
"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"
>
<div
class=
"btn-group"
>
...
@@ -265,6 +265,16 @@ base_url: "../"
...
@@ -265,6 +265,16 @@ base_url: "../"
<li><a
href=
"#"
>
Dropdown link
</a></li>
<li><a
href=
"#"
>
Dropdown link
</a></li>
</ul>
</ul>
</div>
</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 %}
...
...
dist/css/bootstrap.css
View file @
69a3e9b4
...
@@ -3559,10 +3559,34 @@ button.close {
...
@@ -3559,10 +3559,34 @@ button.close {
max-width
:
100%
;
max-width
:
100%
;
}
}
.btn-group-vertical
.btn
+
.btn
,
.btn-group-vertical
>
.btn-group
:before
,
.btn-group-vertical
.btn
+
.btn-group
,
.btn-group-vertical
>
.btn-group
:after
{
.btn-group-vertical
.btn-group
+
.btn
,
display
:
table
;
.btn-group-vertical
.btn-group
+
.btn-group
{
content
:
" "
;
}
.btn-group-vertical
>
.btn-group
:after
{
clear
:
both
;
}
.btn-group-vertical
>
.btn-group
:before
,
.btn-group-vertical
>
.btn-group
:after
{
display
:
table
;
content
:
" "
;
}
.btn-group-vertical
>
.btn-group
:after
{
clear
:
both
;
}
.btn-group-vertical
>
.btn-group
>
.btn
{
float
:
none
;
}
.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
;
margin-left
:
0
;
}
}
...
@@ -3589,14 +3613,12 @@ button.close {
...
@@ -3589,14 +3613,12 @@ button.close {
.btn-group-vertical
>
.btn-group
:first-child
>
.btn
:last-child
,
.btn-group-vertical
>
.btn-group
:first-child
>
.btn
:last-child
,
.btn-group-vertical
>
.btn-group
:first-child
>
.dropdown-toggle
{
.btn-group-vertical
>
.btn-group
:first-child
>
.dropdown-toggle
{
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-group
:last-child
>
.btn
:first-child
{
.btn-group-vertical
>
.btn-group
:last-child
>
.btn
:first-child
{
border-top-right-radius
:
0
;
border-top-right-radius
:
0
;
border-bottom-left-radius
:
4px
;
border-top-left-radius
:
0
;
border-top-left-radius
:
0
;
}
}
...
...
dist/css/bootstrap.min.css
View file @
69a3e9b4
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/button-groups.less
View file @
69a3e9b4
...
@@ -168,18 +168,27 @@
...
@@ -168,18 +168,27 @@
// Vertical button groups
// Vertical button groups
// ----------------------
// ----------------------
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
display: block;
float: none;
width: 100%;
max-width: 100%;
}
.btn-group-vertical {
.btn-group-vertical {
.btn + .btn,
> .btn,
.btn + .btn-group,
> .btn-group {
.btn-group + .btn,
display: block;
.btn-group + .btn-group {
float: none;
width: 100%;
max-width: 100%;
}
// Clear floats so dropdown menus can be properly placed
> .btn-group {
.clearfix();
> .btn {
float: none;
}
}
> .btn + .btn,
> .btn + .btn-group,
> .btn-group + .btn,
> .btn-group + .btn-group {
margin-top: -1px;
margin-top: -1px;
margin-left: 0;
margin-left: 0;
}
}
...
@@ -204,12 +213,10 @@
...
@@ -204,12 +213,10 @@
.btn-group-vertical > .btn-group:first-child {
.btn-group-vertical > .btn-group:first-child {
> .btn:last-child,
> .btn:last-child,
> .dropdown-toggle {
> .dropdown-toggle {
border-top-right-radius: @border-radius-base;
.border-bottom-radius(0);
.border-bottom-radius(0);
}
}
}
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
border-bottom-left-radius: @border-radius-base;
.border-top-radius(0);
.border-top-radius(0);
}
}
...
...
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