bootstrap-sass-rails 3.0.0.1 → 3.0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +18 -6
- data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +0 -1
- data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +1 -0
- data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +31 -20
- data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +10 -6
- data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +6 -2
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +58 -0
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +3 -3
- data/app/assets/stylesheets/twitter/bootstrap/_theme.scss +31 -31
- data/lib/bootstrap/sass/rails/version.rb +1 -1
- metadata +5 -5
@@ -54,16 +54,28 @@
|
|
54
54
|
// Alternate buttons
|
55
55
|
// --------------------------------------------------
|
56
56
|
|
57
|
-
|
58
|
-
@include button-variant(
|
57
|
+
.btn-default {
|
58
|
+
@include button-variant($btn-default-color, $btn-default-bg, $btn-default-border);
|
59
|
+
}
|
60
|
+
.btn-primary {
|
61
|
+
@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
62
|
+
}
|
59
63
|
// Warning appears as orange
|
60
|
-
|
64
|
+
.btn-warning {
|
65
|
+
@include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
66
|
+
}
|
61
67
|
// Danger and error appear as red
|
62
|
-
|
68
|
+
.btn-danger {
|
69
|
+
@include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border);
|
70
|
+
}
|
63
71
|
// Success appears as green
|
64
|
-
|
72
|
+
.btn-success {
|
73
|
+
@include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
|
74
|
+
}
|
65
75
|
// Info appears as blue-green
|
66
|
-
|
76
|
+
.btn-info {
|
77
|
+
@include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
|
78
|
+
}
|
67
79
|
|
68
80
|
|
69
81
|
// Link buttons
|
@@ -223,6 +223,7 @@ input[type="checkbox"],
|
|
223
223
|
}
|
224
224
|
|
225
225
|
// Form control sizing
|
226
|
+
|
226
227
|
@include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small);
|
227
228
|
|
228
229
|
@include input-size('.input-lg', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large);
|
@@ -120,7 +120,7 @@
|
|
120
120
|
-webkit-transition-duration: $transition-duration;
|
121
121
|
transition-duration: $transition-duration;
|
122
122
|
}
|
123
|
-
@mixin transition-transform($transition) {
|
123
|
+
@mixin transition-transform($transition...) {
|
124
124
|
-webkit-transition: -webkit-transform $transition;
|
125
125
|
-moz-transition: -moz-transform $transition;
|
126
126
|
-o-transition: -o-transform $transition;
|
@@ -283,7 +283,6 @@
|
|
283
283
|
background-image: linear-gradient($angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
|
284
284
|
}
|
285
285
|
|
286
|
-
|
287
286
|
// Reset filters for IE
|
288
287
|
//
|
289
288
|
// When you need to remove a gradient background, do not forget to use this to reset
|
@@ -299,7 +298,7 @@
|
|
299
298
|
// Short retina mixin for setting background-image and -size
|
300
299
|
|
301
300
|
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
|
302
|
-
background-image: url("$file-1x");
|
301
|
+
background-image: image-url("$file-1x");
|
303
302
|
|
304
303
|
@media
|
305
304
|
only screen and (-webkit-min-device-pixel-ratio: 2),
|
@@ -308,7 +307,7 @@
|
|
308
307
|
only screen and ( min-device-pixel-ratio: 2),
|
309
308
|
only screen and ( min-resolution: 192dpi),
|
310
309
|
only screen and ( min-resolution: 2dppx) {
|
311
|
-
background-image: url("$file-2x");
|
310
|
+
background-image: image-url("$file-2x");
|
312
311
|
background-size: $width-1x $height-1x;
|
313
312
|
}
|
314
313
|
}
|
@@ -404,29 +403,40 @@
|
|
404
403
|
// -------------------------
|
405
404
|
// Easily pump out default styles, as well as :hover, :focus, :active,
|
406
405
|
// and disabled options for all buttons
|
407
|
-
@mixin button-variant($
|
408
|
-
|
406
|
+
@mixin button-variant($color, $background, $border) {
|
407
|
+
color: $color;
|
408
|
+
background-color: $background;
|
409
|
+
border-color: $border;
|
410
|
+
|
411
|
+
&:hover,
|
412
|
+
&:focus,
|
413
|
+
&:active,
|
414
|
+
&.active {
|
409
415
|
color: $color;
|
410
|
-
background-color: $background;
|
411
|
-
|
412
|
-
}
|
413
|
-
|
414
|
-
|
415
|
-
#{$parent}:active,
|
416
|
-
#{$parent}.active,
|
417
|
-
.open .dropdown-toggle#{$parent} {
|
416
|
+
background-color: darken($background, 8%);
|
417
|
+
border-color: darken($border, 12%);
|
418
|
+
}
|
419
|
+
.open & {
|
420
|
+
&.dropdown-toggle {
|
418
421
|
color: $color;
|
419
422
|
background-color: darken($background, 8%);
|
420
423
|
border-color: darken($border, 12%);
|
424
|
+
}
|
425
|
+
|
421
426
|
}
|
422
|
-
|
423
|
-
|
424
|
-
.open .dropdown-toggle#{$parent} {
|
427
|
+
&:active,
|
428
|
+
&.active {
|
425
429
|
background-image: none;
|
426
430
|
}
|
427
|
-
|
428
|
-
|
429
|
-
|
431
|
+
.open & {
|
432
|
+
&.dropdown-toggle {
|
433
|
+
background-image: none;
|
434
|
+
}
|
435
|
+
|
436
|
+
}
|
437
|
+
&.disabled,
|
438
|
+
&[disabled],
|
439
|
+
fieldset[disabled] & {
|
430
440
|
&,
|
431
441
|
&:hover,
|
432
442
|
&:focus,
|
@@ -708,6 +718,7 @@
|
|
708
718
|
|
709
719
|
@mixin input-size($parent, $input-height, $padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
|
710
720
|
#{$parent} {
|
721
|
+
|
711
722
|
height: $input-height;
|
712
723
|
padding: $padding-vertical $padding-horizontal;
|
713
724
|
font-size: $font-size;
|
@@ -10,13 +10,18 @@
|
|
10
10
|
// Kill the scroll on the body
|
11
11
|
.modal-open {
|
12
12
|
overflow: hidden;
|
13
|
-
}
|
14
13
|
|
15
14
|
|
16
|
-
// Account for hiding of scrollbar
|
17
|
-
|
18
|
-
|
19
|
-
.
|
15
|
+
// Account for hiding of scrollbar
|
16
|
+
|
17
|
+
|
18
|
+
.navbar-fixed-top,
|
19
|
+
.navbar-fixed-bottom {
|
20
|
+
margin-right: 15px
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
body.modal-open {
|
20
25
|
margin-right: 15px
|
21
26
|
}
|
22
27
|
|
@@ -137,5 +142,4 @@ body.modal-open,
|
|
137
142
|
.modal-content {
|
138
143
|
@include box-shadow(0 5px 15px rgba(0,0,0,.5));
|
139
144
|
}
|
140
|
-
|
141
145
|
}
|
@@ -259,8 +259,12 @@
|
|
259
259
|
// though so that navbar contents properly stack and align in mobile.
|
260
260
|
|
261
261
|
@media (min-width: $grid-float-breakpoint) {
|
262
|
-
.navbar-left
|
263
|
-
|
262
|
+
.navbar-left {
|
263
|
+
float: left !important;
|
264
|
+
}
|
265
|
+
.navbar-right {
|
266
|
+
float: right !important;
|
267
|
+
}
|
264
268
|
}
|
265
269
|
|
266
270
|
|
@@ -39,52 +39,78 @@
|
|
39
39
|
@media (max-width: $screen-xs-max) {
|
40
40
|
@include responsive-visibility('.visible-xs');
|
41
41
|
}
|
42
|
+
|
42
43
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
43
44
|
@include responsive-visibility('.visible-xs.visible-sm');
|
44
45
|
}
|
46
|
+
|
47
|
+
|
45
48
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
46
49
|
@include responsive-visibility('.visible-xs.visible-md');
|
47
50
|
}
|
51
|
+
|
52
|
+
|
48
53
|
@media (min-width: $screen-lg) {
|
49
54
|
@include responsive-visibility('.visible-xs.visible-lg');
|
50
55
|
}
|
51
56
|
|
57
|
+
|
52
58
|
@include responsive-invisibility('.visible-sm');
|
59
|
+
|
53
60
|
@media (max-width: $screen-xs-max) {
|
54
61
|
@include responsive-visibility('.visible-sm.visible-xs');
|
55
62
|
}
|
63
|
+
|
56
64
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
57
65
|
@include responsive-visibility('.visible-sm');
|
58
66
|
}
|
67
|
+
|
59
68
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
60
69
|
@include responsive-visibility('.visible-sm.visible-md');
|
61
70
|
}
|
71
|
+
|
72
|
+
|
62
73
|
@media (min-width: $screen-lg) {
|
63
74
|
@include responsive-visibility('.visible-sm.visible-lg');
|
64
75
|
}
|
76
|
+
|
77
|
+
|
65
78
|
@include responsive-invisibility('.visible-md');
|
79
|
+
|
66
80
|
@media (max-width: $screen-xs-max) {
|
67
81
|
@include responsive-visibility('.visible-md.visible-xs');
|
68
82
|
}
|
83
|
+
|
84
|
+
|
69
85
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
70
86
|
@include responsive-visibility('.visible-md.visible-sm');
|
71
87
|
}
|
88
|
+
|
72
89
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
73
90
|
@include responsive-visibility('.visible-md');
|
74
91
|
}
|
92
|
+
|
75
93
|
@media (min-width: $screen-lg) {
|
76
94
|
@include responsive-visibility('.visible-md.visible-lg');
|
77
95
|
}
|
96
|
+
|
97
|
+
|
78
98
|
@include responsive-invisibility('.visible-lg');
|
99
|
+
|
79
100
|
@media (max-width: $screen-xs-max) {
|
80
101
|
@include responsive-visibility('.visible-lg.visible-xs');
|
81
102
|
}
|
103
|
+
|
104
|
+
|
82
105
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
83
106
|
@include responsive-visibility('.visible-lg.visible-sm');
|
84
107
|
}
|
108
|
+
|
109
|
+
|
85
110
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
86
111
|
@include responsive-visibility('.visible-lg.visible-md');
|
87
112
|
}
|
113
|
+
|
88
114
|
@media (min-width: $screen-lg) {
|
89
115
|
@include responsive-visibility('.visible-lg');
|
90
116
|
}
|
@@ -93,59 +119,91 @@
|
|
93
119
|
@media (max-width: $screen-xs-max) {
|
94
120
|
@include responsive-invisibility('.hidden-xs');
|
95
121
|
}
|
122
|
+
|
96
123
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
97
124
|
@include responsive-invisibility('.hidden-xs.hidden-sm');
|
98
125
|
}
|
126
|
+
|
127
|
+
|
99
128
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
100
129
|
@include responsive-invisibility('.hidden-xs.hidden-md');
|
101
130
|
}
|
131
|
+
|
132
|
+
|
102
133
|
@media (min-width: $screen-lg) {
|
103
134
|
@include responsive-invisibility('.hidden-xs.hidden-lg');
|
104
135
|
}
|
136
|
+
|
137
|
+
|
105
138
|
@include responsive-visibility('.hidden-sm');
|
139
|
+
|
106
140
|
@media (max-width: $screen-xs-max) {
|
107
141
|
@include responsive-invisibility('.hidden-sm.hidden-xs');
|
108
142
|
}
|
143
|
+
|
109
144
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
110
145
|
@include responsive-invisibility('.hidden-sm');
|
111
146
|
}
|
147
|
+
|
112
148
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
113
149
|
@include responsive-invisibility('.hidden-sm.hidden-md');
|
114
150
|
}
|
151
|
+
|
152
|
+
|
115
153
|
@media (min-width: $screen-lg) {
|
116
154
|
@include responsive-invisibility('.hidden-sm.hidden-lg');
|
117
155
|
}
|
156
|
+
|
157
|
+
|
118
158
|
@include responsive-visibility('.hidden-md');
|
159
|
+
|
119
160
|
@media (max-width: $screen-xs-max) {
|
120
161
|
@include responsive-invisibility('.hidden-md.hidden-xs');
|
121
162
|
}
|
163
|
+
|
164
|
+
|
122
165
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
123
166
|
@include responsive-invisibility('.hidden-md.hidden-sm');
|
124
167
|
}
|
168
|
+
|
125
169
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
126
170
|
@include responsive-invisibility('.hidden-md');
|
127
171
|
}
|
172
|
+
|
128
173
|
@media (min-width: $screen-lg) {
|
129
174
|
@include responsive-invisibility('.hidden-md.hidden-lg');
|
130
175
|
}
|
176
|
+
|
177
|
+
|
131
178
|
@include responsive-visibility('.hidden-lg');
|
179
|
+
|
132
180
|
@media (max-width: $screen-xs-max) {
|
133
181
|
@include responsive-invisibility('.hidden-lg.hidden-xs');
|
134
182
|
}
|
183
|
+
|
184
|
+
|
135
185
|
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
136
186
|
@include responsive-invisibility('.hidden-lg.hidden-sm');
|
137
187
|
}
|
188
|
+
|
189
|
+
|
138
190
|
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
139
191
|
@include responsive-invisibility('.hidden-lg.hidden-md');
|
140
192
|
}
|
193
|
+
|
141
194
|
@media (min-width: $screen-lg) {
|
142
195
|
@include responsive-invisibility('.hidden-lg');
|
143
196
|
}
|
144
197
|
|
145
198
|
// Print utilities
|
199
|
+
|
146
200
|
@include responsive-invisibility('.visible-print');
|
147
201
|
|
148
202
|
@media print {
|
203
|
+
|
149
204
|
@include responsive-visibility('.visible-print');
|
205
|
+
|
206
|
+
|
150
207
|
@include responsive-invisibility('.hidden-print');
|
208
|
+
|
151
209
|
}
|
@@ -169,9 +169,9 @@ table {
|
|
169
169
|
}
|
170
170
|
|
171
171
|
// Generate the contextual variants
|
172
|
-
@include table-row-variant(success, $state-success-bg, $state-success-border);
|
173
|
-
@include table-row-variant(danger, $state-danger-bg, $state-danger-border);
|
174
|
-
@include table-row-variant(warning, $state-warning-bg, $state-warning-border);
|
172
|
+
@include table-row-variant('success', $state-success-bg, $state-success-border);
|
173
|
+
@include table-row-variant('danger', $state-danger-bg, $state-danger-border);
|
174
|
+
@include table-row-variant('warning', $state-warning-bg, $state-warning-border);
|
175
175
|
|
176
176
|
|
177
177
|
// Responsive tables
|
@@ -3,8 +3,8 @@
|
|
3
3
|
// Load core variables and mixins
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
6
|
-
|
7
|
-
|
6
|
+
@import "twitter/bootstrap/variables";
|
7
|
+
@import "twitter/bootstrap/mixins";
|
8
8
|
|
9
9
|
|
10
10
|
|
@@ -31,7 +31,7 @@ $import "mixins.less";
|
|
31
31
|
}
|
32
32
|
|
33
33
|
// Mixin for generating new styles
|
34
|
-
@
|
34
|
+
@mixin btn-styles($btn-color: #555) {
|
35
35
|
@include gradient-vertical($start-color: $btn-color, $end-color: darken($btn-color, 10%));
|
36
36
|
border-color: darken($btn-color, 12%);
|
37
37
|
|
@@ -52,12 +52,12 @@ $import "mixins.less";
|
|
52
52
|
}
|
53
53
|
|
54
54
|
// Apply the mixin to the buttons
|
55
|
-
.btn-default { @
|
56
|
-
.btn-primary { @
|
57
|
-
.btn-success { @
|
58
|
-
.btn-warning { @
|
59
|
-
.btn-danger { @
|
60
|
-
.btn-info { @
|
55
|
+
.btn-default { @include btn-styles($btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
|
56
|
+
.btn-primary { @include btn-styles($btn-primary-bg); }
|
57
|
+
.btn-success { @include btn-styles($btn-success-bg); }
|
58
|
+
.btn-warning { @include btn-styles($btn-warning-bg); }
|
59
|
+
.btn-danger { @include btn-styles($btn-danger-bg); }
|
60
|
+
.btn-info { @include btn-styles($btn-info-bg); }
|
61
61
|
|
62
62
|
|
63
63
|
|
@@ -93,7 +93,7 @@ $import "mixins.less";
|
|
93
93
|
|
94
94
|
// Basic navbar
|
95
95
|
.navbar {
|
96
|
-
@include gradient-vertical($start-color: lighten($navbar-default-bg, 10%), $end-color: $navbar-default-bg
|
96
|
+
@include gradient-vertical($start-color: lighten($navbar-default-bg, 10%), $end-color: $navbar-default-bg);
|
97
97
|
border-radius: $navbar-border-radius;
|
98
98
|
$shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
|
99
99
|
@include box-shadow($shadow);
|
@@ -109,7 +109,7 @@ $import "mixins.less";
|
|
109
109
|
|
110
110
|
// Inverted navbar
|
111
111
|
.navbar-inverse {
|
112
|
-
@include gradient-vertical($start-color: lighten($navbar-inverse-bg, 10%), $end-color: $navbar-inverse-bg
|
112
|
+
@include gradient-vertical($start-color: lighten($navbar-inverse-bg, 10%), $end-color: $navbar-inverse-bg);
|
113
113
|
|
114
114
|
.navbar-nav > .active > a {
|
115
115
|
background-color: $navbar-inverse-bg;
|
@@ -142,16 +142,16 @@ $import "mixins.less";
|
|
142
142
|
}
|
143
143
|
|
144
144
|
// Mixin for generating new styles
|
145
|
-
@
|
145
|
+
@mixin alert-styles($color) {
|
146
146
|
@include gradient-vertical($start-color: $color, $end-color: darken($color, 7.5%));
|
147
147
|
border-color: darken($color, 15%);
|
148
148
|
}
|
149
149
|
|
150
150
|
// Apply the mixin to the alerts
|
151
|
-
.alert-success { @
|
152
|
-
.alert-info { @
|
153
|
-
.alert-warning { @
|
154
|
-
.alert-danger { @
|
151
|
+
.alert-success { @include alert-styles($alert-success-bg); }
|
152
|
+
.alert-info { @include alert-styles($alert-info-bg); }
|
153
|
+
.alert-warning { @include alert-styles($alert-warning-bg); }
|
154
|
+
.alert-danger { @include alert-styles($alert-danger-bg); }
|
155
155
|
|
156
156
|
|
157
157
|
|
@@ -161,20 +161,20 @@ $import "mixins.less";
|
|
161
161
|
|
162
162
|
// Give the progress background some depth
|
163
163
|
.progress {
|
164
|
-
@include gradient-vertical($start-color: darken($progress-bg, 4%), $end-color: $progress-bg
|
164
|
+
@include gradient-vertical($start-color: darken($progress-bg, 4%), $end-color: $progress-bg)
|
165
165
|
}
|
166
166
|
|
167
167
|
// Mixin for generating new styles
|
168
|
-
@
|
168
|
+
@mixin progress-bar-styles($color) {
|
169
169
|
@include gradient-vertical($start-color: $color, $end-color: darken($color, 10%));
|
170
170
|
}
|
171
171
|
|
172
172
|
// Apply the mixin to the progress bars
|
173
|
-
.progress-bar { @
|
174
|
-
.progress-bar-success { @
|
175
|
-
.progress-bar-info { @
|
176
|
-
.progress-bar-warning { @
|
177
|
-
.progress-bar-danger { @
|
173
|
+
.progress-bar { @include progress-bar-styles($progress-bar-bg); }
|
174
|
+
.progress-bar-success { @include progress-bar-styles($progress-bar-success-bg); }
|
175
|
+
.progress-bar-info { @include progress-bar-styles($progress-bar-info-bg); }
|
176
|
+
.progress-bar-warning { @include progress-bar-styles($progress-bar-warning-bg); }
|
177
|
+
.progress-bar-danger { @include progress-bar-styles($progress-bar-danger-bg); }
|
178
178
|
|
179
179
|
|
180
180
|
|
@@ -206,17 +206,17 @@ $import "mixins.less";
|
|
206
206
|
}
|
207
207
|
|
208
208
|
// Mixin for generating new styles
|
209
|
-
@
|
209
|
+
@mixin panel-heading-styles($color) {
|
210
210
|
@include gradient-vertical($start-color: $color, $end-color: darken($color, 5%));
|
211
211
|
}
|
212
212
|
|
213
213
|
// Apply the mixin to the panel headings only
|
214
|
-
.panel-default > .panel-heading { @
|
215
|
-
.panel-primary > .panel-heading { @
|
216
|
-
.panel-success > .panel-heading { @
|
217
|
-
.panel-info > .panel-heading { @
|
218
|
-
.panel-warning > .panel-heading { @
|
219
|
-
.panel-danger > .panel-heading { @
|
214
|
+
.panel-default > .panel-heading { @include panel-heading-styles($panel-default-heading-bg); }
|
215
|
+
.panel-primary > .panel-heading { @include panel-heading-styles($panel-primary-heading-bg); }
|
216
|
+
.panel-success > .panel-heading { @include panel-heading-styles($panel-success-heading-bg); }
|
217
|
+
.panel-info > .panel-heading { @include panel-heading-styles($panel-info-heading-bg); }
|
218
|
+
.panel-warning > .panel-heading { @include panel-heading-styles($panel-warning-heading-bg); }
|
219
|
+
.panel-danger > .panel-heading { @include panel-heading-styles($panel-danger-heading-bg); }
|
220
220
|
|
221
221
|
|
222
222
|
|
@@ -225,7 +225,7 @@ $import "mixins.less";
|
|
225
225
|
// --------------------------------------------------
|
226
226
|
|
227
227
|
.well {
|
228
|
-
@include gradient-vertical($start-color: darken($well-bg, 5%), $end-color: $well-bg
|
228
|
+
@include gradient-vertical($start-color: darken($well-bg, 5%), $end-color: $well-bg);
|
229
229
|
border-color: darken($well-bg, 10%);
|
230
230
|
$shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
|
231
231
|
@include box-shadow($shadow);
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-sass-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0.
|
4
|
+
version: 3.0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -169,6 +169,7 @@ files:
|
|
169
169
|
- test/cases/less_to_sass_spec.rb
|
170
170
|
- test/cases/usage_css_spec.rb
|
171
171
|
- test/cases/usage_js_spec.rb
|
172
|
+
- test/dummy/Rakefile
|
172
173
|
- test/dummy/app/assets/javascripts/application.js
|
173
174
|
- test/dummy/app/assets/javascripts/individual.js
|
174
175
|
- test/dummy/app/assets/stylesheets/application.css.scss
|
@@ -198,7 +199,6 @@ files:
|
|
198
199
|
- test/dummy/public/422.html
|
199
200
|
- test/dummy/public/500.html
|
200
201
|
- test/dummy/public/favicon.ico
|
201
|
-
- test/dummy/Rakefile
|
202
202
|
- test/dummy/script/rails
|
203
203
|
- test/spec_helper.rb
|
204
204
|
- test/support/helpers.rb
|
@@ -216,7 +216,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
216
216
|
version: '0'
|
217
217
|
segments:
|
218
218
|
- 0
|
219
|
-
hash:
|
219
|
+
hash: 3798204253335234736
|
220
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
221
221
|
none: false
|
222
222
|
requirements:
|
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
version: '0'
|
226
226
|
segments:
|
227
227
|
- 0
|
228
|
-
hash:
|
228
|
+
hash: 3798204253335234736
|
229
229
|
requirements: []
|
230
230
|
rubyforge_project:
|
231
231
|
rubygems_version: 1.8.23
|
@@ -237,6 +237,7 @@ test_files:
|
|
237
237
|
- test/cases/less_to_sass_spec.rb
|
238
238
|
- test/cases/usage_css_spec.rb
|
239
239
|
- test/cases/usage_js_spec.rb
|
240
|
+
- test/dummy/Rakefile
|
240
241
|
- test/dummy/app/assets/javascripts/application.js
|
241
242
|
- test/dummy/app/assets/javascripts/individual.js
|
242
243
|
- test/dummy/app/assets/stylesheets/application.css.scss
|
@@ -266,7 +267,6 @@ test_files:
|
|
266
267
|
- test/dummy/public/422.html
|
267
268
|
- test/dummy/public/500.html
|
268
269
|
- test/dummy/public/favicon.ico
|
269
|
-
- test/dummy/Rakefile
|
270
270
|
- test/dummy/script/rails
|
271
271
|
- test/spec_helper.rb
|
272
272
|
- test/support/helpers.rb
|