jekyll-any-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_includes/api/example.html +23 -0
  5. data/_includes/api/get.html +11 -0
  6. data/_includes/api/save.html +1 -0
  7. data/_includes/components/alert.html +7 -0
  8. data/_includes/components/blockquote.html +23 -0
  9. data/_includes/components/bootstrap.html +245 -0
  10. data/_includes/components/card.html +85 -0
  11. data/_includes/components/lead.html +1 -0
  12. data/_includes/components/login.html +28 -0
  13. data/_includes/components/navbar_link.html +3 -0
  14. data/_includes/components/navbar_text.html +3 -0
  15. data/_includes/components/page_info.html +48 -0
  16. data/_includes/components/toc.html +18 -0
  17. data/_includes/filters/link_to_file.html +26 -0
  18. data/_includes/filters/unslug.html +17 -0
  19. data/_includes/page/end.html +2 -0
  20. data/_includes/page/footer.html +26 -0
  21. data/_includes/page/head.html +28 -0
  22. data/_includes/page/header.html +7 -0
  23. data/_includes/page/init.html +17 -0
  24. data/_includes/page/main.html +44 -0
  25. data/_includes/page/navbar.html +69 -0
  26. data/_includes/page/sidebar.html +6 -0
  27. data/_includes/page/top.html +27 -0
  28. data/_includes/tempus/calendar.html +26 -0
  29. data/_includes/tempus/events.html +72 -0
  30. data/_includes/tempus/next.html +73 -0
  31. data/_includes/widgets/libros.html +183 -0
  32. data/_includes/widgets/themes.html +11 -0
  33. data/_includes/widgets/toc.html +18 -0
  34. data/_layouts/default.html +8 -0
  35. data/_layouts/page.html +5 -0
  36. data/_layouts/post.html +5 -0
  37. data/_sass/_any_theme.sass +54 -0
  38. data/_sass/any_theme/_corrections.sass +71 -0
  39. data/_sass/any_theme/_headings.sass +13 -0
  40. data/_sass/any_theme/_mixins.sass +11 -0
  41. data/_sass/any_theme/_syntax_blood.scss +310 -0
  42. data/_sass/any_theme/_syntax_dark.scss +63 -0
  43. data/_sass/any_theme/_syntax_default.scss +310 -0
  44. data/_sass/any_theme/_toc.sass +4 -0
  45. data/_sass/any_theme/_widgets.sass +48 -0
  46. data/_sass/bootstrap/_alert.scss +51 -0
  47. data/_sass/bootstrap/_badge.scss +47 -0
  48. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  49. data/_sass/bootstrap/_button-group.scss +166 -0
  50. data/_sass/bootstrap/_buttons.scss +143 -0
  51. data/_sass/bootstrap/_card.scss +270 -0
  52. data/_sass/bootstrap/_carousel.scss +191 -0
  53. data/_sass/bootstrap/_close.scss +34 -0
  54. data/_sass/bootstrap/_code.scss +56 -0
  55. data/_sass/bootstrap/_custom-forms.scss +297 -0
  56. data/_sass/bootstrap/_dropdown.scss +131 -0
  57. data/_sass/bootstrap/_forms.scss +333 -0
  58. data/_sass/bootstrap/_functions.scss +86 -0
  59. data/_sass/bootstrap/_grid.scss +52 -0
  60. data/_sass/bootstrap/_images.scss +42 -0
  61. data/_sass/bootstrap/_input-group.scss +159 -0
  62. data/_sass/bootstrap/_jumbotron.scss +16 -0
  63. data/_sass/bootstrap/_list-group.scss +115 -0
  64. data/_sass/bootstrap/_media.scss +8 -0
  65. data/_sass/bootstrap/_mixins.scss +42 -0
  66. data/_sass/bootstrap/_modal.scss +168 -0
  67. data/_sass/bootstrap/_nav.scss +118 -0
  68. data/_sass/bootstrap/_navbar.scss +311 -0
  69. data/_sass/bootstrap/_pagination.scss +77 -0
  70. data/_sass/bootstrap/_popover.scss +183 -0
  71. data/_sass/bootstrap/_print.scss +124 -0
  72. data/_sass/bootstrap/_progress.scss +33 -0
  73. data/_sass/bootstrap/_reboot.scss +482 -0
  74. data/_sass/bootstrap/_root.scss +19 -0
  75. data/_sass/bootstrap/_tables.scss +180 -0
  76. data/_sass/bootstrap/_tooltip.scss +115 -0
  77. data/_sass/bootstrap/_transitions.scss +36 -0
  78. data/_sass/bootstrap/_type.scss +125 -0
  79. data/_sass/bootstrap/_utilities.scss +14 -0
  80. data/_sass/bootstrap/_variables.scss +894 -0
  81. data/_sass/bootstrap/bootstrap-grid.scss +32 -0
  82. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  83. data/_sass/bootstrap/bootstrap.scss +42 -0
  84. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  85. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  90. data/_sass/bootstrap/mixins/_buttons.scss +109 -0
  91. data/_sass/bootstrap/mixins/_caret.scss +65 -0
  92. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  93. data/_sass/bootstrap/mixins/_float.scss +11 -0
  94. data/_sass/bootstrap/mixins/_forms.scss +137 -0
  95. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  96. data/_sass/bootstrap/mixins/_grid-framework.scss +67 -0
  97. data/_sass/bootstrap/mixins/_grid.scss +52 -0
  98. data/_sass/bootstrap/mixins/_hover.scss +39 -0
  99. data/_sass/bootstrap/mixins/_image.scss +36 -0
  100. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  101. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  102. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  103. data/_sass/bootstrap/mixins/_navbar-align.scss +10 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  105. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  106. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +35 -0
  108. data/_sass/bootstrap/mixins/_size.scss +6 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +9 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +9 -0
  114. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  115. data/_sass/bootstrap/utilities/_align.scss +8 -0
  116. data/_sass/bootstrap/utilities/_background.scss +19 -0
  117. data/_sass/bootstrap/utilities/_borders.scss +59 -0
  118. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  119. data/_sass/bootstrap/utilities/_display.scss +38 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +46 -0
  122. data/_sass/bootstrap/utilities/_float.scss +9 -0
  123. data/_sass/bootstrap/utilities/_position.scss +36 -0
  124. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  125. data/_sass/bootstrap/utilities/_sizing.scss +12 -0
  126. data/_sass/bootstrap/utilities/_spacing.scss +51 -0
  127. data/_sass/bootstrap/utilities/_text.scss +52 -0
  128. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  129. data/assets/css/basic_light_sans.sass +71 -0
  130. data/assets/css_no/basic_dark_sans.sass +114 -0
  131. data/assets/css_no/basic_dark_serif.sass +114 -0
  132. data/assets/css_no/basic_light_serif.sass +69 -0
  133. data/assets/css_no/bootstrap.sass +44 -0
  134. data/assets/css_no/dark_additions.sass +74 -0
  135. data/assets/css_no/dnd.sass +188 -0
  136. data/assets/css_no/gurps.sass +70 -0
  137. data/assets/css_no/minidark.sass +177 -0
  138. data/assets/css_no/minimal.sass +139 -0
  139. data/assets/css_no/roboto_dark.sass +324 -0
  140. data/assets/css_no/roboto_light.sass +275 -0
  141. data/assets/fonts/scala/fonts.scss +59 -0
  142. data/assets/fonts/scala/scala-bold-webfont.eot +0 -0
  143. data/assets/fonts/scala/scala-bold-webfont.svg +873 -0
  144. data/assets/fonts/scala/scala-bold-webfont.ttf +0 -0
  145. data/assets/fonts/scala/scala-bold-webfont.woff +0 -0
  146. data/assets/fonts/scala/scala-italic-webfont.eot +0 -0
  147. data/assets/fonts/scala/scala-italic-webfont.svg +235 -0
  148. data/assets/fonts/scala/scala-italic-webfont.ttf +0 -0
  149. data/assets/fonts/scala/scala-italic-webfont.woff +0 -0
  150. data/assets/fonts/scala/scala-webfont.eot +0 -0
  151. data/assets/fonts/scala/scala-webfont.svg +234 -0
  152. data/assets/fonts/scala/scala-webfont.ttf +0 -0
  153. data/assets/fonts/scala/scala-webfont.woff +0 -0
  154. data/assets/fonts/scala/scalasans-bold-webfont.eot +0 -0
  155. data/assets/fonts/scala/scalasans-bold-webfont.svg +244 -0
  156. data/assets/fonts/scala/scalasans-bold-webfont.ttf +0 -0
  157. data/assets/fonts/scala/scalasans-bold-webfont.woff +0 -0
  158. data/assets/fonts/scala/scalasans-webfont.eot +0 -0
  159. data/assets/fonts/scala/scalasans-webfont.svg +238 -0
  160. data/assets/fonts/scala/scalasans-webfont.ttf +0 -0
  161. data/assets/fonts/scala/scalasans-webfont.woff +0 -0
  162. data/assets/images/dnd-bg.jpg +0 -0
  163. data/assets/js/any-theme.coffee +33 -0
  164. data/assets/js/any_theme/libros.coffee +113 -0
  165. data/assets/js/any_theme/login.coffee +90 -0
  166. data/assets/js/any_theme/storage.coffee +49 -0
  167. data/assets/js/any_theme/themes.coffee +10 -0
  168. data/assets/pages/about.md +17 -0
  169. data/assets/pages/customize/css.md +22 -0
  170. data/assets/pages/customize/themes.md +17 -0
  171. data/assets/pages/docs/libros.md +17 -0
  172. data/assets/pages/docs/tempus.md +66 -0
  173. data/assets/pages/index.md +21 -0
  174. metadata +258 -0
