jekyll-theme-centos 0.0.0 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (516) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_includes/centos-content/1col.html +11 -0
  5. data/_includes/centos-content/2col.html +15 -0
  6. data/_includes/centos-content/admonition/caution.html +4 -0
  7. data/_includes/centos-content/admonition/idea.html +4 -0
  8. data/_includes/centos-content/admonition/note.html +4 -0
  9. data/_includes/centos-content/admonition/warning.html +4 -0
  10. data/_includes/centos-content/around.html +6 -0
  11. data/_includes/centos-content/breadcrumbs.html +11 -0
  12. data/_includes/centos-content/download/stream-8-doc.html +5 -0
  13. data/_includes/centos-content/download/stream-8-eol.html +5 -0
  14. data/_includes/centos-content/download/stream-8.html +5 -0
  15. data/_includes/centos-content/download/stream.html +16 -0
  16. data/_includes/centos-content/download/table-body-doc.html +6 -0
  17. data/_includes/centos-content/download/table-body-eol.html +4 -0
  18. data/_includes/centos-content/download/table-body.html +7 -0
  19. data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
  20. data/_includes/centos-content/download/table-header-doc.html +8 -0
  21. data/_includes/centos-content/download/table-header-eol.html +8 -0
  22. data/_includes/centos-content/download/table-header.html +10 -0
  23. data/_includes/centos-content/figure.html +4 -0
  24. data/_includes/centos-content/news.html +15 -0
  25. data/_includes/centos-content/sponsors.html +19 -0
  26. data/_includes/centos-content/toc.html +103 -0
  27. data/_includes/centos-content/video.html +3 -0
  28. data/_includes/centos-footer.html +42 -0
  29. data/_includes/centos-head.html +7 -0
  30. data/_includes/centos-header/home.html +15 -0
  31. data/_includes/centos-header/page.html +12 -0
  32. data/_includes/centos-header.html +7 -0
  33. data/_includes/centos-nav.html +29 -0
  34. data/_includes/centos-styleguide.md +243 -0
  35. data/_layouts/centos-content/1col.html +9 -0
  36. data/_layouts/centos-content/2col.html +9 -0
  37. data/_layouts/centos-content/download-mirror.html +30 -0
  38. data/_layouts/centos-content/download.html +18 -0
  39. data/_layouts/centos-content/sponsors.html +21 -0
  40. data/_layouts/centos-home.html +39 -0
  41. data/_layouts/default.html +18 -0
  42. data/_layouts/{download/cards.html → page.html} +0 -2
  43. data/_layouts/post.html +5 -0
  44. data/_sass/bootstrap/_alert.scss +16 -32
  45. data/_sass/bootstrap/_badge.scss +31 -15
  46. data/_sass/bootstrap/_breadcrumb.scss +27 -23
  47. data/_sass/bootstrap/_button-group.scss +48 -32
  48. data/_sass/bootstrap/_buttons.scss +71 -145
  49. data/_sass/bootstrap/_card.scss +123 -75
  50. data/_sass/bootstrap/_carousel.scss +39 -68
  51. data/_sass/bootstrap/_close.scss +27 -53
  52. data/_sass/bootstrap/_code.scss +48 -0
  53. data/_sass/bootstrap/_custom-forms.scss +524 -0
  54. data/_sass/bootstrap/_dropdown.scss +71 -129
  55. data/_sass/bootstrap/_forms.scss +347 -9
  56. data/_sass/bootstrap/_functions.scss +23 -181
  57. data/_sass/bootstrap/_grid.scss +52 -18
  58. data/_sass/bootstrap/_images.scss +1 -1
  59. data/_sass/bootstrap/_input-group.scss +192 -0
  60. data/_sass/bootstrap/_jumbotron.scss +17 -0
  61. data/_sass/bootstrap/_list-group.scss +48 -93
  62. data/_sass/bootstrap/_media.scss +8 -0
  63. data/_sass/bootstrap/_mixins.scss +15 -10
  64. data/_sass/bootstrap/_modal.scss +112 -112
  65. data/_sass/bootstrap/_nav.scss +29 -103
  66. data/_sass/bootstrap/_navbar.scss +171 -136
  67. data/_sass/bootstrap/_pagination.scss +37 -72
  68. data/_sass/bootstrap/_popover.scss +73 -99
  69. data/_sass/bootstrap/_print.scss +141 -0
  70. data/_sass/bootstrap/_progress.scss +15 -36
  71. data/_sass/bootstrap/_reboot.scss +200 -333
  72. data/_sass/bootstrap/_root.scss +10 -177
  73. data/_sass/bootstrap/_spinners.scss +22 -52
  74. data/_sass/bootstrap/_tables.scss +115 -101
  75. data/_sass/bootstrap/_toasts.scss +27 -54
  76. data/_sass/bootstrap/_tooltip.scss +63 -67
  77. data/_sass/bootstrap/_transitions.scss +1 -8
  78. data/_sass/bootstrap/_type.scss +59 -40
  79. data/_sass/bootstrap/_utilities.scss +18 -806
  80. data/_sass/bootstrap/_variables.scss +611 -1222
  81. data/_sass/bootstrap/bootstrap-grid.scss +20 -53
  82. data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
  83. data/_sass/bootstrap/bootstrap.scss +13 -21
  84. data/_sass/bootstrap/mixins/_alert.scss +6 -11
  85. data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
  86. data/_sass/bootstrap/mixins/_badge.scss +17 -0
  87. data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
  88. data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
  89. data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
  90. data/_sass/bootstrap/mixins/_buttons.scss +100 -60
  91. data/_sass/bootstrap/mixins/_caret.scss +27 -34
  92. data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
  93. data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
  94. data/_sass/bootstrap/mixins/_float.scss +14 -0
  95. data/_sass/bootstrap/mixins/_forms.scss +78 -63
  96. data/_sass/bootstrap/mixins/_gradients.scss +11 -13
  97. data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
  98. data/_sass/bootstrap/mixins/_grid.scss +37 -119
  99. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  100. data/_sass/bootstrap/mixins/_image.scss +21 -1
  101. data/_sass/bootstrap/mixins/_list-group.scss +2 -7
  102. data/_sass/bootstrap/mixins/_lists.scss +1 -1
  103. data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
  104. data/_sass/bootstrap/mixins/_pagination.scss +19 -7
  105. data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
  106. data/_sass/bootstrap/mixins/_resize.scss +0 -0
  107. data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
  108. data/_sass/bootstrap/mixins/_size.scss +7 -0
  109. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  110. data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
  111. data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
  112. data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
  113. data/_sass/bootstrap/mixins/_transition.scss +1 -1
  114. data/_sass/bootstrap/mixins/_visibility.scss +8 -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 +75 -0
  118. data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
  119. data/_sass/bootstrap/utilities/_display.scss +26 -0
  120. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  121. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  122. data/_sass/bootstrap/utilities/_float.scss +11 -0
  123. data/_sass/bootstrap/utilities/_interactions.scss +5 -0
  124. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  125. data/_sass/bootstrap/utilities/_position.scss +32 -0
  126. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  127. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  128. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  129. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  130. data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
  131. data/_sass/bootstrap/utilities/_text.scss +72 -0
  132. data/_sass/bootstrap/utilities/_visibility.scss +13 -0
  133. data/_sass/bootstrap/vendor/_rfs.scss +132 -276
  134. data/_sass/centos/_content.scss +101 -0
  135. data/_sass/centos/_datatable.scss +271 -0
  136. data/_sass/centos/_fonts.scss +1 -0
  137. data/_sass/centos/_footer.scss +49 -0
  138. data/_sass/centos/_header.scss +25 -0
  139. data/_sass/centos/_highlighter.scss +360 -0
  140. data/_sass/centos/_mixins.scss +4 -0
  141. data/_sass/centos/_nav.scss +10 -0
  142. data/_sass/centos/_rssfeeds.scss +17 -0
  143. data/_sass/centos/_variables.scss +111 -0
  144. data/_sass/centos/centos.scss +23 -0
  145. data/_sass/centos/content/_1col.scss +32 -0
  146. data/_sass/centos/content/_2col.scss +44 -0
  147. data/_sass/centos/content/_download.scss +17 -0
  148. data/_sass/centos/content/_sponsors.scss +9 -0
  149. data/_sass/centos/fonts/_montserrat.scss +256 -0
  150. data/_sass/centos/header/_home.scss +4 -0
  151. data/_sass/centos/header/_page.scss +4 -0
  152. data/_sass/centos/mixins/_content-card.scss +13 -0
  153. data/_sass/centos/mixins/_content-heading.scss +28 -0
  154. data/_sass/centos/mixins/_content-toc.scss +18 -0
  155. data/_sass/centos/mixins/_footer-link.scss +10 -0
  156. data/_sass/fontawesome/_animated.scss +20 -0
  157. data/_sass/fontawesome/_bordered-pulled.scss +20 -0
  158. data/_sass/fontawesome/_core.scss +21 -0
  159. data/_sass/fontawesome/_fixed-width.scss +6 -0
  160. data/_sass/fontawesome/_icons.scss +1462 -0
  161. data/_sass/fontawesome/_larger.scss +23 -0
  162. data/_sass/fontawesome/_list.scss +18 -0
  163. data/_sass/fontawesome/_mixins.scss +56 -0
  164. data/_sass/fontawesome/_rotated-flipped.scss +24 -0
  165. data/_sass/fontawesome/_screen-reader.scss +5 -0
  166. data/_sass/fontawesome/_shims.scss +2066 -0
  167. data/_sass/fontawesome/_stacked.scss +31 -0
  168. data/_sass/fontawesome/_variables.scss +1479 -0
  169. data/_sass/fontawesome/brands.scss +23 -0
  170. data/_sass/fontawesome/fontawesome.scss +16 -0
  171. data/_sass/fontawesome/regular.scss +23 -0
  172. data/_sass/fontawesome/solid.scss +24 -0
  173. data/_sass/fontawesome/v4-shims.scss +6 -0
  174. data/assets/css/centos.bootstrap.min.scss +4 -0
  175. data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
  176. data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
  177. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
  178. data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
  179. data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
  180. data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
  181. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
  182. data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
  183. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
  184. data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
  185. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
  186. data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
  187. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
  188. data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
  189. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
  190. data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
  191. data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
  192. data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
  193. data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
  194. data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
  195. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
  196. data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
  197. data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
  198. data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
  199. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
  200. data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
  201. data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
  202. data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
  203. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
  204. data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
  205. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
  206. data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
  207. data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
  208. data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
  209. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
  210. data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
  211. data/assets/fonts/Montserrat/Montserrat.css +327 -0
  212. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
  213. data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
  214. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
  215. data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
  216. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
  217. data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
  218. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
  219. data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
  220. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
  221. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
  222. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
  223. data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
  224. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
  225. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
  226. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
  227. data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
  228. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
  229. data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
  230. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
  231. data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
  232. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
  233. data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
  234. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
  235. data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
  236. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
  237. data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
  238. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
  239. data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
  240. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
  241. data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
  242. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
  243. data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
  244. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
  245. data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
  246. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
  247. data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
  248. data/assets/fonts/Montserrat/README.MD +35 -0
  249. data/assets/fonts/fa-brands-400.eot +0 -0
  250. data/assets/fonts/fa-brands-400.svg +3717 -0
  251. data/assets/fonts/fa-brands-400.ttf +0 -0
  252. data/assets/fonts/fa-brands-400.woff +0 -0
  253. data/assets/fonts/fa-brands-400.woff2 +0 -0
  254. data/assets/fonts/fa-regular-400.eot +0 -0
  255. data/assets/fonts/fa-regular-400.svg +801 -0
  256. data/assets/fonts/fa-regular-400.ttf +0 -0
  257. data/assets/fonts/fa-regular-400.woff +0 -0
  258. data/assets/fonts/fa-regular-400.woff2 +0 -0
  259. data/assets/fonts/fa-solid-900.eot +0 -0
  260. data/assets/fonts/fa-solid-900.svg +5028 -0
  261. data/assets/fonts/fa-solid-900.ttf +0 -0
  262. data/assets/fonts/fa-solid-900.woff +0 -0
  263. data/assets/fonts/fa-solid-900.woff2 +0 -0
  264. data/assets/img/centos-logo-white.png +0 -0
  265. data/assets/img/centos-motif.png +0 -0
  266. data/assets/img/favicon.png +0 -0
  267. data/assets/js/bootstrap.min.js +4 -4
  268. data/assets/js/bootstrap.min.js.map +1 -1
  269. data/assets/js/dataTables.bootstrap4.min.js +14 -0
  270. data/assets/js/jquery.dataTables.min.js +184 -0
  271. data/assets/js/jquery.min.js +2 -0
  272. data/assets/js/jquery.rss.js +11 -0
  273. data/assets/js/moment.min.js +7 -0
  274. metadata +238 -492
  275. data/_config.yml +0 -196
  276. data/_data/base/announcement_schema.yml +0 -49
  277. data/_data/base/artwork_schema.yml +0 -46
  278. data/_data/base/backtotop_schema.yml +0 -59
  279. data/_data/base/bits.yml +0 -96
  280. data/_data/base/bits_schema.yml +0 -185
  281. data/_data/base/breadcrumb_schema.yml +0 -27
  282. data/_data/base/breakingnews_schema.yml +0 -67
  283. data/_data/base/card_schema.yml +0 -146
  284. data/_data/base/color.yml +0 -1042
  285. data/_data/base/color_schema.yml +0 -1036
  286. data/_data/base/configuration_variables_schema.yml +0 -42
  287. data/_data/base/content.yml +0 -2
  288. data/_data/base/content_schema.yml +0 -26
  289. data/_data/base/copyright.yml +0 -12
  290. data/_data/base/copyright_schema.yml +0 -74
  291. data/_data/base/copyvalue_schema.yml +0 -49
  292. data/_data/base/datatable_schema.yml +0 -57
  293. data/_data/base/event_schema.yml +0 -130
  294. data/_data/base/fontawesome_schema.yml +0 -62
  295. data/_data/base/footer.yml +0 -9
  296. data/_data/base/footer_schema.yml +0 -55
  297. data/_data/base/head_schema.yml +0 -19
  298. data/_data/base/heading_anchor.yml +0 -2
  299. data/_data/base/heading_anchor_schema.yml +0 -37
  300. data/_data/base/highlight_schema.yml +0 -98
  301. data/_data/base/image_schema.yml +0 -34
  302. data/_data/base/languages.yml +0 -186
  303. data/_data/base/link_schema.yml +0 -187
  304. data/_data/base/locales_schema.yml +0 -158
  305. data/_data/base/navbar.yml +0 -20
  306. data/_data/base/navbar_schema.yml +0 -129
  307. data/_data/base/navindex_schema.yml +0 -67
  308. data/_data/base/ogp.yml +0 -24
  309. data/_data/base/ogp_schema.yml +0 -192
  310. data/_data/base/project.yml +0 -37
  311. data/_data/base/project_schema.yml +0 -124
  312. data/_data/base/script_schema.yml +0 -41
  313. data/_data/base/shortcut_schema.yml +0 -74
  314. data/_data/base/social.yml +0 -26
  315. data/_data/base/social_schema.yml +0 -57
  316. data/_data/base/sponsors.yml +0 -41
  317. data/_data/base/sponsors_schema.yml +0 -73
  318. data/_data/base/title_schema.yml +0 -49
  319. data/_data/base/toc_schema.yml +0 -114
  320. data/_data/download/cards.yml +0 -309
  321. data/_data/download/navbar.yml +0 -11
  322. data/_includes/base/announcement.html.liquid +0 -65
  323. data/_includes/base/artwork.html.liquid +0 -63
  324. data/_includes/base/backtotop.html.liquid +0 -73
  325. data/_includes/base/bits.html.liquid +0 -152
  326. data/_includes/base/breadcrumb.html.liquid +0 -77
  327. data/_includes/base/breakingnews.html.liquid +0 -90
  328. data/_includes/base/card.html.liquid +0 -110
  329. data/_includes/base/color-table.html.liquid +0 -33
  330. data/_includes/base/configuration_variables-nested.html.liquid +0 -98
  331. data/_includes/base/configuration_variables.html.liquid +0 -98
  332. data/_includes/base/content.html.liquid +0 -7
  333. data/_includes/base/copyright.html.liquid +0 -70
  334. data/_includes/base/copyvalue.html.liquid +0 -82
  335. data/_includes/base/datatable.html.liquid +0 -83
  336. data/_includes/base/event.html.liquid +0 -105
  337. data/_includes/base/fontawesome.html.liquid +0 -91
  338. data/_includes/base/footer.html.liquid +0 -69
  339. data/_includes/base/head.html.liquid +0 -135
  340. data/_includes/base/heading_anchor.html.liquid +0 -67
  341. data/_includes/base/highlight.html.liquid +0 -84
  342. data/_includes/base/image.html.liquid +0 -42
  343. data/_includes/base/link.html.liquid +0 -129
  344. data/_includes/base/locales.html.liquid +0 -78
  345. data/_includes/base/navbar.html.liquid +0 -121
  346. data/_includes/base/navindex.html.liquid +0 -200
  347. data/_includes/base/ogp.html.liquid +0 -144
  348. data/_includes/base/project.html.liquid +0 -104
  349. data/_includes/base/shortcut.html.liquid +0 -77
  350. data/_includes/base/social.html.liquid +0 -76
  351. data/_includes/base/sponsors-cards.html.liquid +0 -69
  352. data/_includes/base/sponsors-carousel.html.liquid +0 -91
  353. data/_includes/base/title.html.liquid +0 -65
  354. data/_includes/base/toc-generator.html.liquid +0 -189
  355. data/_includes/base/toc.html.liquid +0 -95
  356. data/_includes/download/cards-body-commands.html +0 -7
  357. data/_includes/download/cards-body-convert.html +0 -10
  358. data/_includes/download/cards-body-doc.html +0 -9
  359. data/_includes/download/cards-body-documentation.html +0 -11
  360. data/_includes/download/cards-body-eol.html +0 -16
  361. data/_includes/download/cards-body-mirrors.html +0 -8
  362. data/_includes/download/cards-body-screenshot.html +0 -26
  363. data/_includes/download/cards-body-screenshots.html +0 -32
  364. data/_includes/download/cards-body.html +0 -8
  365. data/_includes/download/cards-header-commands.html +0 -8
  366. data/_includes/download/cards-header-convert.html +0 -8
  367. data/_includes/download/cards-header-doc.html +0 -8
  368. data/_includes/download/cards-header-documentation.html +0 -8
  369. data/_includes/download/cards-header-eol.html +0 -8
  370. data/_includes/download/cards-header-mirrors.html +0 -13
  371. data/_includes/download/cards-header-screenshot.html +0 -8
  372. data/_includes/download/cards-header-screenshots.html +0 -8
  373. data/_includes/download/cards-header.html +0 -13
  374. data/_includes/download/cards.html +0 -120
  375. data/_layouts/base/default.html +0 -68
  376. data/_layouts/download/default.html +0 -7
  377. data/_layouts/people/default.html +0 -68
  378. data/_sass/base/_customization.scss +0 -331
  379. data/_sass/base/_light-dark.scss +0 -10
  380. data/_sass/base/_maps.scss +0 -104
  381. data/_sass/base/_variables.scss +0 -232
  382. data/_sass/bootstrap/_accordion.scss +0 -153
  383. data/_sass/bootstrap/_containers.scss +0 -41
  384. data/_sass/bootstrap/_helpers.scss +0 -12
  385. data/_sass/bootstrap/_maps.scss +0 -174
  386. data/_sass/bootstrap/_offcanvas.scss +0 -147
  387. data/_sass/bootstrap/_placeholders.scss +0 -51
  388. data/_sass/bootstrap/_variables-dark.scss +0 -102
  389. data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
  390. data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
  391. data/_sass/bootstrap/forms/_form-check.scss +0 -189
  392. data/_sass/bootstrap/forms/_form-control.scss +0 -214
  393. data/_sass/bootstrap/forms/_form-range.scss +0 -91
  394. data/_sass/bootstrap/forms/_form-select.scss +0 -80
  395. data/_sass/bootstrap/forms/_form-text.scss +0 -11
  396. data/_sass/bootstrap/forms/_input-group.scss +0 -132
  397. data/_sass/bootstrap/forms/_labels.scss +0 -36
  398. data/_sass/bootstrap/forms/_validation.scss +0 -12
  399. data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
  400. data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
  401. data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
  402. data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
  403. data/_sass/bootstrap/helpers/_position.scss +0 -36
  404. data/_sass/bootstrap/helpers/_ratio.scss +0 -26
  405. data/_sass/bootstrap/helpers/_stacks.scss +0 -15
  406. data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
  407. data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
  408. data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
  409. data/_sass/bootstrap/helpers/_vr.scss +0 -8
  410. data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
  411. data/_sass/bootstrap/mixins/_banner.scss +0 -7
  412. data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
  413. data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
  414. data/_sass/bootstrap/mixins/_container.scss +0 -11
  415. data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
  416. data/_sass/bootstrap/mixins/_utilities.scss +0 -97
  417. data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
  418. data/_sass/bootstrap/utilities/_api.scss +0 -47
  419. data/assets/css/base/stylesheet.min.scss +0 -35
  420. data/assets/icons/android-chrome-192.png +0 -0
  421. data/assets/icons/android-chrome-512.png +0 -0
  422. data/assets/icons/apple-touch-icon.png +0 -0
  423. data/assets/icons/favicon-16.png +0 -0
  424. data/assets/icons/favicon-32.png +0 -0
  425. data/assets/icons/favicon.ico +0 -0
  426. data/assets/icons/favicon.svg +0 -1
  427. data/assets/img/anaconda-symbolic.svg +0 -1
  428. data/assets/img/anaconda.svg +0 -1
  429. data/assets/img/base/centos-colors.gpl +0 -55
  430. data/assets/img/base/example-ogp-image.svg +0 -297
  431. data/assets/img/base/example-sponsors-design.svg +0 -226
  432. data/assets/img/base/example-sponsors-logo-1.svg +0 -120
  433. data/assets/img/base/example-sponsors-logo-2.svg +0 -116
  434. data/assets/img/base/example-sponsors-logo-3.svg +0 -123
  435. data/assets/img/base/example-sponsors-logo-4.svg +0 -116
  436. data/assets/img/base/example-sponsors-logo-5.svg +0 -116
  437. data/assets/img/base/example-sponsors-logo-6.svg +0 -116
  438. data/assets/img/base/example-sponsors-logo-7.svg +0 -116
  439. data/assets/img/base/example-sponsors-logo-8.svg +0 -110
  440. data/assets/img/base/page-layout-default.svg +0 -1217
  441. data/assets/img/base/page-with-alert.svg +0 -383
  442. data/assets/img/base/page-with-announcement.svg +0 -956
  443. data/assets/img/base/page-with-artwork.svg +0 -1009
  444. data/assets/img/base/page-with-backtotop.svg +0 -1009
  445. data/assets/img/base/page-with-bits.svg +0 -891
  446. data/assets/img/base/page-with-breadcrumb.svg +0 -676
  447. data/assets/img/base/page-with-breakingnews.svg +0 -957
  448. data/assets/img/base/page-with-color.svg +0 -57
  449. data/assets/img/base/page-with-copyright.svg +0 -1018
  450. data/assets/img/base/page-with-copyvalue.svg +0 -57
  451. data/assets/img/base/page-with-datatable.svg +0 -857
  452. data/assets/img/base/page-with-event.svg +0 -518
  453. data/assets/img/base/page-with-fontawesome.svg +0 -147
  454. data/assets/img/base/page-with-footer.svg +0 -1018
  455. data/assets/img/base/page-with-heading.svg +0 -57
  456. data/assets/img/base/page-with-highlight.svg +0 -86
  457. data/assets/img/base/page-with-image.svg +0 -57
  458. data/assets/img/base/page-with-link.svg +0 -57
  459. data/assets/img/base/page-with-locales.svg +0 -1009
  460. data/assets/img/base/page-with-navbar.svg +0 -958
  461. data/assets/img/base/page-with-navindex.svg +0 -279
  462. data/assets/img/base/page-with-ogp.svg +0 -401
  463. data/assets/img/base/page-with-project.svg +0 -423
  464. data/assets/img/base/page-with-shortcut.svg +0 -937
  465. data/assets/img/base/page-with-social.svg +0 -937
  466. data/assets/img/base/page-with-sponsors.svg +0 -937
  467. data/assets/img/base/page-with-title.svg +0 -584
  468. data/assets/img/base/page-with-toc.svg +0 -399
  469. data/assets/img/base/screenshot-1200x600.svg +0 -114
  470. data/assets/img/centos-dynamicmsg-logo.svg +0 -1
  471. data/assets/img/centos-dynamicmsg-type.svg +0 -1
  472. data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
  473. data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
  474. data/assets/img/centos-gdm-whitelogo.svg +0 -1
  475. data/assets/img/centos-ipa-whiteheader.svg +0 -1
  476. data/assets/img/centos-logo-2bits.svg +0 -1
  477. data/assets/img/centos-logo.svg +0 -1
  478. data/assets/img/centos-message-logo.svg +0 -1
  479. data/assets/img/centos-poweredby-logo.svg +0 -1
  480. data/assets/img/centos-social-share.png +0 -0
  481. data/assets/img/centos-symbol-2bits.svg +0 -1
  482. data/assets/img/centos-symbol.svg +0 -1
  483. data/assets/img/centos-type.svg +0 -1
  484. data/assets/img/centos-vertical-logo.svg +0 -1
  485. data/assets/img/centos-vertical-message-logo.svg +0 -1
  486. data/assets/img/centos-whitelogo.svg +0 -1
  487. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  488. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  489. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  490. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  491. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  492. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  493. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  494. data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
  495. data/assets/img/download/download.svg +0 -421
  496. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  497. data/assets/img/people/page.svg +0 -900
  498. data/assets/img/people/page.webp +0 -0
  499. data/assets/img/people/username.webp +0 -0
  500. data/assets/js/base/backtotop.js +0 -20
  501. data/assets/js/base/copyvalue.js +0 -145
  502. data/assets/js/base/datatable.js +0 -41
  503. data/assets/js/base/heading-anchor.js +0 -108
  504. data/assets/js/base/highlight.js +0 -12
  505. data/assets/js/base/init-tooltips.js +0 -12
  506. data/assets/js/bootstrap.bundle.js +0 -6312
  507. data/assets/js/bootstrap.bundle.js.map +0 -1
  508. data/assets/js/bootstrap.bundle.min.js +0 -7
  509. data/assets/js/bootstrap.bundle.min.js.map +0 -1
  510. data/assets/js/bootstrap.esm.js +0 -4447
  511. data/assets/js/bootstrap.esm.js.map +0 -1
  512. data/assets/js/bootstrap.esm.min.js +0 -7
  513. data/assets/js/bootstrap.esm.min.js.map +0 -1
  514. data/assets/js/bootstrap.js +0 -4494
  515. data/assets/js/bootstrap.js.map +0 -1
  516. data/site.webmanifest +0 -11
