bootstrap-bookingsync-sass 0.0.16 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -1
  3. data/CHANGELOG.md +11 -0
  4. data/assets/stylesheets/_bootstrap-bookingsync.scss +5 -2
  5. data/assets/stylesheets/bookingsync/_layout.scss +0 -49
  6. data/assets/stylesheets/bookingsync/_menu.scss +282 -0
  7. data/assets/stylesheets/bookingsync/_sheet.scss +27 -0
  8. data/assets/stylesheets/bookingsync/_switch.scss +0 -4
  9. data/assets/stylesheets/bookingsync/_theme.scss +0 -301
  10. data/assets/stylesheets/bookingsync/_type.scss +0 -4
  11. data/assets/stylesheets/bookingsync/_utilities.scss +46 -3
  12. data/assets/stylesheets/bookingsync/_variables.scss +130 -108
  13. data/docs/Gemfile +16 -0
  14. data/docs/Guardfile +25 -0
  15. data/docs/Rakefile +53 -0
  16. data/docs/Rules +58 -0
  17. data/docs/config.ru +15 -0
  18. data/docs/content/CNAME +1 -0
  19. data/docs/content/assets/javascripts/application.js.coffee +7 -0
  20. data/docs/content/assets/stylesheets/_base.scss +41 -0
  21. data/docs/content/assets/stylesheets/_callout.scss +50 -0
  22. data/docs/content/assets/stylesheets/_code.scss +18 -0
  23. data/docs/content/assets/stylesheets/_panels.scss +4 -0
  24. data/docs/content/assets/stylesheets/_variables.scss +14 -0
  25. data/docs/content/assets/stylesheets/application.scss +11 -0
  26. data/docs/content/components.html +23 -0
  27. data/docs/content/components/chosen.md +54 -0
  28. data/docs/content/components/menu.md +184 -0
  29. data/docs/content/components/sheet.md +36 -0
  30. data/docs/content/components/switch.md +44 -0
  31. data/docs/content/css.html +42 -0
  32. data/docs/content/css/forms.md +1138 -0
  33. data/docs/content/css/helpers.md +49 -0
  34. data/docs/content/highlight.css +1 -0
  35. data/docs/content/index.html +5 -0
  36. data/docs/layouts/default.html +12 -0
  37. data/docs/layouts/head.html +17 -0
  38. data/docs/layouts/navbar.html +27 -0
  39. data/docs/lib/default.rb +13 -0
  40. data/docs/nanoc.yaml +74 -0
  41. data/docs/vendor/assets/javascripts/chosen.js +1284 -0
  42. data/docs/vendor/assets/stylesheets/chosen.scss +448 -0
  43. data/lib/bootstrap/bookingsync/version.rb +1 -1
  44. metadata +36 -3
