buttons.less 3.39 KB
Newer Older
1
2
3
// BUTTON STYLES
// -------------

4
5

// Base styles
Mark Otto's avatar
Mark Otto committed
6
// --------------------------------------------------
7

Mark Otto's avatar
Mark Otto committed
8
// Core
9
10
.btn {
  display: inline-block;
11
  padding: 4px 10px 4px;
12
  font-size: @baseFontSize;
13
  line-height: @baseLineHeight;
14
  color: @grayDark;
15
  text-align: center;
16
  text-shadow: 0 1px 1px rgba(255,255,255,.75);
17
  #gradient > .vertical-three-colors(@white, @white, 25%, darken(@white, 10%)); // Don't use .gradientbar() here since it does a three-color gradient
18
19
20
21
22
23
24
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  .border-radius(4px);
  @shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  .box-shadow(@shadow);
  cursor: pointer;

Mark Otto's avatar
Mark Otto committed
25
  // Give IE7 some love
26
  .ie7-restore-left-whitespace();
Mark Otto's avatar
Mark Otto committed
27
}
28

Mark Otto's avatar
Mark Otto committed
29
30
31
32
33
34
// Hover state
.btn:hover {
  color: @grayDark;
  text-decoration: none;
  background-color: darken(@white, 10%);
  background-position: 0 -15px;
35

Mark Otto's avatar
Mark Otto committed
36
37
38
39
  // transition is only when going to hover, otherwise the background
  // behind the gradient (there for IE<=9 fallback) gets mismatched
  .transition(background-position .1s linear);
}
40

Mark Otto's avatar
Mark Otto committed
41
42
43
44
// Focus state for keyboard and accessibility
.btn:focus {
  .tab-focus();
}
45

Mark Otto's avatar
Mark Otto committed
46
// Active state
47
.btn.active,
Mark Otto's avatar
Mark Otto committed
48
49
50
51
52
53
54
55
56
.btn:active {
  background-image: none;
  @shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  .box-shadow(@shadow);
  background-color: darken(@white, 10%);
  background-color: darken(@white, 15%) e("\9");
  color: rgba(0,0,0,.5);
  outline: 0;
}
57

Mark Otto's avatar
Mark Otto committed
58
// Disabled state
59
.btn.disabled,
Mark Otto's avatar
Mark Otto committed
60
61
62
63
64
65
66
67
68
69
70
71
72
.btn[disabled] {
  cursor: default;
  background-image: none;
  background-color: darken(@white, 10%);
  .opacity(65);
  .box-shadow(none);
}


// Button Sizes
// --------------------------------------------------

// Large
73
.btn-large {
Mark Otto's avatar
Mark Otto committed
74
75
76
77
78
  padding: 9px 14px;
  font-size: @baseFontSize + 2px;
  line-height: normal;
  .border-radius(5px);
}
79
.btn-large .icon {
Mark Otto's avatar
Mark Otto committed
80
81
82
83
  margin-top: 1px;
}

// Small
84
.btn-small {
Mark Otto's avatar
Mark Otto committed
85
86
87
88
  padding: 5px 9px;
  font-size: @baseFontSize - 2px;
  line-height: @baseLineHeight - 2px;
}
89
.btn-small .icon {
Mark Otto's avatar
Mark Otto committed
90
91
92
93
94
95
96
97
98
  margin-top: -1px;
}


// Alternate buttons
// --------------------------------------------------

// Set text color
// -------------------------
99
100
101
102
103
104
105
106
107
108
.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover {
Mark Otto's avatar
Mark Otto committed
109
  text-shadow: 0 -1px 0 rgba(0,0,0,.25);
Mark Otto's avatar
Mark Otto committed
110
  color: @white;
Mark Otto's avatar
Mark Otto committed
111
112
}
// Provide *some* extra contrast for those who can get it
113
114
115
116
117
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active {
Mark Otto's avatar
Mark Otto committed
118
119
120
121
122
  color: rgba(255,255,255,.75);
}

// Set the backgrounds
// -------------------------
123
.btn-primary {
Mark Otto's avatar
Mark Otto committed
124
  .buttonBackground(@primaryButtonBackground, spin(@primaryButtonBackground, 20));
125
}
Mark Otto's avatar
Mark Otto committed
126
// Warning appears are orange
127
.btn-warning {
Mark Otto's avatar
Mark Otto committed
128
129
130
  .buttonBackground(lighten(@orange, 15%), @orange);
}
// Danger and error appear as red
131
.btn-danger {
Mark Otto's avatar
Mark Otto committed
132
133
134
  .buttonBackground(#ee5f5b, #bd362f);
}
// Success appears as green
135
.btn-success {
Mark Otto's avatar
Mark Otto committed
136
137
138
  .buttonBackground(#62c462, #51a351);
}
// Info appears as a neutral blue
139
.btn-info {
Mark Otto's avatar
Mark Otto committed
140
141
142
143
144
145
  .buttonBackground(#5bc0de, #2f96b4);
}


// Cross-browser Jank
// --------------------------------------------------
146
147

button.btn,
148
input[type="submit"].btn {
149
  &::-moz-focus-inner {
Mark Otto's avatar
Mark Otto committed
150
151
  padding: 0;
    border: 0;
152
  }
153
154
155
156
157
158
159
160
161
162
163
164

  // IE7 has some default padding on button controls
  *padding-top: 2px;
  *padding-bottom: 2px;
  &.large {
    *padding-top: 7px;
    *padding-bottom: 7px;
  }
  &.small {
    *padding-top: 3px;
    *padding-bottom: 3px;
  }
165
}