@@ -1,5 +1,4 @@
1
- // stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
2
-
1
+ // stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
3
2
 
4
3
  // Reboot
5
4
  //
@@ -11,156 +10,122 @@
11
10
 
12
11
  // Document
13
12
  //
14
- // Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
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. Change the default tap highlight to be completely transparent in iOS.
15
18
 
16
19
  *,
17
20
  *::before,
18
21
  *::after {
19
- box-sizing: border-box;
22
+ box-sizing: border-box; // 1
20
23
  }
21
24
 
22
-
23
- // Root
24
- //
25
- // Ability to the value of the root font sizes, affecting the value of `rem`.
26
- // null by default, thus nothing is generated.
27
-
28
- :root {
29
- @if $font-size-root != null {
30
- @include font-size(var(--#{$prefix}root-font-size));
31
- }
32
-
33
- @if $enable-smooth-scroll {
34
- @media (prefers-reduced-motion: no-preference) {
35
- scroll-behavior: smooth;
36
- }
37
- }
25
+ html {
26
+ font-family: sans-serif; // 2
27
+ line-height: 1.15; // 3
28
+ -webkit-text-size-adjust: 100%; // 4
29
+ -webkit-tap-highlight-color: rgba($black, 0); // 5
38
30
  }
39
31
 
32
+ // Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
33
+ // TODO: remove in v5
34
+ // stylelint-disable-next-line selector-list-comma-newline-after
35
+ article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
36
+ display: block;
37
+ }
40
38
 
41
39
  // Body
42
40
  //
43
41
  // 1. Remove the margin in all browsers.
44
42
  // 2. As a best practice, apply a default `background-color`.
45
- // 3. Prevent adjustments of font size after orientation changes in iOS.
46
- // 4. Change the default tap highlight to be completely transparent in iOS.
43
+ // 3. Set an explicit initial text-align value so that we can later use
44
+ // the `inherit` value on things like `<th>` elements.
47
45
 
48
- // scss-docs-start reboot-body-rules
49
46
  body {
50
47
  margin: 0; // 1
51
- font-family: var(--#{$prefix}body-font-family);
52
- @include font-size(var(--#{$prefix}body-font-size));
53
- font-weight: var(--#{$prefix}body-font-weight);
54
- line-height: var(--#{$prefix}body-line-height);
55
- color: var(--#{$prefix}body-color);
56
- text-align: var(--#{$prefix}body-text-align);
57
- background-color: var(--#{$prefix}body-bg); // 2
58
- -webkit-text-size-adjust: 100%; // 3
59
- -webkit-tap-highlight-color: rgba($black, 0); // 4
48
+ font-family: $font-family-base;
49
+ @include font-size($font-size-base);
50
+ font-weight: $font-weight-base;
51
+ line-height: $line-height-base;
52
+ color: $body-color;
53
+ text-align: left; // 3
54
+ background-color: $body-bg; // 2
55
+ }
56
+
57
+ // Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
58
+ // on elements that programmatically receive focus but wouldn't normally show a visible
59
+ // focus outline. In general, this would mean that the outline is only applied if the
60
+ // interaction that led to the element receiving programmatic focus was a keyboard interaction,
61
+ // or the browser has somehow determined that the user is primarily a keyboard user and/or
62
+ // wants focus outlines to always be presented.
63
+ //
64
+ // See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
65
+ // and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
66
+ [tabindex="-1"]:focus:not(:focus-visible) {
67
+ outline: 0 !important;
60
68
  }
61
- // scss-docs-end reboot-body-rules
62
69
 
63
70
 
64
71
  // Content grouping
65
72
  //
66
- // 1. Reset Firefox's gray color
73
+ // 1. Add the correct box sizing in Firefox.
74
+ // 2. Show the overflow in Edge and IE.
67
75
 
68
76
  hr {
69
- margin: $hr-margin-y 0;
70
- color: $hr-color; // 1
71
- border: 0;
72
- border-top: $hr-border-width solid $hr-border-color;
73
- opacity: $hr-opacity;
77
+ box-sizing: content-box; // 1
78
+ height: 0; // 1
79
+ overflow: visible; // 2
74
80
  }
75
81
 
76
82
 
83
+ //
77
84
  // Typography
78
85
  //
79
- // 1. Remove top margins from headings
80
- // By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
81
- // margin for easier control within type scales as it avoids margin collapsing.
82
86
 
83
- %heading {
84
- margin-top: 0; // 1
87
+ // Remove top margins from headings
88
+ //
89
+ // By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top
90
+ // margin for easier control within type scales as it avoids margin collapsing.
91
+ // stylelint-disable-next-line selector-list-comma-newline-after
92
+ h1, h2, h3, h4, h5, h6 {
93
+ margin-top: 0;
85
94
  margin-bottom: $headings-margin-bottom;
86
- font-family: $headings-font-family;
87
- font-style: $headings-font-style;
88
- font-weight: $headings-font-weight;
89
- line-height: $headings-line-height;
90
- color: var(--#{$prefix}heading-color);
91
- }
92
-
93
- h1 {
94
- @extend %heading;
95
- @include font-size($h1-font-size);
96
- }
97
-
98
- h2 {
99
- @extend %heading;
100
- @include font-size($h2-font-size);
101
95
  }
102
96
 
103
- h3 {
104
- @extend %heading;
105
- @include font-size($h3-font-size);
106
- }
107
-
108
- h4 {
109
- @extend %heading;
110
- @include font-size($h4-font-size);
111
- }
112
-
113
- h5 {
114
- @extend %heading;
115
- @include font-size($h5-font-size);
116
- }
117
-
118
- h6 {
119
- @extend %heading;
120
- @include font-size($h6-font-size);
121
- }
122
-
123
-
124
97
  // Reset margins on paragraphs
125
98
  //
126
99
  // Similarly, the top margin on `<p>`s get reset. However, we also reset the
127
100
  // bottom margin to use `rem` units instead of `em`.
128
-
129
101
  p {
130
102
  margin-top: 0;
131
103
  margin-bottom: $paragraph-margin-bottom;
132
104
  }
133
105
 
134
-
135
106
  // Abbreviations
136
107
  //
137
- // 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
138
- // 2. Add explicit cursor to indicate changed behavior.
139
- // 3. Prevent the text-decoration to be skipped.
108
+ // 1. Duplicate behavior to the data-* attribute for our tooltip plugin
109
+ // 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
110
+ // 3. Add explicit cursor to indicate changed behavior.
111
+ // 4. Remove the bottom border in Firefox 39-.
112
+ // 5. Prevent the text-decoration to be skipped.
140
113
 
141
- abbr[title] {
142
- text-decoration: underline dotted; // 1
143
- cursor: help; // 2
144
- text-decoration-skip-ink: none; // 3
114
+ abbr[title],
115
+ abbr[data-original-title] { // 1
116
+ text-decoration: underline; // 2
117
+ text-decoration: underline dotted; // 2
118
+ cursor: help; // 3
119
+ border-bottom: 0; // 4
120
+ text-decoration-skip-ink: none; // 5
145
121
  }
146
122
 
147
-
148
- // Address
149
-
150
123
  address {
151
124
  margin-bottom: 1rem;
152
125
  font-style: normal;
153
126
  line-height: inherit;
154
127
  }
155
128
 
156
-
157
- // Lists
158
-
159
- ol,
160
- ul {
161
- padding-left: 2rem;
162
- }
163
-
164
129
  ol,
165
130
  ul,
166
131
  dl {
@@ -179,58 +144,33 @@ dt {
179
144
  font-weight: $dt-font-weight;
180
145
  }
181
146
 
182
- // 1. Undo browser default
183
-
184
147
  dd {
185
148
  margin-bottom: .5rem;
186
- margin-left: 0; // 1
149
+ margin-left: 0; // Undo browser default
187
150
  }
188
151
 
189
-
190
- // Blockquote
191
-
192
152
  blockquote {
193
153
  margin: 0 0 1rem;
194
154
  }
195
155
 
196
-
197
- // Strong
198
- //
199
- // Add the correct font weight in Chrome, Edge, and Safari
200
-
201
156
  b,
202
157
  strong {
203
- font-weight: $font-weight-bolder;
158
+ font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari
204
159
  }
205
160
 
206
-
207
- // Small
208
- //
209
- // Add the correct font size in all browsers
210
-
211
161
  small {
212
- @include font-size($small-font-size);
162
+ @include font-size(80%); // Add the correct font size in all browsers
213
163
  }
214
164
 
215
-
216
- // Mark
217
-
218
- mark {
219
- padding: $mark-padding;
220
- color: var(--#{$prefix}highlight-color);
221
- background-color: var(--#{$prefix}highlight-bg);
222
- }
223
-
224
-
225
- // Sub and Sup
226
165
  //
227
166
  // Prevent `sub` and `sup` elements from affecting the line height in
228
167
  // all browsers.
168
+ //
229
169
 
230
170
  sub,
231
171
  sup {
232
172
  position: relative;
233
- @include font-size($sub-sup-font-size);
173
+ @include font-size(75%);
234
174
  line-height: 0;
235
175
  vertical-align: baseline;
236
176
  }
@@ -239,14 +179,17 @@ sub { bottom: -.25em; }
239
179
  sup { top: -.5em; }
240
180
 
241
181
 
182
+ //
242
183
  // Links
184
+ //
243
185
 
244
186
  a {
245
- color: rgba(var(--#{$prefix}link-color-rgb), var(--#{$prefix}link-opacity, 1));
187
+ color: $link-color;
246
188
  text-decoration: $link-decoration;
189
+ background-color: transparent; // Remove the gray background on active links in IE 10.
247
190
 
248
- &:hover {
249
- --#{$prefix}link-color-rgb: var(--#{$prefix}link-hover-color-rgb);
191
+ @include hover() {
192
+ color: $link-hover-color;
250
193
  text-decoration: $link-hover-decoration;
251
194
  }
252
195
  }
@@ -257,101 +200,82 @@ a {
257
200
  // See https://github.com/twbs/bootstrap/issues/19402
258
201
 
259
202
  a:not([href]):not([class]) {
260
- &,
261
- &:hover {
203
+ color: inherit;
204
+ text-decoration: none;
205
+
206
+ @include hover() {
262
207
  color: inherit;
263
208
  text-decoration: none;
264
209
  }
265
210
  }
266
211
 
267
212
 
213
+ //
268
214
  // Code
215
+ //
269
216
 
270
217
  pre,
271
218
  code,
272
219
  kbd,
273
220
  samp {
274
- font-family: $font-family-code;
221
+ font-family: $font-family-monospace;
275
222
  @include font-size(1em); // Correct the odd `em` font sizing in all browsers.
276
223
  }
277
224
 
278
- // 1. Remove browser default top margin
279
- // 2. Reset browser default of `1em` to use `rem`s
280
- // 3. Don't allow content to break outside
281
-
282
225
  pre {
283
- display: block;
284
- margin-top: 0; // 1
285
- margin-bottom: 1rem; // 2
286
- overflow: auto; // 3
287
- @include font-size($code-font-size);
288
- color: $pre-color;
289
-
290
- // Account for some code outputs that place code tags in pre tags
291
- code {
292
- @include font-size(inherit);
293
- color: inherit;
294
- word-break: normal;
295
- }
296
- }
297
-
298
- code {
299
- @include font-size($code-font-size);
300
- color: var(--#{$prefix}code-color);
301
- word-wrap: break-word;
302
-
303
- // Streamline the style when inside anchors to avoid broken underline and more
304
- a > & {
305
- color: inherit;
306
- }
307
- }
308
-
309
- kbd {
310
- padding: $kbd-padding-y $kbd-padding-x;
311
- @include font-size($kbd-font-size);
312
- color: $kbd-color;
313
- background-color: $kbd-bg;
314
- @include border-radius($border-radius-sm);
315
-
316
- kbd {
317
- padding: 0;
318
- @include font-size(1em);
319
- font-weight: $nested-kbd-font-weight;
320
- }
226
+ // Remove browser default top margin
227
+ margin-top: 0;
228
+ // Reset browser default of `1em` to use `rem`s
229
+ margin-bottom: 1rem;
230
+ // Don't allow content to break outside
231
+ overflow: auto;
232
+ // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
233
+ // making it impossible to interact with the content
234
+ -ms-overflow-style: scrollbar;
321
235
  }
322
236
 
323
237
 
238
+ //
324
239
  // Figures
325
240
  //
326
- // Apply a consistent margin strategy (matches our type styles).
327
241
 
328
242
  figure {
243
+ // Apply a consistent margin strategy (matches our type styles).
329
244
  margin: 0 0 1rem;
330
245
  }
331
246
 
332
247
 
248
+ //
333
249
  // Images and content
250
+ //
251
+
252
+ img {
253
+ vertical-align: middle;
254
+ border-style: none; // Remove the border on images inside links in IE 10-.
255
+ }
334
256
 
335
- img,
336
257
  svg {
258
+ // Workaround for the SVG overflow bug in IE10/11 is still required.
259
+ // See https://github.com/twbs/bootstrap/issues/26878
260
+ overflow: hidden;
337
261
  vertical-align: middle;
338
262
  }
339
263
 
340
264
 
265
+ //
341
266
  // Tables
342
267
  //
343
- // Prevent double borders
344
268
 
345
269
  table {
346
- caption-side: bottom;
347
- border-collapse: collapse;
270
+ border-collapse: collapse; // Prevent double borders
348
271
  }
349
272
 
350
273
  caption {
351
- padding-top: $table-cell-padding-y;
352
- padding-bottom: $table-cell-padding-y;
274
+ padding-top: $table-cell-padding;
275
+ padding-bottom: $table-cell-padding;
353
276
  color: $table-caption-color;
354
277
  text-align: left;
278
+ caption-side: bottom;
355
279
  }
356
280
 
357
281
  // 1. Removes font-weight bold by inheriting
@@ -364,61 +288,55 @@ th {
364
288
  text-align: -webkit-match-parent; // 3
365
289
  }
366
290
 
367
- thead,
368
- tbody,
369
- tfoot,
370
- tr,
371
- td,
372
- th {
373
- border-color: inherit;
374
- border-style: solid;
375
- border-width: 0;
376
- }
377
-
378
291
 
292
+ //
379
293
  // Forms
380
294
  //
381
- // 1. Allow labels to use `margin` for spacing.
382
295
 
383
296
  label {
384
- display: inline-block; // 1
297
+ // Allow labels to use `margin` for spacing.
298
+ display: inline-block;
299
+ margin-bottom: $label-margin-bottom;
385
300
  }
386
301
 
387
302
  // Remove the default `border-radius` that macOS Chrome adds.
388
- // See https://github.com/twbs/bootstrap/issues/24093
389
-
303
+ //
304
+ // Details at https://github.com/twbs/bootstrap/issues/24093
390
305
  button {
391
306
  // stylelint-disable-next-line property-disallowed-list
392
307
  border-radius: 0;
393
308
  }
394
309
 
395
- // Explicitly remove focus outline in Chromium when it shouldn't be
396
- // visible (e.g. as result of mouse click or touch tap). It already
397
- // should be doing this automatically, but seems to currently be
398
- // confused and applies its very visible two-tone outline anyway.
399
-
400
- button:focus:not(:focus-visible) {
401
- outline: 0;
310
+ // Work around a Firefox/IE bug where the transparent `button` background
311
+ // results in a loss of the default `button` focus styles.
312
+ //
313
+ // Credit: https://github.com/suitcss/base/
314
+ button:focus {
315
+ outline: 1px dotted;
316
+ outline: 5px auto -webkit-focus-ring-color;
402
317
  }
403
318
 
404
- // 1. Remove the margin in Firefox and Safari
405
-
406
319
  input,
407
320
  button,
408
321
  select,
409
322
  optgroup,
410
323
  textarea {
411
- margin: 0; // 1
324
+ margin: 0; // Remove the margin in Firefox and Safari
412
325
  font-family: inherit;
413
326
  @include font-size(inherit);
414
327
  line-height: inherit;
415
328
  }
416
329
 
417
- // Remove the inheritance of text transform in Firefox
330
+ button,
331
+ input {
332
+ overflow: visible; // Show the overflow in Edge
333
+ }
334
+
418
335
  button,
419
336
  select {
420
- text-transform: none;
337
+ text-transform: none; // Remove the inheritance of text transform in Firefox
421
338
  }
339
+
422
340
  // Set the cursor for non-`<button>` buttons
423
341
  //
424
342
  // Details at https://github.com/twbs/bootstrap/pull/30562
@@ -426,192 +344,141 @@ select {
426
344
  cursor: pointer;
427
345
  }
428
346
 
347
+ // Remove the inheritance of word-wrap in Safari.
348
+ //
349
+ // Details at https://github.com/twbs/bootstrap/issues/24990
429
350
  select {
430
- // Remove the inheritance of word-wrap in Safari.
431
- // See https://github.com/twbs/bootstrap/issues/24990
432
351
  word-wrap: normal;
433
-
434
- // Undo the opacity change from Chrome
435
- &:disabled {
436
- opacity: 1;
437
- }
438
352
  }
439
353
 
440
- // Remove the dropdown arrow only from text type inputs built with datalists in Chrome.
441
- // See https://stackoverflow.com/a/54997118
442
-
443
- [list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
444
- display: none !important;
445
- }
446
354
 
447
355
  // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
448
356
  // controls in Android 4.
449
357
  // 2. Correct the inability to style clickable types in iOS and Safari.
450
- // 3. Opinionated: add "hand" cursor to non-disabled button elements.
451
-
452
358
  button,
453
359
  [type="button"], // 1
454
360
  [type="reset"],
455
361
  [type="submit"] {
456
362
  -webkit-appearance: button; // 2
363
+ }
457
364
 
458
- @if $enable-button-pointers {
365
+ // Opinionated: add "hand" cursor to non-disabled button elements.
366
+ @if $enable-pointer-cursor-for-buttons {
367
+ button,
368
+ [type="button"],
369
+ [type="reset"],
370
+ [type="submit"] {
459
371
  &:not(:disabled) {
460
- cursor: pointer; // 3
372
+ cursor: pointer;
461
373
  }
462
374
  }
463
375
  }
464
376
 
465
377
  // Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
466
-
467
- ::-moz-focus-inner {
378
+ button::-moz-focus-inner,
379
+ [type="button"]::-moz-focus-inner,
380
+ [type="reset"]::-moz-focus-inner,
381
+ [type="submit"]::-moz-focus-inner {
468
382
  padding: 0;
469
383
  border-style: none;
470
384
  }
471
385
 
472
- // 1. Textareas should really only resize vertically so they don't break their (horizontal) containers.
386
+ input[type="radio"],
387
+ input[type="checkbox"] {
388
+ box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
389
+ padding: 0; // 2. Remove the padding in IE 10-
390
+ }
391
+
473
392
 
474
393
  textarea {
475
- resize: vertical; // 1
394
+ overflow: auto; // Remove the default vertical scrollbar in IE.
395
+ // Textareas should really only resize vertically so they don't break their (horizontal) containers.
396
+ resize: vertical;
476
397
  }
477
398
 
478
- // 1. Browsers set a default `min-width: min-content;` on fieldsets,
479
- // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
480
- // So we reset that to ensure fieldsets behave more like a standard block element.
481
- // See https://github.com/twbs/bootstrap/issues/12359
482
- // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
483
- // 2. Reset the default outline behavior of fieldsets so they don't affect page layout.
484
-
485
399
  fieldset {
486
- min-width: 0; // 1
487
- padding: 0; // 2
488
- margin: 0; // 2
489
- border: 0; // 2
400
+ // Browsers set a default `min-width: min-content;` on fieldsets,
401
+ // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
402
+ // So we reset that to ensure fieldsets behave more like a standard block element.
403
+ // See https://github.com/twbs/bootstrap/issues/12359
404
+ // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
405
+ min-width: 0;
406
+ // Reset the default outline behavior of fieldsets so they don't affect page layout.
407
+ padding: 0;
408
+ margin: 0;
409
+ border: 0;
490
410
  }
491
411
 
492
- // 1. By using `float: left`, the legend will behave like a block element.
493
- // This way the border of a fieldset wraps around the legend if present.
494
- // 2. Fix wrapping bug.
495
- // See https://github.com/twbs/bootstrap/issues/29712
496
-
412
+ // 1. Correct the text wrapping in Edge and IE.
413
+ // 2. Correct the color inheritance from `fieldset` elements in IE.
497
414
  legend {
498
- float: left; // 1
415
+ display: block;
499
416
  width: 100%;
417
+ max-width: 100%; // 1
500
418
  padding: 0;
501
- margin-bottom: $legend-margin-bottom;
502
- font-weight: $legend-font-weight;
419
+ margin-bottom: .5rem;
420
+ @include font-size(1.5rem);
503
421
  line-height: inherit;
504
- @include font-size($legend-font-size);
505
-
506
- + * {
507
- clear: left; // 2
508
- }
422
+ color: inherit; // 2
423
+ white-space: normal; // 1
509
424
  }
510
425
 
511
- // Fix height of inputs with a type of datetime-local, date, month, week, or time
512
- // See https://github.com/twbs/bootstrap/issues/18842
513
-
514
- ::-webkit-datetime-edit-fields-wrapper,
515
- ::-webkit-datetime-edit-text,
516
- ::-webkit-datetime-edit-minute,
517
- ::-webkit-datetime-edit-hour-field,
518
- ::-webkit-datetime-edit-day-field,
519
- ::-webkit-datetime-edit-month-field,
520
- ::-webkit-datetime-edit-year-field {
521
- padding: 0;
426
+ progress {
427
+ vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
522
428
  }
523
429
 
524
- ::-webkit-inner-spin-button {
430
+ // Correct the cursor style of increment and decrement buttons in Chrome.
431
+ [type="number"]::-webkit-inner-spin-button,
432
+ [type="number"]::-webkit-outer-spin-button {
525
433
  height: auto;
526
434
  }
527
435
 
528
- // 1. This overrides the extra rounded corners on search inputs in iOS so that our
529
- // `.form-control` class can properly style them. Note that this cannot simply
530
- // be added to `.form-control` as it's not specific enough. For details, see
531
- // https://github.com/twbs/bootstrap/issues/11586.
532
- // 2. Correct the outline style in Safari.
533
-
534
436
  [type="search"] {
535
- -webkit-appearance: textfield; // 1
536
- outline-offset: -2px; // 2
537
-
538
- // 3. Better affordance and consistent appearance for search cancel button
539
- &::-webkit-search-cancel-button {
540
- cursor: pointer;
541
- filter: grayscale(1);
542
- }
543
- }
544
-
545
- // 1. A few input types should stay LTR
546
- // See https://rtlstyling.com/posts/rtl-styling#form-inputs
547
- // 2. RTL only output
548
- // See https://rtlcss.com/learn/usage-guide/control-directives/#raw
549
-
550
- /* rtl:raw:
551
- [type="tel"],
552
- [type="url"],
553
- [type="email"],
554
- [type="number"] {
555
- direction: ltr;
437
+ // This overrides the extra rounded corners on search inputs in iOS so that our
438
+ // `.form-control` class can properly style them. Note that this cannot simply
439
+ // be added to `.form-control` as it's not specific enough. For details, see
440
+ // https://github.com/twbs/bootstrap/issues/11586.
441
+ outline-offset: -2px; // 2. Correct the outline style in Safari.
442
+ -webkit-appearance: none;
556
443
  }
557
- */
558
444
 
445
+ //
559
446
  // Remove the inner padding in Chrome and Safari on macOS.
447
+ //
560
448
 
561
- ::-webkit-search-decoration {
449
+ [type="search"]::-webkit-search-decoration {
562
450
  -webkit-appearance: none;
563
451
  }
564
452
 
565
- // Remove padding around color pickers in webkit browsers
566
-
567
- ::-webkit-color-swatch-wrapper {
568
- padding: 0;
569
- }
570
-
571
-
572
- // 1. Inherit font family and line height for file input buttons
573
- // 2. Correct the inability to style clickable types in iOS and Safari.
453
+ //
454
+ // 1. Correct the inability to style clickable types in iOS and Safari.
455
+ // 2. Change font properties to `inherit` in Safari.
456
+ //
574
457
 
575
- ::file-selector-button {
576
- font: inherit; // 1
577
- -webkit-appearance: button; // 2
458
+ ::-webkit-file-upload-button {
459
+ font: inherit; // 2
460
+ -webkit-appearance: button; // 1
578
461
  }
579
462
 
463
+ //
580
464
  // Correct element displays
465
+ //
581
466
 
582
467
  output {
583
468
  display: inline-block;
584
469
  }
585
470
 
586
- // Remove border from iframe
587
-
588
- iframe {
589
- border: 0;
590
- }
591
-
592
- // Summary
593
- //
594
- // 1. Add the correct display in all browsers
595
-
596
471
  summary {
597
- display: list-item; // 1
472
+ display: list-item; // Add the correct display in all browsers
598
473
  cursor: pointer;
599
474
  }
600
475
 
601
-
602
- // Progress
603
- //
604
- // Add the correct vertical alignment in Chrome, Firefox, and Opera.
605
-
606
- progress {
607
- vertical-align: baseline;
476
+ template {
477
+ display: none; // Add the correct display in IE
608
478
  }
609
479
 
610
-
611
- // Hidden attribute
612
- //
613
- // Always hide an element with the `hidden` HTML attribute.
614
-
480
+ // Always hide an element with the `hidden` HTML attribute (from PureCSS).
481
+ // Needed for proper display in IE 10-.
615
482
  [hidden] {
616
483
  display: none !important;
617
484
  }