@@ -0,0 +1,482 @@
1
+ // stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
2
+
3
+ // Reboot
4
+ //
5
+ // Normalization of HTML elements, manually forked from Normalize.css to remove
6
+ // styles targeting irrelevant browsers while applying new styles.
7
+ //
8
+ // Normalize is licensed MIT. https://github.com/necolas/normalize.css
9
+
10
+
11
+ // Document
12
+ //
13
+ // 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
14
+ // 2. Change the default font family in all browsers.
15
+ // 3. Correct the line height in all browsers.
16
+ // 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
17
+ // 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so
18
+ // we force a non-overlapping, non-auto-hiding scrollbar to counteract.
19
+ // 6. Change the default tap highlight to be completely transparent in iOS.
20
+
21
+ *,
22
+ *::before,
23
+ *::after {
24
+ box-sizing: border-box; // 1
25
+ }
26
+
27
+ html {
28
+ font-family: sans-serif; // 2
29
+ line-height: 1.15; // 3
30
+ -webkit-text-size-adjust: 100%; // 4
31
+ -ms-text-size-adjust: 100%; // 4
32
+ -ms-overflow-style: scrollbar; // 5
33
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // 6
34
+ }
35
+
36
+ // IE10+ doesn't honor `<meta name="viewport">` in some cases.
37
+ @at-root {
38
+ @-ms-viewport {
39
+ width: device-width;
40
+ }
41
+ }
42
+
43
+ // stylelint-disable selector-list-comma-newline-after
44
+ // Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
45
+ article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
46
+ display: block;
47
+ }
48
+ // stylelint-enable selector-list-comma-newline-after
49
+
50
+ // Body
51
+ //
52
+ // 1. Remove the margin in all browsers.
53
+ // 2. As a best practice, apply a default `background-color`.
54
+ // 3. Set an explicit initial text-align value so that we can later use the
55
+ // the `inherit` value on things like `<th>` elements.
56
+
57
+ body {
58
+ margin: 0; // 1
59
+ font-family: $font-family-base;
60
+ font-size: $font-size-base;
61
+ font-weight: $font-weight-base;
62
+ line-height: $line-height-base;
63
+ color: $body-color;
64
+ text-align: left; // 3
65
+ background-color: $body-bg; // 2
66
+ }
67
+
68
+ // Suppress the focus outline on elements that cannot be accessed via keyboard.
69
+ // This prevents an unwanted focus outline from appearing around elements that
70
+ // might still respond to pointer events.
71
+ //
72
+ // Credit: https://github.com/suitcss/base
73
+ [tabindex="-1"]:focus {
74
+ outline: 0 !important;
75
+ }
76
+
77
+
78
+ // Content grouping
79
+ //
80
+ // 1. Add the correct box sizing in Firefox.
81
+ // 2. Show the overflow in Edge and IE.
82
+
83
+ hr {
84
+ box-sizing: content-box; // 1
85
+ height: 0; // 1
86
+ overflow: visible; // 2
87
+ }
88
+
89
+
90
+ //
91
+ // Typography
92
+ //
93
+
94
+ // Remove top margins from headings
95
+ //
96
+ // By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
97
+ // margin for easier control within type scales as it avoids margin collapsing.
98
+ // stylelint-disable selector-list-comma-newline-after
99
+ h1, h2, h3, h4, h5, h6 {
100
+ margin-top: 0;
101
+ margin-bottom: $headings-margin-bottom;
102
+ }
103
+ // stylelint-enable selector-list-comma-newline-after
104
+
105
+ // Reset margins on paragraphs
106
+ //
107
+ // Similarly, the top margin on `<p>`s get reset. However, we also reset the
108
+ // bottom margin to use `rem` units instead of `em`.
109
+ p {
110
+ margin-top: 0;
111
+ margin-bottom: $paragraph-margin-bottom;
112
+ }
113
+
114
+ // Abbreviations
115
+ //
116
+ // 1. Remove the bottom border in Firefox 39-.
117
+ // 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
118
+ // 3. Add explicit cursor to indicate changed behavior.
119
+ // 4. Duplicate behavior to the data-* attribute for our tooltip plugin
120
+
121
+ abbr[title],
122
+ abbr[data-original-title] { // 4
123
+ text-decoration: underline; // 2
124
+ text-decoration: underline dotted; // 2
125
+ cursor: help; // 3
126
+ border-bottom: 0; // 1
127
+ }
128
+
129
+ address {
130
+ margin-bottom: 1rem;
131
+ font-style: normal;
132
+ line-height: inherit;
133
+ }
134
+
135
+ ol,
136
+ ul,
137
+ dl {
138
+ margin-top: 0;
139
+ margin-bottom: 1rem;
140
+ }
141
+
142
+ ol ol,
143
+ ul ul,
144
+ ol ul,
145
+ ul ol {
146
+ margin-bottom: 0;
147
+ }
148
+
149
+ dt {
150
+ font-weight: $dt-font-weight;
151
+ }
152
+
153
+ dd {
154
+ margin-bottom: .5rem;
155
+ margin-left: 0; // Undo browser default
156
+ }
157
+
158
+ blockquote {
159
+ margin: 0 0 1rem;
160
+ }
161
+
162
+ dfn {
163
+ font-style: italic; // Add the correct font style in Android 4.3-
164
+ }
165
+
166
+ // stylelint-disable font-weight-notation
167
+ b,
168
+ strong {
169
+ font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari
170
+ }
171
+ // stylelint-enable font-weight-notation
172
+
173
+ small {
174
+ font-size: 80%; // Add the correct font size in all browsers
175
+ }
176
+
177
+ //
178
+ // Prevent `sub` and `sup` elements from affecting the line height in
179
+ // all browsers.
180
+ //
181
+
182
+ sub,
183
+ sup {
184
+ position: relative;
185
+ font-size: 75%;
186
+ line-height: 0;
187
+ vertical-align: baseline;
188
+ }
189
+
190
+ sub { bottom: -.25em; }
191
+ sup { top: -.5em; }
192
+
193
+
194
+ //
195
+ // Links
196
+ //
197
+
198
+ a {
199
+ color: $link-color;
200
+ text-decoration: $link-decoration;
201
+ background-color: transparent; // Remove the gray background on active links in IE 10.
202
+ -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.
203
+
204
+ @include hover {
205
+ color: $link-hover-color;
206
+ text-decoration: $link-hover-decoration;
207
+ }
208
+ }
209
+
210
+ // And undo these styles for placeholder links/named anchors (without href)
211
+ // which have not been made explicitly keyboard-focusable (without tabindex).
212
+ // It would be more straightforward to just use a[href] in previous block, but that
213
+ // causes specificity issues in many other styles that are too complex to fix.
214
+ // See https://github.com/twbs/bootstrap/issues/19402
215
+
216
+ a:not([href]):not([tabindex]) {
217
+ color: inherit;
218
+ text-decoration: none;
219
+
220
+ @include hover-focus {
221
+ color: inherit;
222
+ text-decoration: none;
223
+ }
224
+
225
+ &:focus {
226
+ outline: 0;
227
+ }
228
+ }
229
+
230
+
231
+ //
232
+ // Code
233
+ //
234
+
235
+ // stylelint-disable font-family-no-duplicate-names
236
+ pre,
237
+ code,
238
+ kbd,
239
+ samp {
240
+ font-family: monospace, monospace; // Correct the inheritance and scaling of font size in all browsers.
241
+ font-size: 1em; // Correct the odd `em` font sizing in all browsers.
242
+ }
243
+ // stylelint-enable font-family-no-duplicate-names
244
+
245
+ pre {
246
+ // Remove browser default top margin
247
+ margin-top: 0;
248
+ // Reset browser default of `1em` to use `rem`s
249
+ margin-bottom: 1rem;
250
+ // Don't allow content to break outside
251
+ overflow: auto;
252
+ // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so
253
+ // we force a non-overlapping, non-auto-hiding scrollbar to counteract.
254
+ -ms-overflow-style: scrollbar;
255
+ }
256
+
257
+
258
+ //
259
+ // Figures
260
+ //
261
+
262
+ figure {
263
+ // Apply a consistent margin strategy (matches our type styles).
264
+ margin: 0 0 1rem;
265
+ }
266
+
267
+
268
+ //
269
+ // Images and content
270
+ //
271
+
272
+ img {
273
+ vertical-align: middle;
274
+ border-style: none; // Remove the border on images inside links in IE 10-.
275
+ }
276
+
277
+ svg:not(:root) {
278
+ overflow: hidden; // Hide the overflow in IE
279
+ }
280
+
281
+
282
+ //
283
+ // Tables
284
+ //
285
+
286
+ table {
287
+ border-collapse: collapse; // Prevent double borders
288
+ }
289
+
290
+ caption {
291
+ padding-top: $table-cell-padding;
292
+ padding-bottom: $table-cell-padding;
293
+ color: $text-muted;
294
+ text-align: left;
295
+ caption-side: bottom;
296
+ }
297
+
298
+ th {
299
+ // Matches default `<td>` alignment by inheriting from the `<body>`, or the
300
+ // closest parent with a set `text-align`.
301
+ text-align: inherit;
302
+ }
303
+
304
+
305
+ //
306
+ // Forms
307
+ //
308
+
309
+ label {
310
+ // Allow labels to use `margin` for spacing.
311
+ display: inline-block;
312
+ margin-bottom: .5rem;
313
+ }
314
+
315
+ // Remove the default `border-radius` that macOS Chrome adds.
316
+ //
317
+ // Details at https://github.com/twbs/bootstrap/issues/24093
318
+ button {
319
+ border-radius: 0;
320
+ }
321
+
322
+ // Work around a Firefox/IE bug where the transparent `button` background
323
+ // results in a loss of the default `button` focus styles.
324
+ //
325
+ // Credit: https://github.com/suitcss/base/
326
+ button:focus {
327
+ outline: 1px dotted;
328
+ outline: 5px auto -webkit-focus-ring-color;
329
+ }
330
+
331
+ input,
332
+ button,
333
+ select,
334
+ optgroup,
335
+ textarea {
336
+ margin: 0; // Remove the margin in Firefox and Safari
337
+ font-family: inherit;
338
+ font-size: inherit;
339
+ line-height: inherit;
340
+ }
341
+
342
+ button,
343
+ input {
344
+ overflow: visible; // Show the overflow in Edge
345
+ }
346
+
347
+ button,
348
+ select {
349
+ text-transform: none; // Remove the inheritance of text transform in Firefox
350
+ }
351
+
352
+ // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
353
+ // controls in Android 4.
354
+ // 2. Correct the inability to style clickable types in iOS and Safari.
355
+ button,
356
+ html [type="button"], // 1
357
+ [type="reset"],
358
+ [type="submit"] {
359
+ -webkit-appearance: button; // 2
360
+ }
361
+
362
+ // Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
363
+ button::-moz-focus-inner,
364
+ [type="button"]::-moz-focus-inner,
365
+ [type="reset"]::-moz-focus-inner,
366
+ [type="submit"]::-moz-focus-inner {
367
+ padding: 0;
368
+ border-style: none;
369
+ }
370
+
371
+ input[type="radio"],
372
+ input[type="checkbox"] {
373
+ box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
374
+ padding: 0; // 2. Remove the padding in IE 10-
375
+ }
376
+
377
+
378
+ input[type="date"],
379
+ input[type="time"],
380
+ input[type="datetime-local"],
381
+ input[type="month"] {
382
+ // Remove the default appearance of temporal inputs to avoid a Mobile Safari
383
+ // bug where setting a custom line-height prevents text from being vertically
384
+ // centered within the input.
385
+ // See https://bugs.webkit.org/show_bug.cgi?id=139848
386
+ // and https://github.com/twbs/bootstrap/issues/11266
387
+ -webkit-appearance: listbox;
388
+ }
389
+
390
+ textarea {
391
+ overflow: auto; // Remove the default vertical scrollbar in IE.
392
+ // Textareas should really only resize vertically so they don't break their (horizontal) containers.
393
+ resize: vertical;
394
+ }
395
+
396
+ fieldset {
397
+ // Browsers set a default `min-width: min-content;` on fieldsets,
398
+ // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
399
+ // So we reset that to ensure fieldsets behave more like a standard block element.
400
+ // See https://github.com/twbs/bootstrap/issues/12359
401
+ // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
402
+ min-width: 0;
403
+ // Reset the default outline behavior of fieldsets so they don't affect page layout.
404
+ padding: 0;
405
+ margin: 0;
406
+ border: 0;
407
+ }
408
+
409
+ // 1. Correct the text wrapping in Edge and IE.
410
+ // 2. Correct the color inheritance from `fieldset` elements in IE.
411
+ legend {
412
+ display: block;
413
+ width: 100%;
414
+ max-width: 100%; // 1
415
+ padding: 0;
416
+ margin-bottom: .5rem;
417
+ font-size: 1.5rem;
418
+ line-height: inherit;
419
+ color: inherit; // 2
420
+ white-space: normal; // 1
421
+ }
422
+
423
+ progress {
424
+ vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
425
+ }
426
+
427
+ // Correct the cursor style of increment and decrement buttons in Chrome.
428
+ [type="number"]::-webkit-inner-spin-button,
429
+ [type="number"]::-webkit-outer-spin-button {
430
+ height: auto;
431
+ }
432
+
433
+ [type="search"] {
434
+ // This overrides the extra rounded corners on search inputs in iOS so that our
435
+ // `.form-control` class can properly style them. Note that this cannot simply
436
+ // be added to `.form-control` as it's not specific enough. For details, see
437
+ // https://github.com/twbs/bootstrap/issues/11586.
438
+ outline-offset: -2px; // 2. Correct the outline style in Safari.
439
+ -webkit-appearance: none;
440
+ }
441
+
442
+ //
443
+ // Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
444
+ //
445
+
446
+ [type="search"]::-webkit-search-cancel-button,
447
+ [type="search"]::-webkit-search-decoration {
448
+ -webkit-appearance: none;
449
+ }
450
+
451
+ //
452
+ // 1. Correct the inability to style clickable types in iOS and Safari.
453
+ // 2. Change font properties to `inherit` in Safari.
454
+ //
455
+
456
+ ::-webkit-file-upload-button {
457
+ font: inherit; // 2
458
+ -webkit-appearance: button; // 1
459
+ }
460
+
461
+ //
462
+ // Correct element displays
463
+ //
464
+
465
+ output {
466
+ display: inline-block;
467
+ }
468
+
469
+ summary {
470
+ display: list-item; // Add the correct display in all browsers
471
+ cursor: pointer;
472
+ }
473
+
474
+ template {
475
+ display: none; // Add the correct display in IE
476
+ }
477
+
478
+ // Always hide an element with the `hidden` HTML attribute (from PureCSS).
479
+ // Needed for proper display in IE 10-.
480
+ [hidden] {
481
+ display: none !important;
482
+ }
@@ -0,0 +1,19 @@
1
+ :root {
2
+ // Custom variable values only support SassScript inside `#{}`.
3
+ @each $color, $value in $colors {
4
+ --#{$color}: #{$value};
5
+ }
6
+
7
+ @each $color, $value in $theme-colors {
8
+ --#{$color}: #{$value};
9
+ }
10
+
11
+ @each $bp, $value in $grid-breakpoints {
12
+ --breakpoint-#{$bp}: #{$value};
13
+ }
14
+
15
+ // Use `inspect` for lists so that quoted items keep the quotes.
16
+ // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
17
+ --font-family-sans-serif: #{inspect($font-family-sans-serif)};
18
+ --font-family-monospace: #{inspect($font-family-monospace)};
19
+ }
@@ -0,0 +1,180 @@
1
+ //
2
+ // Basic Bootstrap table
3
+ //
4
+
5
+ .table {
6
+ width: 100%;
7
+ max-width: 100%;
8
+ margin-bottom: $spacer;
9
+ background-color: $table-bg; // Reset for nesting within parents with `background-color`.
10
+
11
+ th,
12
+ td {
13
+ padding: $table-cell-padding;
14
+ vertical-align: top;
15
+ border-top: $table-border-width solid $table-border-color;
16
+ }
17
+
18
+ thead th {
19
+ vertical-align: bottom;
20
+ border-bottom: (2 * $table-border-width) solid $table-border-color;
21
+ }
22
+
23
+ tbody + tbody {
24
+ border-top: (2 * $table-border-width) solid $table-border-color;
25
+ }
26
+
27
+ .table {
28
+ background-color: $body-bg;
29
+ }
30
+ }
31
+
32
+
33
+ //
34
+ // Condensed table w/ half padding
35
+ //
36
+
37
+ .table-sm {
38
+ th,
39
+ td {
40
+ padding: $table-cell-padding-sm;
41
+ }
42
+ }
43
+
44
+
45
+ // Bordered version
46
+ //
47
+ // Add borders all around the table and between all the columns.
48
+
49
+ .table-bordered {
50
+ border: $table-border-width solid $table-border-color;
51
+
52
+ th,
53
+ td {
54
+ border: $table-border-width solid $table-border-color;
55
+ }
56
+
57
+ thead {
58
+ th,
59
+ td {
60
+ border-bottom-width: (2 * $table-border-width);
61
+ }
62
+ }
63
+ }
64
+
65
+
66
+ // Zebra-striping
67
+ //
68
+ // Default zebra-stripe styles (alternating gray and transparent backgrounds)
69
+
70
+ .table-striped {
71
+ tbody tr:nth-of-type(odd) {
72
+ background-color: $table-accent-bg;
73
+ }
74
+ }
75
+
76
+
77
+ // Hover effect
78
+ //
79
+ // Placed here since it has to come after the potential zebra striping
80
+
81
+ .table-hover {
82
+ tbody tr {
83
+ @include hover {
84
+ background-color: $table-hover-bg;
85
+ }
86
+ }
87
+ }
88
+
89
+
90
+ // Table backgrounds
91
+ //
92
+ // Exact selectors below required to override `.table-striped` and prevent
93
+ // inheritance to nested tables.
94
+
95
+ @each $color, $value in $theme-colors {
96
+ @include table-row-variant($color, theme-color-level($color, -9));
97
+ }
98
+
99
+ @include table-row-variant(active, $table-active-bg);
100
+
101
+
102
+ // Dark styles
103
+ //
104
+ // Same table markup, but inverted color scheme: dark background and light text.
105
+
106
+ // stylelint-disable-next-line no-duplicate-selectors
107
+ .table {
108
+ .thead-dark {
109
+ th {
110
+ color: $table-dark-color;
111
+ background-color: $table-dark-bg;
112
+ border-color: $table-dark-border-color;
113
+ }
114
+ }
115
+
116
+ .thead-light {
117
+ th {
118
+ color: $table-head-color;
119
+ background-color: $table-head-bg;
120
+ border-color: $table-border-color;
121
+ }
122
+ }
123
+ }
124
+
125
+ .table-dark {
126
+ color: $table-dark-color;
127
+ background-color: $table-dark-bg;
128
+
129
+ th,
130
+ td,
131
+ thead th {
132
+ border-color: $table-dark-border-color;
133
+ }
134
+
135
+ &.table-bordered {
136
+ border: 0;
137
+ }
138
+
139
+ &.table-striped {
140
+ tbody tr:nth-of-type(odd) {
141
+ background-color: $table-dark-accent-bg;
142
+ }
143
+ }
144
+
145
+ &.table-hover {
146
+ tbody tr {
147
+ @include hover {
148
+ background-color: $table-dark-hover-bg;
149
+ }
150
+ }
151
+ }
152
+ }
153
+
154
+
155
+ // Responsive tables
156
+ //
157
+ // Generate series of `.table-responsive-*` classes for configuring the screen
158
+ // size of where your table will overflow.
159
+
160
+ .table-responsive {
161
+ @each $breakpoint in map-keys($grid-breakpoints) {
162
+ $next: breakpoint-next($breakpoint, $grid-breakpoints);
163
+ $infix: breakpoint-infix($next, $grid-breakpoints);
164
+
165
+ &#{$infix} {
166
+ @include media-breakpoint-down($breakpoint) {
167
+ display: block;
168
+ width: 100%;
169
+ overflow-x: auto;
170
+ -webkit-overflow-scrolling: touch;
171
+ -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
172
+
173
+ // Prevent double border on horizontal scroll due to use of `display: block;`
174
+ > .table-bordered {
175
+ border: 0;
176
+ }
177
+ }
178
+ }
179
+ }
180
+ }