button-groups.less 4.54 KB
Newer Older
1
2
3
// BUTTON GROUPS
// -------------

4
5
6
7
8

// Make the div behave like a button
.btn-group {
  position: relative;
  .clearfix(); // clears the floated buttons
9
  .ie7-restore-left-whitespace();
10
11
12
13
14
15
16
17
}

// Space out series of button groups
.btn-group + .btn-group {
  margin-left: 5px;
}

// Optional: Group multiple button groups together for a toolbar
18
.btn-toolbar {
19
20
  margin-top: @baseLineHeight / 2;
  margin-bottom: @baseLineHeight / 2;
21
  .btn-group {
22
    display: inline-block;
23
    .ie7-inline-block();
24
25
26
27
28
29
30
31
32
33
  }
}

// Float them, remove border radius, then re-add to first and last elements
.btn-group .btn {
  position: relative;
  float: left;
  margin-left: -1px;
  .border-radius(0);
}
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
.btn-group .btn:first-child {
  margin-left: 0;
     -webkit-border-top-left-radius: 4px;
         -moz-border-radius-topleft: 4px;
             border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
      -moz-border-radius-bottomleft: 4px;
          border-bottom-left-radius: 4px;
}
.btn-group .btn:last-child,
.btn-group .dropdown-toggle {
     -webkit-border-top-right-radius: 4px;
         -moz-border-radius-topright: 4px;
             border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
      -moz-border-radius-bottomright: 4px;
          border-bottom-right-radius: 4px;
}
// Reset corners for large buttons
.btn-group .btn.large:first-child {
  margin-left: 0;
     -webkit-border-top-left-radius: 6px;
         -moz-border-radius-topleft: 6px;
             border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
      -moz-border-radius-bottomleft: 6px;
          border-bottom-left-radius: 6px;
}
.btn-group .btn.large:last-child,
.btn-group .large.dropdown-toggle {
     -webkit-border-top-right-radius: 6px;
         -moz-border-radius-topright: 6px;
             border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
      -moz-border-radius-bottomright: 6px;
          border-bottom-right-radius: 6px;
}

73
74
75
// On hover/focus/active, bring the proper btn to front
.btn-group .btn:hover,
.btn-group .btn:focus,
76
77
.btn-group .btn:active,
.btn-group .btn.active {
78
79
  z-index: 2;
}
80

81
82
83
84
85
86
87
// On active and open, don't show outline
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}


88
89
90
91
92
93
94
95

// Split button dropdowns
// ----------------------

// Give the line between buttons some depth
.btn-group .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
96
  @shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
97
  .box-shadow(@shadow);
Mark Otto's avatar
Mark Otto committed
98
99
  *padding-top: 3px;
  *padding-bottom: 3px;
100
}
101
102
103
.btn-group .btn-mini.dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
Mark Otto's avatar
Mark Otto committed
104
105
106
107
108
109
  *padding-top: 1px;
  *padding-bottom: 1px;
}
.btn-group .btn-small.dropdown-toggle {
  *padding-top: 4px;
  *padding-bottom: 4px;
110
111
112
113
114
}
.btn-group .btn-large.dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
115

116
117
.btn-group.open {

Mark Otto's avatar
Mark Otto committed
118
119
  // The clickable button for toggling the menu
  // Remove the gradient and set the same inset shadow as the :active state
120
121
  .dropdown-toggle {
    background-image: none;
Mark Otto's avatar
Mark Otto committed
122
    @shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
123
124
    .box-shadow(@shadow);
  }
Mark Otto's avatar
Mark Otto committed
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147

  // Keep the hover's background when dropdown is open
  .btn.dropdown-toggle {
    background-color: @btnBackgroundHighlight;
  }
  .btn-primary.dropdown-toggle {
    background-color: @btnPrimaryBackgroundHighlight;
  }
  .btn-warning.dropdown-toggle {
    background-color: @btnWarningBackgroundHighlight;
  }
  .btn-danger.dropdown-toggle {
    background-color: @btnDangerBackgroundHighlight;
  }
  .btn-success.dropdown-toggle {
    background-color: @btnSuccessBackgroundHighlight;
  }
  .btn-info.dropdown-toggle {
    background-color: @btnInfoBackgroundHighlight;
  }
  .btn-inverse.dropdown-toggle {
    background-color: @btnInverseBackgroundHighlight;
  }
148
149
}

Mark Otto's avatar
Mark Otto committed
150
151


152
153
// Reposition the caret
.btn .caret {
154
  margin-top: 7px;
155
156
  margin-left: 0;
}
157
158
159
160
.btn:hover .caret,
.open.btn-group .caret {
  .opacity(100);
}
161
162
163
164
165
166
167
168
169
170
171
172
173
// Carets in other button sizes
.btn-mini .caret {
  margin-top: 5px;
}
.btn-small .caret {
  margin-top: 6px;
}
.btn-large .caret {
  margin-top: 6px;
  border-left:  5px solid transparent;
  border-right: 5px solid transparent;
  border-top:   5px solid @black;
}
174

175
176

// Account for other colors
177
.btn-primary,
178
.btn-warning,
179
180
.btn-danger,
.btn-info,
Simon's avatar
Simon committed
181
.btn-success,
182
.btn-inverse {
183
  .caret {
184
    border-top-color: @white;
185
    border-bottom-color: @white;
186
187
188
189
    .opacity(75);
  }
}