twigg-app 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/data/quips.yml +45 -0
- data/lib/twigg-app/app/quips.rb +13 -0
- data/lib/twigg-app/app/routes.rb +43 -0
- data/lib/twigg-app/app/server.rb +146 -0
- data/lib/twigg-app/app/version.rb +5 -0
- data/lib/twigg-app/app.rb +14 -0
- data/lib/twigg-app.rb +5 -0
- data/public/application.js +106 -0
- data/public/favicon.ico +0 -0
- data/public/favicon.png +0 -0
- data/public/vendor/bootstrap/CNAME +1 -0
- data/public/vendor/bootstrap/CONTRIBUTING.md +66 -0
- data/public/vendor/bootstrap/Gruntfile.js +195 -0
- data/public/vendor/bootstrap/LICENSE +176 -0
- data/public/vendor/bootstrap/README.md +139 -0
- data/public/vendor/bootstrap/_config.yml +28 -0
- data/public/vendor/bootstrap/_includes/ads.html +1 -0
- data/public/vendor/bootstrap/_includes/footer.html +33 -0
- data/public/vendor/bootstrap/_includes/header.html +43 -0
- data/public/vendor/bootstrap/_includes/nav-components.html +135 -0
- data/public/vendor/bootstrap/_includes/nav-css.html +77 -0
- data/public/vendor/bootstrap/_includes/nav-customize.html +40 -0
- data/public/vendor/bootstrap/_includes/nav-getting-started.html +28 -0
- data/public/vendor/bootstrap/_includes/nav-javascript.html +88 -0
- data/public/vendor/bootstrap/_includes/nav-main.html +32 -0
- data/public/vendor/bootstrap/_includes/old-bs-docs.html +8 -0
- data/public/vendor/bootstrap/_includes/social-buttons.html +16 -0
- data/public/vendor/bootstrap/_layouts/customize.html +52 -0
- data/public/vendor/bootstrap/_layouts/default.html +72 -0
- data/public/vendor/bootstrap/_layouts/home.html +43 -0
- data/public/vendor/bootstrap/assets/css/docs.css +896 -0
- data/public/vendor/bootstrap/assets/css/pygments-manni.css +66 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/favicon.png +0 -0
- data/public/vendor/bootstrap/assets/js/application.js +82 -0
- data/public/vendor/bootstrap/assets/js/customizer.js +175 -0
- data/public/vendor/bootstrap/assets/js/holder.js +419 -0
- data/public/vendor/bootstrap/assets/js/html5shiv.js +8 -0
- data/public/vendor/bootstrap/assets/js/jquery.bbq.min.js +1287 -0
- data/public/vendor/bootstrap/assets/js/jquery.js +5 -0
- data/public/vendor/bootstrap/assets/js/jszip.js +1425 -0
- data/public/vendor/bootstrap/assets/js/less.js +9 -0
- data/public/vendor/bootstrap/assets/js/respond.min.js +6 -0
- data/public/vendor/bootstrap/assets/js/uglify.js +14 -0
- data/public/vendor/bootstrap/bower.json +11 -0
- data/public/vendor/bootstrap/browserstack.json +37 -0
- data/public/vendor/bootstrap/components.html +2555 -0
- data/public/vendor/bootstrap/composer.json +20 -0
- data/public/vendor/bootstrap/css.html +2276 -0
- data/public/vendor/bootstrap/customize.html +1480 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.css +5579 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.min.css +9 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.js +1993 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/public/vendor/bootstrap/getting-started.html +375 -0
- data/public/vendor/bootstrap/index.html +16 -0
- data/public/vendor/bootstrap/javascript.html +1904 -0
- data/public/vendor/bootstrap/js/affix.js +126 -0
- data/public/vendor/bootstrap/js/alert.js +98 -0
- data/public/vendor/bootstrap/js/button.js +109 -0
- data/public/vendor/bootstrap/js/carousel.js +217 -0
- data/public/vendor/bootstrap/js/collapse.js +179 -0
- data/public/vendor/bootstrap/js/dropdown.js +154 -0
- data/public/vendor/bootstrap/js/modal.js +244 -0
- data/public/vendor/bootstrap/js/popover.js +117 -0
- data/public/vendor/bootstrap/js/scrollspy.js +158 -0
- data/public/vendor/bootstrap/js/tab.js +135 -0
- data/public/vendor/bootstrap/js/tests/index.html +52 -0
- data/public/vendor/bootstrap/js/tests/phantom.js +63 -0
- data/public/vendor/bootstrap/js/tests/server.js +14 -0
- data/public/vendor/bootstrap/js/tests/unit/affix.js +25 -0
- data/public/vendor/bootstrap/js/tests/unit/alert.js +62 -0
- data/public/vendor/bootstrap/js/tests/unit/button.js +116 -0
- data/public/vendor/bootstrap/js/tests/unit/carousel.js +87 -0
- data/public/vendor/bootstrap/js/tests/unit/collapse.js +164 -0
- data/public/vendor/bootstrap/js/tests/unit/dropdown.js +219 -0
- data/public/vendor/bootstrap/js/tests/unit/modal.js +177 -0
- data/public/vendor/bootstrap/js/tests/unit/phantom.js +69 -0
- data/public/vendor/bootstrap/js/tests/unit/popover.js +133 -0
- data/public/vendor/bootstrap/js/tests/unit/scrollspy.js +37 -0
- data/public/vendor/bootstrap/js/tests/unit/tab.js +86 -0
- data/public/vendor/bootstrap/js/tests/unit/tooltip.js +437 -0
- data/public/vendor/bootstrap/js/tests/unit/transition.js +13 -0
- data/public/vendor/bootstrap/js/tests/vendor/jquery.js +5 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.css +232 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.js +1510 -0
- data/public/vendor/bootstrap/js/tooltip.js +382 -0
- data/public/vendor/bootstrap/js/transition.js +56 -0
- data/public/vendor/bootstrap/less/alerts.less +71 -0
- data/public/vendor/bootstrap/less/badges.less +51 -0
- data/public/vendor/bootstrap/less/bootstrap.less +63 -0
- data/public/vendor/bootstrap/less/breadcrumbs.less +23 -0
- data/public/vendor/bootstrap/less/button-groups.less +244 -0
- data/public/vendor/bootstrap/less/buttons.less +159 -0
- data/public/vendor/bootstrap/less/carousel.less +204 -0
- data/public/vendor/bootstrap/less/close.less +33 -0
- data/public/vendor/bootstrap/less/code.less +56 -0
- data/public/vendor/bootstrap/less/component-animations.less +29 -0
- data/public/vendor/bootstrap/less/dropdowns.less +176 -0
- data/public/vendor/bootstrap/less/forms.less +332 -0
- data/public/vendor/bootstrap/less/grid.less +340 -0
- data/public/vendor/bootstrap/less/input-groups.less +127 -0
- data/public/vendor/bootstrap/less/jumbotron.less +29 -0
- data/public/vendor/bootstrap/less/labels.less +54 -0
- data/public/vendor/bootstrap/less/list-group.less +88 -0
- data/public/vendor/bootstrap/less/media.less +56 -0
- data/public/vendor/bootstrap/less/mixins.less +693 -0
- data/public/vendor/bootstrap/less/modals.less +133 -0
- data/public/vendor/bootstrap/less/navbar.less +559 -0
- data/public/vendor/bootstrap/less/navs.less +228 -0
- data/public/vendor/bootstrap/less/normalize.less +396 -0
- data/public/vendor/bootstrap/less/pager.less +55 -0
- data/public/vendor/bootstrap/less/pagination.less +72 -0
- data/public/vendor/bootstrap/less/panels.less +128 -0
- data/public/vendor/bootstrap/less/popovers.less +133 -0
- data/public/vendor/bootstrap/less/print.less +100 -0
- data/public/vendor/bootstrap/less/progress-bars.less +99 -0
- data/public/vendor/bootstrap/less/responsive-utilities.less +149 -0
- data/public/vendor/bootstrap/less/scaffolding.less +111 -0
- data/public/vendor/bootstrap/less/tables.less +211 -0
- data/public/vendor/bootstrap/less/thumbnails.less +42 -0
- data/public/vendor/bootstrap/less/tooltip.less +95 -0
- data/public/vendor/bootstrap/less/type.less +238 -0
- data/public/vendor/bootstrap/less/utilities.less +42 -0
- data/public/vendor/bootstrap/less/variables.less +607 -0
- data/public/vendor/bootstrap/less/wells.less +29 -0
- data/public/vendor/bootstrap/package.json +33 -0
- data/public/vendor/bootstrap-glyphicons/CHANGELOG.md +3 -0
- data/public/vendor/bootstrap-glyphicons/CNAME +1 -0
- data/public/vendor/bootstrap-glyphicons/CONTRIBUTING.md +54 -0
- data/public/vendor/bootstrap-glyphicons/LICENSE +19 -0
- data/public/vendor/bootstrap-glyphicons/README.md +61 -0
- data/public/vendor/bootstrap-glyphicons/_config.yml +12 -0
- data/public/vendor/bootstrap-glyphicons/composer.json +9 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap-glyphicons.css +2 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap.css +9 -0
- data/public/vendor/bootstrap-glyphicons/css/docs.css +160 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.eot +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.otf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.svg +175 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.ttf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.woff +0 -0
- data/public/vendor/bootstrap-glyphicons/index.html +255 -0
- data/public/vendor/bootstrap-glyphicons/less/bootstrap-glyphicons.less +201 -0
- data/public/vendor/bootstrap-glyphicons/package.json +18 -0
- data/public/vendor/d3/LICENSE +26 -0
- data/public/vendor/d3/README.md +7 -0
- data/public/vendor/d3/bower.json +25 -0
- data/public/vendor/d3/d3.js +8810 -0
- data/public/vendor/d3/d3.min.js +5 -0
- data/public/vendor/jquery/README.md +11 -0
- data/public/vendor/jquery/bower.json +11 -0
- data/public/vendor/jquery/component.json +15 -0
- data/public/vendor/jquery/composer.json +35 -0
- data/public/vendor/jquery/jquery-migrate.js +511 -0
- data/public/vendor/jquery/jquery-migrate.min.js +3 -0
- data/public/vendor/jquery/jquery.js +8829 -0
- data/public/vendor/jquery/jquery.min.js +6 -0
- data/public/vendor/jquery/jquery.min.map +1 -0
- data/public/vendor/jquery/package.json +7 -0
- data/public/vendor/replacejs/CHANGELOG.md +3 -0
- data/public/vendor/replacejs/MIT-LICENSE.txt +20 -0
- data/public/vendor/replacejs/README.md +123 -0
- data/public/vendor/replacejs/bower.json +24 -0
- data/public/vendor/replacejs/primer.js +17 -0
- data/public/vendor/replacejs/primer.min.js +1 -0
- data/public/vendor/replacejs/replace.js +182 -0
- data/public/vendor/stupidtable.js +158 -0
- data/views/dashboard.haml +17 -0
- data/views/layout.haml +60 -0
- metadata +330 -0
@@ -0,0 +1,693 @@
|
|
1
|
+
//
|
2
|
+
// Mixins
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Utilities
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
// Clearfix
|
10
|
+
// Source: http://nicolasgallagher.com/micro-clearfix-hack/
|
11
|
+
//
|
12
|
+
// For modern browsers
|
13
|
+
// 1. The space content is one way to avoid an Opera bug when the
|
14
|
+
// contenteditable attribute is included anywhere else in the document.
|
15
|
+
// Otherwise it causes space to appear at the top and bottom of elements
|
16
|
+
// that are clearfixed.
|
17
|
+
// 2. The use of `table` rather than `block` is only necessary if using
|
18
|
+
// `:before` to contain the top-margins of child elements.
|
19
|
+
.clearfix() {
|
20
|
+
&:before,
|
21
|
+
&:after {
|
22
|
+
content: " "; /* 1 */
|
23
|
+
display: table; /* 2 */
|
24
|
+
}
|
25
|
+
&:after {
|
26
|
+
clear: both;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
// Webkit-style focus
|
31
|
+
.tab-focus() {
|
32
|
+
// Default
|
33
|
+
outline: thin dotted #333;
|
34
|
+
// Webkit
|
35
|
+
outline: 5px auto -webkit-focus-ring-color;
|
36
|
+
outline-offset: -2px;
|
37
|
+
}
|
38
|
+
|
39
|
+
// Center-align a block level element
|
40
|
+
.center-block() {
|
41
|
+
display: block;
|
42
|
+
margin-left: auto;
|
43
|
+
margin-right: auto;
|
44
|
+
}
|
45
|
+
|
46
|
+
// Sizing shortcuts
|
47
|
+
.size(@width; @height) {
|
48
|
+
width: @width;
|
49
|
+
height: @height;
|
50
|
+
}
|
51
|
+
.square(@size) {
|
52
|
+
.size(@size; @size);
|
53
|
+
}
|
54
|
+
|
55
|
+
// Placeholder text
|
56
|
+
.placeholder(@color: @input-color-placeholder) {
|
57
|
+
&:-moz-placeholder { color: @color; } // Firefox 4-18
|
58
|
+
&::-moz-placeholder { color: @color; } // Firefox 19+
|
59
|
+
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
|
60
|
+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
|
61
|
+
}
|
62
|
+
|
63
|
+
// Text overflow
|
64
|
+
// Requires inline-block or block for proper styling
|
65
|
+
.text-overflow() {
|
66
|
+
overflow: hidden;
|
67
|
+
text-overflow: ellipsis;
|
68
|
+
white-space: nowrap;
|
69
|
+
}
|
70
|
+
|
71
|
+
// CSS image replacement
|
72
|
+
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
|
73
|
+
.hide-text() {
|
74
|
+
font: ~"0/0" a;
|
75
|
+
color: transparent;
|
76
|
+
text-shadow: none;
|
77
|
+
background-color: transparent;
|
78
|
+
border: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
// CSS3 PROPERTIES
|
84
|
+
// --------------------------------------------------
|
85
|
+
|
86
|
+
// Single side border-radius
|
87
|
+
.border-top-radius(@radius) {
|
88
|
+
border-top-right-radius: @radius;
|
89
|
+
border-top-left-radius: @radius;
|
90
|
+
}
|
91
|
+
.border-right-radius(@radius) {
|
92
|
+
border-bottom-right-radius: @radius;
|
93
|
+
border-top-right-radius: @radius;
|
94
|
+
}
|
95
|
+
.border-bottom-radius(@radius) {
|
96
|
+
border-bottom-right-radius: @radius;
|
97
|
+
border-bottom-left-radius: @radius;
|
98
|
+
}
|
99
|
+
.border-left-radius(@radius) {
|
100
|
+
border-bottom-left-radius: @radius;
|
101
|
+
border-top-left-radius: @radius;
|
102
|
+
}
|
103
|
+
|
104
|
+
// Drop shadows
|
105
|
+
.box-shadow(@shadow) {
|
106
|
+
-webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
|
107
|
+
box-shadow: @shadow;
|
108
|
+
}
|
109
|
+
|
110
|
+
// Transitions
|
111
|
+
.transition(@transition) {
|
112
|
+
-webkit-transition: @transition;
|
113
|
+
transition: @transition;
|
114
|
+
}
|
115
|
+
.transition-delay(@transition-delay) {
|
116
|
+
-webkit-transition-delay: @transition-delay;
|
117
|
+
transition-delay: @transition-delay;
|
118
|
+
}
|
119
|
+
.transition-duration(@transition-duration) {
|
120
|
+
-webkit-transition-duration: @transition-duration;
|
121
|
+
transition-duration: @transition-duration;
|
122
|
+
}
|
123
|
+
.transition-transform(@transition) {
|
124
|
+
-webkit-transition: -webkit-transform @transition;
|
125
|
+
-moz-transition: -moz-transform @transition;
|
126
|
+
-o-transition: -o-transform @transition;
|
127
|
+
transition: transform @transition;
|
128
|
+
}
|
129
|
+
|
130
|
+
// Transformations
|
131
|
+
.rotate(@degrees) {
|
132
|
+
-webkit-transform: rotate(@degrees);
|
133
|
+
-ms-transform: rotate(@degrees); // IE9+
|
134
|
+
transform: rotate(@degrees);
|
135
|
+
}
|
136
|
+
.scale(@ratio) {
|
137
|
+
-webkit-transform: scale(@ratio);
|
138
|
+
-ms-transform: scale(@ratio); // IE9+
|
139
|
+
transform: scale(@ratio);
|
140
|
+
}
|
141
|
+
.translate(@x; @y) {
|
142
|
+
-webkit-transform: translate(@x, @y);
|
143
|
+
-ms-transform: translate(@x, @y); // IE9+
|
144
|
+
transform: translate(@x, @y);
|
145
|
+
}
|
146
|
+
.skew(@x; @y) {
|
147
|
+
-webkit-transform: skew(@x, @y);
|
148
|
+
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
|
149
|
+
transform: skew(@x, @y);
|
150
|
+
}
|
151
|
+
.translate3d(@x; @y; @z) {
|
152
|
+
-webkit-transform: translate3d(@x, @y, @z);
|
153
|
+
transform: translate3d(@x, @y, @z);
|
154
|
+
}
|
155
|
+
|
156
|
+
// Backface visibility
|
157
|
+
// Prevent browsers from flickering when using CSS 3D transforms.
|
158
|
+
// Default value is `visible`, but can be changed to `hidden`
|
159
|
+
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
|
160
|
+
.backface-visibility(@visibility){
|
161
|
+
-webkit-backface-visibility: @visibility;
|
162
|
+
-moz-backface-visibility: @visibility;
|
163
|
+
backface-visibility: @visibility;
|
164
|
+
}
|
165
|
+
|
166
|
+
// Box sizing
|
167
|
+
.box-sizing(@boxmodel) {
|
168
|
+
-webkit-box-sizing: @boxmodel;
|
169
|
+
-moz-box-sizing: @boxmodel;
|
170
|
+
box-sizing: @boxmodel;
|
171
|
+
}
|
172
|
+
|
173
|
+
// User select
|
174
|
+
// For selecting text on the page
|
175
|
+
.user-select(@select) {
|
176
|
+
-webkit-user-select: @select;
|
177
|
+
-moz-user-select: @select;
|
178
|
+
-ms-user-select: @select; // IE10+
|
179
|
+
-o-user-select: @select;
|
180
|
+
user-select: @select;
|
181
|
+
}
|
182
|
+
|
183
|
+
// Resize anything
|
184
|
+
.resizable(@direction) {
|
185
|
+
resize: @direction; // Options: horizontal, vertical, both
|
186
|
+
overflow: auto; // Safari fix
|
187
|
+
}
|
188
|
+
|
189
|
+
// CSS3 Content Columns
|
190
|
+
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
|
191
|
+
-webkit-column-count: @column-count;
|
192
|
+
-moz-column-count: @column-count;
|
193
|
+
column-count: @column-count;
|
194
|
+
-webkit-column-gap: @column-gap;
|
195
|
+
-moz-column-gap: @column-gap;
|
196
|
+
column-gap: @column-gap;
|
197
|
+
}
|
198
|
+
|
199
|
+
// Optional hyphenation
|
200
|
+
.hyphens(@mode: auto) {
|
201
|
+
word-wrap: break-word;
|
202
|
+
-webkit-hyphens: @mode;
|
203
|
+
-moz-hyphens: @mode;
|
204
|
+
-ms-hyphens: @mode; // IE10+
|
205
|
+
-o-hyphens: @mode;
|
206
|
+
hyphens: @mode;
|
207
|
+
}
|
208
|
+
|
209
|
+
// Opacity
|
210
|
+
.opacity(@opacity) {
|
211
|
+
opacity: @opacity;
|
212
|
+
// IE8 filter
|
213
|
+
@opacity-ie: (@opacity * 100);
|
214
|
+
filter: ~"alpha(opacity=@{opacity-ie})";
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
// GRADIENTS
|
220
|
+
// --------------------------------------------------
|
221
|
+
|
222
|
+
#gradient {
|
223
|
+
|
224
|
+
// Horizontal gradient, from left to right
|
225
|
+
//
|
226
|
+
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
227
|
+
// Color stops are not available in IE9 and below.
|
228
|
+
.horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
|
229
|
+
background-image: -webkit-gradient(linear, @start-percent top, @end-percent top, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+
|
230
|
+
background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1+, Chrome 10+
|
231
|
+
background-image: -moz-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // FF 3.6+
|
232
|
+
background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10
|
233
|
+
background-repeat: repeat-x;
|
234
|
+
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
|
235
|
+
}
|
236
|
+
|
237
|
+
// Vertical gradient, from top to bottom
|
238
|
+
//
|
239
|
+
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
240
|
+
// Color stops are not available in IE9 and below.
|
241
|
+
.vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
|
242
|
+
background-image: -webkit-gradient(linear, left @start-percent, left @end-percent, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+
|
243
|
+
background-image: -webkit-linear-gradient(top, @start-color, @start-percent, @end-color, @end-percent); // Safari 5.1+, Chrome 10+
|
244
|
+
background-image: -moz-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // FF 3.6+
|
245
|
+
background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10
|
246
|
+
background-repeat: repeat-x;
|
247
|
+
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
|
248
|
+
}
|
249
|
+
|
250
|
+
.directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
|
251
|
+
background-repeat: repeat-x;
|
252
|
+
background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1+, Chrome 10+
|
253
|
+
background-image: -moz-linear-gradient(@deg, @start-color, @end-color); // FF 3.6+
|
254
|
+
background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10
|
255
|
+
}
|
256
|
+
.horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
|
257
|
+
background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));
|
258
|
+
background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
|
259
|
+
background-image: -moz-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
|
260
|
+
background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
|
261
|
+
background-repeat: no-repeat;
|
262
|
+
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
|
263
|
+
}
|
264
|
+
.vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
|
265
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));
|
266
|
+
background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
|
267
|
+
background-image: -moz-linear-gradient(top, @start-color, @mid-color @color-stop, @end-color);
|
268
|
+
background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
|
269
|
+
background-repeat: no-repeat;
|
270
|
+
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
|
271
|
+
}
|
272
|
+
.radial(@inner-color: #555; @outer-color: #333) {
|
273
|
+
background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@inner-color), to(@outer-color));
|
274
|
+
background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
|
275
|
+
background-image: -moz-radial-gradient(circle, @inner-color, @outer-color);
|
276
|
+
background-image: radial-gradient(circle, @inner-color, @outer-color);
|
277
|
+
background-repeat: no-repeat;
|
278
|
+
}
|
279
|
+
.striped(@color: #555; @angle: 45deg) {
|
280
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, transparent), to(transparent));
|
281
|
+
background-image: -webkit-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);
|
282
|
+
background-image: -moz-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);
|
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
|
+
}
|
285
|
+
}
|
286
|
+
|
287
|
+
// Reset filters for IE
|
288
|
+
//
|
289
|
+
// When you need to remove a gradient background, don't forget to use this to reset
|
290
|
+
// the IE filter for IE9 and below.
|
291
|
+
.reset-filter() {
|
292
|
+
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
|
293
|
+
}
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
// RETINA IMAGE SUPPORT
|
298
|
+
// --------------------------------------------------
|
299
|
+
|
300
|
+
// Short retina mixin for setting background-image and -size
|
301
|
+
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
|
302
|
+
background-image: url("@{file-1x}");
|
303
|
+
|
304
|
+
@media
|
305
|
+
only screen and (-webkit-min-device-pixel-ratio: 2),
|
306
|
+
only screen and ( min--moz-device-pixel-ratio: 2),
|
307
|
+
only screen and ( -o-min-device-pixel-ratio: 2/1),
|
308
|
+
only screen and ( min-device-pixel-ratio: 2),
|
309
|
+
only screen and ( min-resolution: 192dpi),
|
310
|
+
only screen and ( min-resolution: 2dppx) {
|
311
|
+
background-image: url("@{file-2x}");
|
312
|
+
background-size: @width-1x @height-1x;
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
|
317
|
+
// COMPONENT MIXINS
|
318
|
+
// --------------------------------------------------
|
319
|
+
|
320
|
+
// Horizontal dividers
|
321
|
+
// -------------------------
|
322
|
+
// Dividers (basically an hr) within dropdowns and nav lists
|
323
|
+
.nav-divider(@color: #e5e5e5) {
|
324
|
+
height: 1px;
|
325
|
+
margin: ((@line-height-computed / 2) - 1) 0;
|
326
|
+
overflow: hidden;
|
327
|
+
background-color: @color;
|
328
|
+
}
|
329
|
+
|
330
|
+
// Panels
|
331
|
+
// -------------------------
|
332
|
+
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
|
333
|
+
border-color: @border;
|
334
|
+
.panel-heading {
|
335
|
+
color: @heading-text-color;
|
336
|
+
background-color: @heading-bg-color;
|
337
|
+
border-color: @heading-border;
|
338
|
+
+ .panel-collapse .panel-body {
|
339
|
+
border-top-color: @border;
|
340
|
+
}
|
341
|
+
}
|
342
|
+
.panel-footer {
|
343
|
+
+ .panel-collapse .panel-body {
|
344
|
+
border-bottom-color: @border;
|
345
|
+
}
|
346
|
+
}
|
347
|
+
}
|
348
|
+
|
349
|
+
// Alerts
|
350
|
+
// -------------------------
|
351
|
+
.alert-variant(@background; @border; @text-color) {
|
352
|
+
background-color: @background;
|
353
|
+
border-color: @border;
|
354
|
+
color: @text-color;
|
355
|
+
hr {
|
356
|
+
border-top-color: darken(@border, 5%);
|
357
|
+
}
|
358
|
+
.alert-link {
|
359
|
+
color: darken(@text-color, 10%);
|
360
|
+
}
|
361
|
+
}
|
362
|
+
|
363
|
+
// Button variants
|
364
|
+
// -------------------------
|
365
|
+
// Easily pump out default styles, as well as :hover, :focus, :active,
|
366
|
+
// and disabled options for all buttons
|
367
|
+
.button-variant(@color; @background; @border) {
|
368
|
+
color: @color;
|
369
|
+
background-color: @background;
|
370
|
+
border-color: @border;
|
371
|
+
|
372
|
+
&:hover,
|
373
|
+
&:focus,
|
374
|
+
&:active,
|
375
|
+
&.active {
|
376
|
+
color: @color;
|
377
|
+
background-color: darken(@background, 8%);
|
378
|
+
border-color: darken(@border, 12%);
|
379
|
+
}
|
380
|
+
|
381
|
+
&.disabled,
|
382
|
+
&[disabled],
|
383
|
+
fieldset[disabled] & {
|
384
|
+
&,
|
385
|
+
&:hover,
|
386
|
+
&:focus,
|
387
|
+
&:active,
|
388
|
+
&.active {
|
389
|
+
background-color: @background;
|
390
|
+
border-color: @border
|
391
|
+
}
|
392
|
+
}
|
393
|
+
}
|
394
|
+
|
395
|
+
// Button sizes
|
396
|
+
// -------------------------
|
397
|
+
.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
398
|
+
padding: @padding-vertical @padding-horizontal;
|
399
|
+
font-size: @font-size;
|
400
|
+
line-height: @line-height;
|
401
|
+
border-radius: @border-radius;
|
402
|
+
}
|
403
|
+
|
404
|
+
// Pagination
|
405
|
+
// -------------------------
|
406
|
+
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
|
407
|
+
> li {
|
408
|
+
> a,
|
409
|
+
> span {
|
410
|
+
padding: @padding-vertical @padding-horizontal;
|
411
|
+
font-size: @font-size;
|
412
|
+
}
|
413
|
+
&:first-child {
|
414
|
+
> a,
|
415
|
+
> span {
|
416
|
+
.border-left-radius(@border-radius);
|
417
|
+
}
|
418
|
+
}
|
419
|
+
&:last-child {
|
420
|
+
> a,
|
421
|
+
> span {
|
422
|
+
.border-right-radius(@border-radius);
|
423
|
+
}
|
424
|
+
}
|
425
|
+
}
|
426
|
+
}
|
427
|
+
|
428
|
+
// Labels
|
429
|
+
// -------------------------
|
430
|
+
.label-variant(@color) {
|
431
|
+
background-color: @color;
|
432
|
+
&[href] {
|
433
|
+
&:hover,
|
434
|
+
&:focus {
|
435
|
+
background-color: darken(@color, 10%);
|
436
|
+
}
|
437
|
+
}
|
438
|
+
}
|
439
|
+
|
440
|
+
// Navbar vertical align
|
441
|
+
// -------------------------
|
442
|
+
// Vertically center elements in the navbar.
|
443
|
+
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
|
444
|
+
.navbar-vertical-align(@element-height) {
|
445
|
+
margin-top: ((@navbar-height - @element-height) / 2);
|
446
|
+
margin-bottom: ((@navbar-height - @element-height) / 2);
|
447
|
+
}
|
448
|
+
|
449
|
+
// Progress bars
|
450
|
+
// -------------------------
|
451
|
+
.progress-bar-variant(@color) {
|
452
|
+
background-color: @color;
|
453
|
+
.progress-striped & {
|
454
|
+
#gradient > .striped(@color);
|
455
|
+
}
|
456
|
+
}
|
457
|
+
|
458
|
+
// Responsive utilities
|
459
|
+
// -------------------------
|
460
|
+
// More easily include all the states for responsive-utilities.less.
|
461
|
+
.responsive-visibility() {
|
462
|
+
display: block !important;
|
463
|
+
tr& { display: table-row !important; }
|
464
|
+
th&,
|
465
|
+
td& { display: table-cell !important; }
|
466
|
+
}
|
467
|
+
|
468
|
+
.responsive-invisibility() {
|
469
|
+
display: none !important;
|
470
|
+
tr& { display: none !important; }
|
471
|
+
th&,
|
472
|
+
td& { display: none !important; }
|
473
|
+
}
|
474
|
+
|
475
|
+
// Grid System
|
476
|
+
// -----------
|
477
|
+
|
478
|
+
// Centered container element
|
479
|
+
.container-fixed() {
|
480
|
+
margin-right: auto;
|
481
|
+
margin-left: auto;
|
482
|
+
.clearfix();
|
483
|
+
}
|
484
|
+
|
485
|
+
// Creates a wrapper for a series of columns
|
486
|
+
.make-row(@gutter: @grid-gutter-width) {
|
487
|
+
// Then clear the floated columns
|
488
|
+
.clearfix();
|
489
|
+
|
490
|
+
.container & {
|
491
|
+
@media (min-width: @screen-small) {
|
492
|
+
margin-left: (@gutter / -2);
|
493
|
+
margin-right: (@gutter / -2);
|
494
|
+
}
|
495
|
+
}
|
496
|
+
|
497
|
+
// Negative margin nested rows out to align the content of columns
|
498
|
+
.row {
|
499
|
+
margin-left: (@gutter / -2);
|
500
|
+
margin-right: (@gutter / -2);
|
501
|
+
}
|
502
|
+
}
|
503
|
+
|
504
|
+
// Generate the extra small columns
|
505
|
+
.make-xs-column(@columns; @gutter: @grid-gutter-width) {
|
506
|
+
position: relative;
|
507
|
+
float: left;
|
508
|
+
// Prevent columns from collapsing when empty
|
509
|
+
min-height: 1px;
|
510
|
+
// Inner gutter via padding
|
511
|
+
padding-left: (@gutter / 2);
|
512
|
+
padding-right: (@gutter / 2);
|
513
|
+
@max-width: (@screen-small - 1);
|
514
|
+
|
515
|
+
// Calculate width based on number of columns available
|
516
|
+
@media (max-width: @max-width) {
|
517
|
+
width: percentage((@columns / @grid-columns));
|
518
|
+
}
|
519
|
+
}
|
520
|
+
|
521
|
+
// Generate the small columns
|
522
|
+
.make-sm-column(@columns; @gutter: @grid-gutter-width) {
|
523
|
+
position: relative;
|
524
|
+
// Prevent columns from collapsing when empty
|
525
|
+
min-height: 1px;
|
526
|
+
// Inner gutter via padding
|
527
|
+
padding-left: (@gutter / 2);
|
528
|
+
padding-right: (@gutter / 2);
|
529
|
+
|
530
|
+
// Calculate width based on number of columns available
|
531
|
+
@media (min-width: @screen-small) {
|
532
|
+
float: left;
|
533
|
+
width: percentage((@columns / @grid-columns));
|
534
|
+
}
|
535
|
+
}
|
536
|
+
|
537
|
+
// Generate the small column offsets
|
538
|
+
.make-sm-column-offset(@columns) {
|
539
|
+
@media (min-width: @screen-small) {
|
540
|
+
margin-left: percentage((@columns / @grid-columns));
|
541
|
+
}
|
542
|
+
}
|
543
|
+
.make-sm-column-push(@columns) {
|
544
|
+
@media (min-width: @screen-small) {
|
545
|
+
left: percentage((@columns / @grid-columns));
|
546
|
+
}
|
547
|
+
}
|
548
|
+
.make-sm-column-pull(@columns) {
|
549
|
+
@media (min-width: @screen-small) {
|
550
|
+
right: percentage((@columns / @grid-columns));
|
551
|
+
}
|
552
|
+
}
|
553
|
+
|
554
|
+
// Generate the medium columns
|
555
|
+
.make-md-column(@columns; @gutter: @grid-gutter-width) {
|
556
|
+
position: relative;
|
557
|
+
// Prevent columns from collapsing when empty
|
558
|
+
min-height: 1px;
|
559
|
+
// Inner gutter via padding
|
560
|
+
padding-left: (@gutter / 2);
|
561
|
+
padding-right: (@gutter / 2);
|
562
|
+
|
563
|
+
// Calculate width based on number of columns available
|
564
|
+
@media (min-width: @screen-medium) {
|
565
|
+
float: left;
|
566
|
+
width: percentage((@columns / @grid-columns));
|
567
|
+
}
|
568
|
+
}
|
569
|
+
|
570
|
+
// Generate the large column offsets
|
571
|
+
.make-md-column-offset(@columns) {
|
572
|
+
@media (min-width: @screen-medium) {
|
573
|
+
margin-left: percentage((@columns / @grid-columns));
|
574
|
+
}
|
575
|
+
}
|
576
|
+
.make-md-column-push(@columns) {
|
577
|
+
@media (min-width: @screen-medium) {
|
578
|
+
left: percentage((@columns / @grid-columns));
|
579
|
+
}
|
580
|
+
}
|
581
|
+
.make-md-column-pull(@columns) {
|
582
|
+
@media (min-width: @screen-medium) {
|
583
|
+
right: percentage((@columns / @grid-columns));
|
584
|
+
}
|
585
|
+
}
|
586
|
+
|
587
|
+
// Generate the large columns
|
588
|
+
.make-lg-column(@columns; @gutter: @grid-gutter-width) {
|
589
|
+
position: relative;
|
590
|
+
// Prevent columns from collapsing when empty
|
591
|
+
min-height: 1px;
|
592
|
+
// Inner gutter via padding
|
593
|
+
padding-left: (@gutter / 2);
|
594
|
+
padding-right: (@gutter / 2);
|
595
|
+
|
596
|
+
// Calculate width based on number of columns available
|
597
|
+
@media (min-width: @screen-large) {
|
598
|
+
float: left;
|
599
|
+
width: percentage((@columns / @grid-columns));
|
600
|
+
}
|
601
|
+
}
|
602
|
+
|
603
|
+
// Generate the large column offsets
|
604
|
+
.make-lg-column-offset(@columns) {
|
605
|
+
@media (min-width: @screen-large) {
|
606
|
+
margin-left: percentage((@columns / @grid-columns));
|
607
|
+
}
|
608
|
+
}
|
609
|
+
.make-lg-column-push(@columns) {
|
610
|
+
@media (min-width: @screen-large) {
|
611
|
+
left: percentage((@columns / @grid-columns));
|
612
|
+
}
|
613
|
+
}
|
614
|
+
.make-lg-column-pull(@columns) {
|
615
|
+
@media (min-width: @screen-large) {
|
616
|
+
right: percentage((@columns / @grid-columns));
|
617
|
+
}
|
618
|
+
}
|
619
|
+
|
620
|
+
|
621
|
+
// Form validation states
|
622
|
+
//
|
623
|
+
// Used in forms.less to generate the form validation CSS for warnings, errors,
|
624
|
+
// and successes.
|
625
|
+
|
626
|
+
.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
|
627
|
+
// Color the label and help text
|
628
|
+
.help-block,
|
629
|
+
.control-label {
|
630
|
+
color: @text-color;
|
631
|
+
}
|
632
|
+
// Set the border and box shadow on specific inputs to match
|
633
|
+
.form-control {
|
634
|
+
border-color: @border-color;
|
635
|
+
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
|
636
|
+
&:focus {
|
637
|
+
border-color: darken(@border-color, 10%);
|
638
|
+
@shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
|
639
|
+
.box-shadow(@shadow);
|
640
|
+
}
|
641
|
+
}
|
642
|
+
// Set validation states also for addons
|
643
|
+
.input-group-addon {
|
644
|
+
color: @text-color;
|
645
|
+
border-color: @border-color;
|
646
|
+
background-color: @background-color;
|
647
|
+
}
|
648
|
+
}
|
649
|
+
|
650
|
+
// Form control focus state
|
651
|
+
//
|
652
|
+
// Generate a customized focus state and for any input with the specified color,
|
653
|
+
// which defaults to the `@input-focus-border` variable.
|
654
|
+
//
|
655
|
+
// We highly encourage you to not customize the default value, but instead use
|
656
|
+
// this to tweak colors on an as-needed basis. This aesthetic change is based on
|
657
|
+
// WebKit's default styles, but applicable to a wider range of browsers. Its
|
658
|
+
// usability and accessibility should be taken into account with any change.
|
659
|
+
//
|
660
|
+
// Example usage: change the default blue border and shadow to white for better
|
661
|
+
// contrast against a dark gray background.
|
662
|
+
|
663
|
+
.form-control-focus(@color: @input-border-focus) {
|
664
|
+
@color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
|
665
|
+
&:focus {
|
666
|
+
border-color: @color;
|
667
|
+
outline: 0;
|
668
|
+
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
|
669
|
+
}
|
670
|
+
}
|
671
|
+
|
672
|
+
// Form control sizing
|
673
|
+
//
|
674
|
+
// Relative text size, padding, and border-radii changes for form controls. For
|
675
|
+
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
|
676
|
+
// element gets special love because it's special, and that's a fact!
|
677
|
+
|
678
|
+
.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
679
|
+
height: @input-height;
|
680
|
+
padding: @padding-vertical @padding-horizontal;
|
681
|
+
font-size: @font-size;
|
682
|
+
line-height: @line-height;
|
683
|
+
border-radius: @border-radius;
|
684
|
+
|
685
|
+
select& {
|
686
|
+
height: @input-height;
|
687
|
+
line-height: @input-height;
|
688
|
+
}
|
689
|
+
|
690
|
+
textarea& {
|
691
|
+
height: auto;
|
692
|
+
}
|
693
|
+
}
|