drink_up_doctor 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +32 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +74 -0
- data/Rakefile +11 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/bootstrap-boilerplate/.gitignore +8 -0
- data/bootstrap-boilerplate/404.html +25 -0
- data/bootstrap-boilerplate/README.md.tt +88 -0
- data/bootstrap-boilerplate/_includes/footer.html +18 -0
- data/bootstrap-boilerplate/_includes/google_analytics.html +10 -0
- data/bootstrap-boilerplate/_includes/head.html +11 -0
- data/bootstrap-boilerplate/_includes/header.html +27 -0
- data/bootstrap-boilerplate/_includes/index_item.html +5 -0
- data/bootstrap-boilerplate/_includes/page_js.html +4 -0
- data/bootstrap-boilerplate/_layouts/category_index.html +12 -0
- data/bootstrap-boilerplate/_layouts/default.html +22 -0
- data/bootstrap-boilerplate/_layouts/page.html +13 -0
- data/bootstrap-boilerplate/_layouts/post.html +13 -0
- data/bootstrap-boilerplate/_layouts/tag_index.html +14 -0
- data/bootstrap-boilerplate/_plugins/category_index.rb +42 -0
- data/bootstrap-boilerplate/_plugins/slug_sort.rb +13 -0
- data/bootstrap-boilerplate/_plugins/tag_index.rb +41 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-four.md +17 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-one.md +12 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-three.md +20 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-two.md +16 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-welcome.md +8 -0
- data/bootstrap-boilerplate/_sass/_bootstrap-compass.scss +9 -0
- data/bootstrap-boilerplate/_sass/_bootstrap-mincer.scss +19 -0
- data/bootstrap-boilerplate/_sass/_bootstrap-sprockets.scss +9 -0
- data/bootstrap-boilerplate/_sass/_bootstrap.scss +56 -0
- data/bootstrap-boilerplate/_sass/_my_variables.scss +874 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_alerts.scss +73 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_badges.scss +68 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_breadcrumbs.scss +26 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_button-groups.scss +244 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_buttons.scss +168 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_carousel.scss +269 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_close.scss +36 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_code.scss +69 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_component-animations.scss +37 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_dropdowns.scss +216 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_forms.scss +611 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_glyphicons.scss +307 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_grid.scss +84 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_input-groups.scss +167 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_jumbotron.scss +52 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_labels.scss +66 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_list-group.scss +130 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_media.scss +66 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_mixins.scss +40 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_modals.scss +150 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_navbar.scss +662 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_navs.scss +242 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_normalize.scss +424 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_pager.scss +54 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_pagination.scss +89 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_panels.scss +271 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_popovers.scss +131 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_print.scss +101 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_progress-bars.scss +87 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_responsive-embed.scss +35 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_responsive-utilities.scss +179 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_scaffolding.scss +161 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_tables.scss +234 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_theme.scss +291 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_thumbnails.scss +38 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_tooltip.scss +101 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_type.scss +298 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_utilities.scss +55 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_variables.scss +872 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_wells.scss +29 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_alerts.scss +14 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_background-variant.scss +12 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_border-radius.scss +18 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_buttons.scss +68 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_center-block.scss +7 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_clearfix.scss +22 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_forms.scss +88 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_gradients.scss +58 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_grid.scss +122 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_hide-text.scss +21 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_image.scss +33 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_labels.scss +12 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_list-group.scss +32 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_opacity.scss +8 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_pagination.scss +24 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_panels.scss +24 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_reset-text.scss +18 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_size.scss +10 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_table-row.scss +28 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/bootstrap-boilerplate/_sass/main.scss +20 -0
- data/bootstrap-boilerplate/about/index.md +24 -0
- data/bootstrap-boilerplate/apple-touch-icon.png +0 -0
- data/bootstrap-boilerplate/browserconfig.xml +12 -0
- data/bootstrap-boilerplate/crossdomain.xml +14 -0
- data/bootstrap-boilerplate/favicon.ico +0 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.eot +0 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.svg +229 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.woff +0 -0
- data/bootstrap-boilerplate/humans.txt.tt +18 -0
- data/bootstrap-boilerplate/index.html +18 -0
- data/bootstrap-boilerplate/js/main.js +1 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/affix.js +162 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/alert.js +94 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/button.js +120 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/carousel.js +237 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/collapse.js +211 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/dropdown.js +165 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/modal.js +337 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/popover.js +108 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/scrollspy.js +172 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/tab.js +155 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/tooltip.js +514 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/transition.js +59 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap-sprockets.js +12 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap.js +2363 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap.min.js +7 -0
- data/bootstrap-boilerplate/js/vendor/jquery-1.11.2.js +10346 -0
- data/bootstrap-boilerplate/js/vendor/jquery-1.11.2.min.js +4 -0
- data/bootstrap-boilerplate/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js +11 -0
- data/bootstrap-boilerplate/js/vendor/npm.js +13 -0
- data/bootstrap-boilerplate/robots.txt +5 -0
- data/bootstrap-boilerplate/tile-wide.png +0 -0
- data/bootstrap-boilerplate/tile.png +0 -0
- data/drink_up_doctor.gemspec +29 -0
- data/exe/drink_up_doctor +4 -0
- data/lib/drink_up_doctor/new_site.rb +178 -0
- data/lib/drink_up_doctor/new_twbs_site.rb +124 -0
- data/lib/drink_up_doctor/version.rb +3 -0
- data/lib/drink_up_doctor.rb +12 -0
- data/templates/Gemfile +11 -0
- data/templates/README.md.erb +81 -0
- data/templates/bower.json.erb +17 -0
- data/templates/gulpfile.js.erb +84 -0
- data/templates/main.scss +46 -0
- data/templates/package.json.erb +20 -0
- data/templates/setup.sh +2 -0
- data/templates/site_gitignore +7 -0
- metadata +285 -0
@@ -0,0 +1,291 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2015 Twitter, Inc.
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
|
+
*/
|
6
|
+
|
7
|
+
//
|
8
|
+
// Load core variables and mixins
|
9
|
+
// --------------------------------------------------
|
10
|
+
|
11
|
+
@import "variables";
|
12
|
+
@import "mixins";
|
13
|
+
|
14
|
+
|
15
|
+
//
|
16
|
+
// Buttons
|
17
|
+
// --------------------------------------------------
|
18
|
+
|
19
|
+
// Common styles
|
20
|
+
.btn-default,
|
21
|
+
.btn-primary,
|
22
|
+
.btn-success,
|
23
|
+
.btn-info,
|
24
|
+
.btn-warning,
|
25
|
+
.btn-danger {
|
26
|
+
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
|
27
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
|
28
|
+
@include box-shadow($shadow);
|
29
|
+
|
30
|
+
// Reset the shadow
|
31
|
+
&:active,
|
32
|
+
&.active {
|
33
|
+
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
34
|
+
}
|
35
|
+
|
36
|
+
&.disabled,
|
37
|
+
&[disabled],
|
38
|
+
fieldset[disabled] & {
|
39
|
+
@include box-shadow(none);
|
40
|
+
}
|
41
|
+
|
42
|
+
.badge {
|
43
|
+
text-shadow: none;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
// Mixin for generating new styles
|
48
|
+
@mixin btn-styles($btn-color: #555) {
|
49
|
+
@include gradient-vertical($start-color: $btn-color, $end-color: darken($btn-color, 12%));
|
50
|
+
@include reset-filter; // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620
|
51
|
+
background-repeat: repeat-x;
|
52
|
+
border-color: darken($btn-color, 14%);
|
53
|
+
|
54
|
+
&:hover,
|
55
|
+
&:focus {
|
56
|
+
background-color: darken($btn-color, 12%);
|
57
|
+
background-position: 0 -15px;
|
58
|
+
}
|
59
|
+
|
60
|
+
&:active,
|
61
|
+
&.active {
|
62
|
+
background-color: darken($btn-color, 12%);
|
63
|
+
border-color: darken($btn-color, 14%);
|
64
|
+
}
|
65
|
+
|
66
|
+
&.disabled,
|
67
|
+
&[disabled],
|
68
|
+
fieldset[disabled] & {
|
69
|
+
&,
|
70
|
+
&:hover,
|
71
|
+
&:focus,
|
72
|
+
&.focus,
|
73
|
+
&:active,
|
74
|
+
&.active {
|
75
|
+
background-color: darken($btn-color, 12%);
|
76
|
+
background-image: none;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
// Common styles
|
82
|
+
.btn {
|
83
|
+
// Remove the gradient for the pressed/active state
|
84
|
+
&:active,
|
85
|
+
&.active {
|
86
|
+
background-image: none;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
// Apply the mixin to the buttons
|
91
|
+
.btn-default { @include btn-styles($btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
|
92
|
+
.btn-primary { @include btn-styles($btn-primary-bg); }
|
93
|
+
.btn-success { @include btn-styles($btn-success-bg); }
|
94
|
+
.btn-info { @include btn-styles($btn-info-bg); }
|
95
|
+
.btn-warning { @include btn-styles($btn-warning-bg); }
|
96
|
+
.btn-danger { @include btn-styles($btn-danger-bg); }
|
97
|
+
|
98
|
+
|
99
|
+
//
|
100
|
+
// Images
|
101
|
+
// --------------------------------------------------
|
102
|
+
|
103
|
+
.thumbnail,
|
104
|
+
.img-thumbnail {
|
105
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.075));
|
106
|
+
}
|
107
|
+
|
108
|
+
|
109
|
+
//
|
110
|
+
// Dropdowns
|
111
|
+
// --------------------------------------------------
|
112
|
+
|
113
|
+
.dropdown-menu > li > a:hover,
|
114
|
+
.dropdown-menu > li > a:focus {
|
115
|
+
@include gradient-vertical($start-color: $dropdown-link-hover-bg, $end-color: darken($dropdown-link-hover-bg, 5%));
|
116
|
+
background-color: darken($dropdown-link-hover-bg, 5%);
|
117
|
+
}
|
118
|
+
.dropdown-menu > .active > a,
|
119
|
+
.dropdown-menu > .active > a:hover,
|
120
|
+
.dropdown-menu > .active > a:focus {
|
121
|
+
@include gradient-vertical($start-color: $dropdown-link-active-bg, $end-color: darken($dropdown-link-active-bg, 5%));
|
122
|
+
background-color: darken($dropdown-link-active-bg, 5%);
|
123
|
+
}
|
124
|
+
|
125
|
+
|
126
|
+
//
|
127
|
+
// Navbar
|
128
|
+
// --------------------------------------------------
|
129
|
+
|
130
|
+
// Default navbar
|
131
|
+
.navbar-default {
|
132
|
+
@include gradient-vertical($start-color: lighten($navbar-default-bg, 10%), $end-color: $navbar-default-bg);
|
133
|
+
@include reset-filter; // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
|
134
|
+
border-radius: $navbar-border-radius;
|
135
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
|
136
|
+
@include box-shadow($shadow);
|
137
|
+
|
138
|
+
.navbar-nav > .open > a,
|
139
|
+
.navbar-nav > .active > a {
|
140
|
+
@include gradient-vertical($start-color: darken($navbar-default-link-active-bg, 5%), $end-color: darken($navbar-default-link-active-bg, 2%));
|
141
|
+
@include box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
|
142
|
+
}
|
143
|
+
}
|
144
|
+
.navbar-brand,
|
145
|
+
.navbar-nav > li > a {
|
146
|
+
text-shadow: 0 1px 0 rgba(255,255,255,.25);
|
147
|
+
}
|
148
|
+
|
149
|
+
// Inverted navbar
|
150
|
+
.navbar-inverse {
|
151
|
+
@include gradient-vertical($start-color: lighten($navbar-inverse-bg, 10%), $end-color: $navbar-inverse-bg);
|
152
|
+
@include reset-filter; // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257
|
153
|
+
border-radius: $navbar-border-radius;
|
154
|
+
.navbar-nav > .open > a,
|
155
|
+
.navbar-nav > .active > a {
|
156
|
+
@include gradient-vertical($start-color: $navbar-inverse-link-active-bg, $end-color: lighten($navbar-inverse-link-active-bg, 2.5%));
|
157
|
+
@include box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
|
158
|
+
}
|
159
|
+
|
160
|
+
.navbar-brand,
|
161
|
+
.navbar-nav > li > a {
|
162
|
+
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
// Undo rounded corners in static and fixed navbars
|
167
|
+
.navbar-static-top,
|
168
|
+
.navbar-fixed-top,
|
169
|
+
.navbar-fixed-bottom {
|
170
|
+
border-radius: 0;
|
171
|
+
}
|
172
|
+
|
173
|
+
// Fix active state of dropdown items in collapsed mode
|
174
|
+
@media (max-width: $grid-float-breakpoint-max) {
|
175
|
+
.navbar .navbar-nav .open .dropdown-menu > .active > a {
|
176
|
+
&,
|
177
|
+
&:hover,
|
178
|
+
&:focus {
|
179
|
+
color: #fff;
|
180
|
+
@include gradient-vertical($start-color: $dropdown-link-active-bg, $end-color: darken($dropdown-link-active-bg, 5%));
|
181
|
+
}
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
185
|
+
|
186
|
+
//
|
187
|
+
// Alerts
|
188
|
+
// --------------------------------------------------
|
189
|
+
|
190
|
+
// Common styles
|
191
|
+
.alert {
|
192
|
+
text-shadow: 0 1px 0 rgba(255,255,255,.2);
|
193
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
|
194
|
+
@include box-shadow($shadow);
|
195
|
+
}
|
196
|
+
|
197
|
+
// Mixin for generating new styles
|
198
|
+
@mixin alert-styles($color) {
|
199
|
+
@include gradient-vertical($start-color: $color, $end-color: darken($color, 7.5%));
|
200
|
+
border-color: darken($color, 15%);
|
201
|
+
}
|
202
|
+
|
203
|
+
// Apply the mixin to the alerts
|
204
|
+
.alert-success { @include alert-styles($alert-success-bg); }
|
205
|
+
.alert-info { @include alert-styles($alert-info-bg); }
|
206
|
+
.alert-warning { @include alert-styles($alert-warning-bg); }
|
207
|
+
.alert-danger { @include alert-styles($alert-danger-bg); }
|
208
|
+
|
209
|
+
|
210
|
+
//
|
211
|
+
// Progress bars
|
212
|
+
// --------------------------------------------------
|
213
|
+
|
214
|
+
// Give the progress background some depth
|
215
|
+
.progress {
|
216
|
+
@include gradient-vertical($start-color: darken($progress-bg, 4%), $end-color: $progress-bg)
|
217
|
+
}
|
218
|
+
|
219
|
+
// Mixin for generating new styles
|
220
|
+
@mixin progress-bar-styles($color) {
|
221
|
+
@include gradient-vertical($start-color: $color, $end-color: darken($color, 10%));
|
222
|
+
}
|
223
|
+
|
224
|
+
// Apply the mixin to the progress bars
|
225
|
+
.progress-bar { @include progress-bar-styles($progress-bar-bg); }
|
226
|
+
.progress-bar-success { @include progress-bar-styles($progress-bar-success-bg); }
|
227
|
+
.progress-bar-info { @include progress-bar-styles($progress-bar-info-bg); }
|
228
|
+
.progress-bar-warning { @include progress-bar-styles($progress-bar-warning-bg); }
|
229
|
+
.progress-bar-danger { @include progress-bar-styles($progress-bar-danger-bg); }
|
230
|
+
|
231
|
+
// Reset the striped class because our mixins don't do multiple gradients and
|
232
|
+
// the above custom styles override the new `.progress-bar-striped` in v3.2.0.
|
233
|
+
.progress-bar-striped {
|
234
|
+
@include gradient-striped;
|
235
|
+
}
|
236
|
+
|
237
|
+
|
238
|
+
//
|
239
|
+
// List groups
|
240
|
+
// --------------------------------------------------
|
241
|
+
|
242
|
+
.list-group {
|
243
|
+
border-radius: $border-radius-base;
|
244
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.075));
|
245
|
+
}
|
246
|
+
.list-group-item.active,
|
247
|
+
.list-group-item.active:hover,
|
248
|
+
.list-group-item.active:focus {
|
249
|
+
text-shadow: 0 -1px 0 darken($list-group-active-bg, 10%);
|
250
|
+
@include gradient-vertical($start-color: $list-group-active-bg, $end-color: darken($list-group-active-bg, 7.5%));
|
251
|
+
border-color: darken($list-group-active-border, 7.5%);
|
252
|
+
|
253
|
+
.badge {
|
254
|
+
text-shadow: none;
|
255
|
+
}
|
256
|
+
}
|
257
|
+
|
258
|
+
|
259
|
+
//
|
260
|
+
// Panels
|
261
|
+
// --------------------------------------------------
|
262
|
+
|
263
|
+
// Common styles
|
264
|
+
.panel {
|
265
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.05));
|
266
|
+
}
|
267
|
+
|
268
|
+
// Mixin for generating new styles
|
269
|
+
@mixin panel-heading-styles($color) {
|
270
|
+
@include gradient-vertical($start-color: $color, $end-color: darken($color, 5%));
|
271
|
+
}
|
272
|
+
|
273
|
+
// Apply the mixin to the panel headings only
|
274
|
+
.panel-default > .panel-heading { @include panel-heading-styles($panel-default-heading-bg); }
|
275
|
+
.panel-primary > .panel-heading { @include panel-heading-styles($panel-primary-heading-bg); }
|
276
|
+
.panel-success > .panel-heading { @include panel-heading-styles($panel-success-heading-bg); }
|
277
|
+
.panel-info > .panel-heading { @include panel-heading-styles($panel-info-heading-bg); }
|
278
|
+
.panel-warning > .panel-heading { @include panel-heading-styles($panel-warning-heading-bg); }
|
279
|
+
.panel-danger > .panel-heading { @include panel-heading-styles($panel-danger-heading-bg); }
|
280
|
+
|
281
|
+
|
282
|
+
//
|
283
|
+
// Wells
|
284
|
+
// --------------------------------------------------
|
285
|
+
|
286
|
+
.well {
|
287
|
+
@include gradient-vertical($start-color: darken($well-bg, 5%), $end-color: $well-bg);
|
288
|
+
border-color: darken($well-bg, 10%);
|
289
|
+
$shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
|
290
|
+
@include box-shadow($shadow);
|
291
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
//
|
2
|
+
// Thumbnails
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Mixin and adjust the regular image class
|
7
|
+
.thumbnail {
|
8
|
+
display: block;
|
9
|
+
padding: $thumbnail-padding;
|
10
|
+
margin-bottom: $line-height-computed;
|
11
|
+
line-height: $line-height-base;
|
12
|
+
background-color: $thumbnail-bg;
|
13
|
+
border: 1px solid $thumbnail-border;
|
14
|
+
border-radius: $thumbnail-border-radius;
|
15
|
+
@include transition(border .2s ease-in-out);
|
16
|
+
|
17
|
+
> img,
|
18
|
+
a > img {
|
19
|
+
@include img-responsive;
|
20
|
+
margin-left: auto;
|
21
|
+
margin-right: auto;
|
22
|
+
}
|
23
|
+
|
24
|
+
// [converter] extracted a&:hover, a&:focus, a&.active to a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active
|
25
|
+
|
26
|
+
// Image captions
|
27
|
+
.caption {
|
28
|
+
padding: $thumbnail-caption-padding;
|
29
|
+
color: $thumbnail-caption-color;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
// Add a hover state for linked versions only
|
34
|
+
a.thumbnail:hover,
|
35
|
+
a.thumbnail:focus,
|
36
|
+
a.thumbnail.active {
|
37
|
+
border-color: $link-color;
|
38
|
+
}
|
@@ -0,0 +1,101 @@
|
|
1
|
+
//
|
2
|
+
// Tooltips
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Base class
|
7
|
+
.tooltip {
|
8
|
+
position: absolute;
|
9
|
+
z-index: $zindex-tooltip;
|
10
|
+
display: block;
|
11
|
+
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
|
12
|
+
// So reset our font and text properties to avoid inheriting weird values.
|
13
|
+
@include reset-text;
|
14
|
+
font-size: $font-size-small;
|
15
|
+
|
16
|
+
@include opacity(0);
|
17
|
+
|
18
|
+
&.in { @include opacity($tooltip-opacity); }
|
19
|
+
&.top { margin-top: -3px; padding: $tooltip-arrow-width 0; }
|
20
|
+
&.right { margin-left: 3px; padding: 0 $tooltip-arrow-width; }
|
21
|
+
&.bottom { margin-top: 3px; padding: $tooltip-arrow-width 0; }
|
22
|
+
&.left { margin-left: -3px; padding: 0 $tooltip-arrow-width; }
|
23
|
+
}
|
24
|
+
|
25
|
+
// Wrapper for the tooltip content
|
26
|
+
.tooltip-inner {
|
27
|
+
max-width: $tooltip-max-width;
|
28
|
+
padding: 3px 8px;
|
29
|
+
color: $tooltip-color;
|
30
|
+
text-align: center;
|
31
|
+
background-color: $tooltip-bg;
|
32
|
+
border-radius: $border-radius-base;
|
33
|
+
}
|
34
|
+
|
35
|
+
// Arrows
|
36
|
+
.tooltip-arrow {
|
37
|
+
position: absolute;
|
38
|
+
width: 0;
|
39
|
+
height: 0;
|
40
|
+
border-color: transparent;
|
41
|
+
border-style: solid;
|
42
|
+
}
|
43
|
+
// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
|
44
|
+
.tooltip {
|
45
|
+
&.top .tooltip-arrow {
|
46
|
+
bottom: 0;
|
47
|
+
left: 50%;
|
48
|
+
margin-left: -$tooltip-arrow-width;
|
49
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
|
50
|
+
border-top-color: $tooltip-arrow-color;
|
51
|
+
}
|
52
|
+
&.top-left .tooltip-arrow {
|
53
|
+
bottom: 0;
|
54
|
+
right: $tooltip-arrow-width;
|
55
|
+
margin-bottom: -$tooltip-arrow-width;
|
56
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
|
57
|
+
border-top-color: $tooltip-arrow-color;
|
58
|
+
}
|
59
|
+
&.top-right .tooltip-arrow {
|
60
|
+
bottom: 0;
|
61
|
+
left: $tooltip-arrow-width;
|
62
|
+
margin-bottom: -$tooltip-arrow-width;
|
63
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
|
64
|
+
border-top-color: $tooltip-arrow-color;
|
65
|
+
}
|
66
|
+
&.right .tooltip-arrow {
|
67
|
+
top: 50%;
|
68
|
+
left: 0;
|
69
|
+
margin-top: -$tooltip-arrow-width;
|
70
|
+
border-width: $tooltip-arrow-width $tooltip-arrow-width $tooltip-arrow-width 0;
|
71
|
+
border-right-color: $tooltip-arrow-color;
|
72
|
+
}
|
73
|
+
&.left .tooltip-arrow {
|
74
|
+
top: 50%;
|
75
|
+
right: 0;
|
76
|
+
margin-top: -$tooltip-arrow-width;
|
77
|
+
border-width: $tooltip-arrow-width 0 $tooltip-arrow-width $tooltip-arrow-width;
|
78
|
+
border-left-color: $tooltip-arrow-color;
|
79
|
+
}
|
80
|
+
&.bottom .tooltip-arrow {
|
81
|
+
top: 0;
|
82
|
+
left: 50%;
|
83
|
+
margin-left: -$tooltip-arrow-width;
|
84
|
+
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
|
85
|
+
border-bottom-color: $tooltip-arrow-color;
|
86
|
+
}
|
87
|
+
&.bottom-left .tooltip-arrow {
|
88
|
+
top: 0;
|
89
|
+
right: $tooltip-arrow-width;
|
90
|
+
margin-top: -$tooltip-arrow-width;
|
91
|
+
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
|
92
|
+
border-bottom-color: $tooltip-arrow-color;
|
93
|
+
}
|
94
|
+
&.bottom-right .tooltip-arrow {
|
95
|
+
top: 0;
|
96
|
+
left: $tooltip-arrow-width;
|
97
|
+
margin-top: -$tooltip-arrow-width;
|
98
|
+
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
|
99
|
+
border-bottom-color: $tooltip-arrow-color;
|
100
|
+
}
|
101
|
+
}
|