@@ -0,0 +1,448 @@
1
+ /*!
2
+ Chosen, a Select Box Enhancer for jQuery and Prototype
3
+ by Patrick Filler for Harvest, http://getharvest.com
4
+
5
+ Version 1.5.0
6
+ Full source at https://github.com/harvesthq/chosen
7
+ Copyright (c) 2011-2016 Harvest http://getharvest.com
8
+
9
+ MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
10
+ This file is generated by `grunt build`, do not edit it by hand.
11
+ */
12
+
13
+ /* @group Base */
14
+ .chosen-container {
15
+ position: relative;
16
+ display: inline-block;
17
+ vertical-align: middle;
18
+ font-size: 13px;
19
+ -webkit-user-select: none;
20
+ -moz-user-select: none;
21
+ user-select: none;
22
+ }
23
+ .chosen-container * {
24
+ -webkit-box-sizing: border-box;
25
+ -moz-box-sizing: border-box;
26
+ box-sizing: border-box;
27
+ }
28
+ .chosen-container .chosen-drop {
29
+ position: absolute;
30
+ top: 100%;
31
+ left: -9999px;
32
+ z-index: 1010;
33
+ width: 100%;
34
+ border: 1px solid #aaa;
35
+ border-top: 0;
36
+ background: #fff;
37
+ box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
38
+ }
39
+ .chosen-container.chosen-with-drop .chosen-drop {
40
+ left: 0;
41
+ }
42
+ .chosen-container a {
43
+ cursor: pointer;
44
+ }
45
+ .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
46
+ margin-right: 4px;
47
+ overflow: hidden;
48
+ white-space: nowrap;
49
+ text-overflow: ellipsis;
50
+ font-weight: normal;
51
+ color: #999999;
52
+ }
53
+ .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
54
+ content: ":";
55
+ padding-left: 2px;
56
+ vertical-align: top;
57
+ }
58
+
59
+ /* @end */
60
+ /* @group Single Chosen */
61
+ .chosen-container-single .chosen-single {
62
+ position: relative;
63
+ display: block;
64
+ overflow: hidden;
65
+ padding: 0 0 0 8px;
66
+ height: 25px;
67
+ border: 1px solid #aaa;
68
+ border-radius: 5px;
69
+ background-color: #fff;
70
+ background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
71
+ background: -webkit-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
72
+ background: -moz-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
73
+ background: -o-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
74
+ background: linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
75
+ background-clip: padding-box;
76
+ box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
77
+ color: #444;
78
+ text-decoration: none;
79
+ white-space: nowrap;
80
+ line-height: 24px;
81
+ }
82
+ .chosen-container-single .chosen-default {
83
+ color: #999;
84
+ }
85
+ .chosen-container-single .chosen-single span {
86
+ display: block;
87
+ overflow: hidden;
88
+ margin-right: 26px;
89
+ text-overflow: ellipsis;
90
+ white-space: nowrap;
91
+ }
92
+ .chosen-container-single .chosen-single-with-deselect span {
93
+ margin-right: 38px;
94
+ }
95
+ .chosen-container-single .chosen-single abbr {
96
+ position: absolute;
97
+ top: 6px;
98
+ right: 26px;
99
+ display: block;
100
+ width: 12px;
101
+ height: 12px;
102
+ background: url('chosen-sprite.png') -42px 1px no-repeat;
103
+ font-size: 1px;
104
+ }
105
+ .chosen-container-single .chosen-single abbr:hover {
106
+ background-position: -42px -10px;
107
+ }
108
+ .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
109
+ background-position: -42px -10px;
110
+ }
111
+ .chosen-container-single .chosen-single div {
112
+ position: absolute;
113
+ top: 0;
114
+ right: 0;
115
+ display: block;
116
+ width: 18px;
117
+ height: 100%;
118
+ }
119
+ .chosen-container-single .chosen-single div b {
120
+ display: block;
121
+ width: 100%;
122
+ height: 100%;
123
+ background: url('chosen-sprite.png') no-repeat 0px 2px;
124
+ }
125
+ .chosen-container-single .chosen-search {
126
+ position: relative;
127
+ z-index: 1010;
128
+ margin: 0;
129
+ padding: 3px 4px;
130
+ white-space: nowrap;
131
+ }
132
+ .chosen-container-single .chosen-search input[type="text"] {
133
+ margin: 1px 0;
134
+ padding: 4px 20px 4px 5px;
135
+ width: 100%;
136
+ height: auto;
137
+ outline: 0;
138
+ border: 1px solid #aaa;
139
+ background: white url('chosen-sprite.png') no-repeat 100% -20px;
140
+ background: url('chosen-sprite.png') no-repeat 100% -20px;
141
+ font-size: 1em;
142
+ font-family: sans-serif;
143
+ line-height: normal;
144
+ border-radius: 0;
145
+ }
146
+ .chosen-container-single .chosen-drop {
147
+ margin-top: -1px;
148
+ border-radius: 0 0 4px 4px;
149
+ background-clip: padding-box;
150
+ }
151
+ .chosen-container-single.chosen-container-single-nosearch .chosen-search {
152
+ position: absolute;
153
+ left: -9999px;
154
+ }
155
+
156
+ /* @end */
157
+ /* @group Results */
158
+ .chosen-container .chosen-results {
159
+ color: #444;
160
+ position: relative;
161
+ overflow-x: hidden;
162
+ overflow-y: auto;
163
+ margin: 0 4px 4px 0;
164
+ padding: 0 0 0 4px;
165
+ max-height: 240px;
166
+ -webkit-overflow-scrolling: touch;
167
+ }
168
+ .chosen-container .chosen-results li {
169
+ display: none;
170
+ margin: 0;
171
+ padding: 5px 6px;
172
+ list-style: none;
173
+ line-height: 15px;
174
+ word-wrap: break-word;
175
+ -webkit-touch-callout: none;
176
+ }
177
+ .chosen-container .chosen-results li.active-result {
178
+ display: list-item;
179
+ cursor: pointer;
180
+ }
181
+ .chosen-container .chosen-results li.disabled-result {
182
+ display: list-item;
183
+ color: #ccc;
184
+ cursor: default;
185
+ }
186
+ .chosen-container .chosen-results li.highlighted {
187
+ background-color: #3875d7;
188
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
189
+ background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
190
+ background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
191
+ background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
192
+ background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
193
+ color: #fff;
194
+ }
195
+ .chosen-container .chosen-results li.no-results {
196
+ color: #777;
197
+ display: list-item;
198
+ background: #f4f4f4;
199
+ }
200
+ .chosen-container .chosen-results li.group-result {
201
+ display: list-item;
202
+ font-weight: bold;
203
+ cursor: default;
204
+ }
205
+ .chosen-container .chosen-results li.group-option {
206
+ padding-left: 15px;
207
+ }
208
+ .chosen-container .chosen-results li em {
209
+ font-style: normal;
210
+ text-decoration: underline;
211
+ }
212
+
213
+ /* @end */
214
+ /* @group Multi Chosen */
215
+ .chosen-container-multi .chosen-choices {
216
+ position: relative;
217
+ overflow: hidden;
218
+ margin: 0;
219
+ padding: 0 5px;
220
+ width: 100%;
221
+ height: auto !important;
222
+ height: 1%;
223
+ border: 1px solid #aaa;
224
+ background-color: #fff;
225
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
226
+ background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
227
+ background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
228
+ background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
229
+ background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
230
+ cursor: text;
231
+ }
232
+ .chosen-container-multi .chosen-choices li {
233
+ float: left;
234
+ list-style: none;
235
+ }
236
+ .chosen-container-multi .chosen-choices li.search-field {
237
+ margin: 0;
238
+ padding: 0;
239
+ white-space: nowrap;
240
+ }
241
+ .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
242
+ margin: 1px 0;
243
+ padding: 0;
244
+ height: 25px;
245
+ outline: 0;
246
+ border: 0 !important;
247
+ background: transparent !important;
248
+ box-shadow: none;
249
+ color: #999;
250
+ font-size: 100%;
251
+ font-family: sans-serif;
252
+ line-height: normal;
253
+ border-radius: 0;
254
+ }
255
+ .chosen-container-multi .chosen-choices li.search-choice {
256
+ position: relative;
257
+ margin: 3px 5px 3px 0;
258
+ padding: 3px 20px 3px 5px;
259
+ border: 1px solid #aaa;
260
+ max-width: 100%;
261
+ border-radius: 3px;
262
+ background-color: #eeeeee;
263
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
264
+ background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
265
+ background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
266
+ background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
267
+ background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
268
+ background-size: 100% 19px;
269
+ background-repeat: repeat-x;
270
+ background-clip: padding-box;
271
+ box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
272
+ color: #333;
273
+ line-height: 13px;
274
+ cursor: default;
275
+ }
276
+ .chosen-container-multi .chosen-choices li.search-choice span {
277
+ word-wrap: break-word;
278
+ }
279
+ .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
280
+ position: absolute;
281
+ top: 4px;
282
+ right: 3px;
283
+ display: block;
284
+ width: 12px;
285
+ height: 12px;
286
+ background: url('chosen-sprite.png') -42px 1px no-repeat;
287
+ font-size: 1px;
288
+ }
289
+ .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
290
+ background-position: -42px -10px;
291
+ }
292
+ .chosen-container-multi .chosen-choices li.search-choice-disabled {
293
+ padding-right: 5px;
294
+ border: 1px solid #ccc;
295
+ background-color: #e4e4e4;
296
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
297
+ background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
298
+ background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
299
+ background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
300
+ background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
301
+ color: #666;
302
+ }
303
+ .chosen-container-multi .chosen-choices li.search-choice-focus {
304
+ background: #d4d4d4;
305
+ }
306
+ .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
307
+ background-position: -42px -10px;
308
+ }
309
+ .chosen-container-multi .chosen-results {
310
+ margin: 0;
311
+ padding: 0;
312
+ }
313
+ .chosen-container-multi .chosen-drop .result-selected {
314
+ display: list-item;
315
+ color: #ccc;
316
+ cursor: default;
317
+ }
318
+
319
+ /* @end */
320
+ /* @group Active */
321
+ .chosen-container-active .chosen-single {
322
+ border: 1px solid #5897fb;
323
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
324
+ }
325
+ .chosen-container-active.chosen-with-drop .chosen-single {
326
+ border: 1px solid #aaa;
327
+ -moz-border-radius-bottomright: 0;
328
+ border-bottom-right-radius: 0;
329
+ -moz-border-radius-bottomleft: 0;
330
+ border-bottom-left-radius: 0;
331
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
332
+ background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
333
+ background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
334
+ background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
335
+ background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
336
+ box-shadow: 0 1px 0 #fff inset;
337
+ }
338
+ .chosen-container-active.chosen-with-drop .chosen-single div {
339
+ border-left: none;
340
+ background: transparent;
341
+ }
342
+ .chosen-container-active.chosen-with-drop .chosen-single div b {
343
+ background-position: -18px 2px;
344
+ }
345
+ .chosen-container-active .chosen-choices {
346
+ border: 1px solid #5897fb;
347
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
348
+ }
349
+ .chosen-container-active .chosen-choices li.search-field input[type="text"] {
350
+ color: #222 !important;
351
+ }
352
+
353
+ /* @end */
354
+ /* @group Disabled Support */
355
+ .chosen-disabled {
356
+ opacity: 0.5 !important;
357
+ cursor: default;
358
+ }
359
+ .chosen-disabled .chosen-single {
360
+ cursor: default;
361
+ }
362
+ .chosen-disabled .chosen-choices .search-choice .search-choice-close {
363
+ cursor: default;
364
+ }
365
+
366
+ /* @end */
367
+ /* @group Right to Left */
368
+ .chosen-rtl {
369
+ text-align: right;
370
+ }
371
+ .chosen-rtl .chosen-single {
372
+ overflow: visible;
373
+ padding: 0 8px 0 0;
374
+ }
375
+ .chosen-rtl .chosen-single span {
376
+ margin-right: 0;
377
+ margin-left: 26px;
378
+ direction: rtl;
379
+ }
380
+ .chosen-rtl .chosen-single-with-deselect span {
381
+ margin-left: 38px;
382
+ }
383
+ .chosen-rtl .chosen-single div {
384
+ right: auto;
385
+ left: 3px;
386
+ }
387
+ .chosen-rtl .chosen-single abbr {
388
+ right: auto;
389
+ left: 26px;
390
+ }
391
+ .chosen-rtl .chosen-choices li {
392
+ float: right;
393
+ }
394
+ .chosen-rtl .chosen-choices li.search-field input[type="text"] {
395
+ direction: rtl;
396
+ }
397
+ .chosen-rtl .chosen-choices li.search-choice {
398
+ margin: 3px 5px 3px 0;
399
+ padding: 3px 5px 3px 19px;
400
+ }
401
+ .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
402
+ right: auto;
403
+ left: 4px;
404
+ }
405
+ .chosen-rtl.chosen-container-single-nosearch .chosen-search,
406
+ .chosen-rtl .chosen-drop {
407
+ left: 9999px;
408
+ }
409
+ .chosen-rtl.chosen-container-single .chosen-results {
410
+ margin: 0 0 4px 4px;
411
+ padding: 0 4px 0 0;
412
+ }
413
+ .chosen-rtl .chosen-results li.group-option {
414
+ padding-right: 15px;
415
+ padding-left: 0;
416
+ }
417
+ .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
418
+ border-right: none;
419
+ }
420
+ .chosen-rtl .chosen-search input[type="text"] {
421
+ padding: 4px 5px 4px 20px;
422
+ background: white url('chosen-sprite.png') no-repeat -30px -20px;
423
+ background: url('chosen-sprite.png') no-repeat -30px -20px;
424
+ direction: rtl;
425
+ }
426
+ .chosen-rtl.chosen-container-single .chosen-single div b {
427
+ background-position: 6px 2px;
428
+ }
429
+ .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
430
+ background-position: -12px 2px;
431
+ }
432
+
433
+ /* @end */
434
+ /* @group Retina compatibility */
435
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
436
+ .chosen-rtl .chosen-search input[type="text"],
437
+ .chosen-container-single .chosen-single abbr,
438
+ .chosen-container-single .chosen-single div b,
439
+ .chosen-container-single .chosen-search input[type="text"],
440
+ .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
441
+ .chosen-container .chosen-results-scroll-down span,
442
+ .chosen-container .chosen-results-scroll-up span {
443
+ background-image: url('chosen-sprite@2x.png') !important;
444
+ background-size: 52px 37px !important;
445
+ background-repeat: no-repeat !important;
446
+ }
447
+ }
448
+ /* @end */
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module BookingSync
3
- VERSION = '0.0.16'
3
+ VERSION = '0.0.17'
4
4
  end
5
5
  end