mere-blog-theme 0.4 → 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 (185) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +46 -22
  3. data/_includes/author-media.html +23 -20
  4. data/_includes/google-analytics.html +6 -3
  5. data/_includes/head.html +21 -11
  6. data/_includes/hero.html +12 -7
  7. data/_includes/navbar.html +19 -19
  8. data/_includes/pagination.html +41 -21
  9. data/_includes/post-item.html +18 -15
  10. data/_includes/social-buttons.html +25 -26
  11. data/_layouts/author.html +51 -38
  12. data/_layouts/default.html +21 -19
  13. data/_layouts/homepage.html +9 -12
  14. data/_layouts/post.html +29 -28
  15. data/_sass/_intro.scss +6 -4
  16. data/_sass/_layout.scss +29 -18
  17. data/_sass/_main.scss +17 -18
  18. data/_sass/syntax.scss +14 -6
  19. data/assets/css/app.scss +1 -1
  20. data/assets/js/app.js +9 -11
  21. data/node_modules/.package-lock.json +13 -0
  22. data/node_modules/bulma/LICENSE +1 -1
  23. data/node_modules/bulma/README.md +72 -57
  24. data/node_modules/bulma/bulma.scss +4 -0
  25. data/node_modules/bulma/css/bulma.css +18892 -8672
  26. data/node_modules/bulma/css/bulma.css.map +1 -1
  27. data/node_modules/bulma/css/bulma.min.css +3 -1
  28. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +19648 -0
  29. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
  30. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  31. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +11136 -0
  32. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
  33. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  34. data/node_modules/bulma/css/versions/bulma-no-helpers.css +11136 -0
  35. data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -0
  36. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  37. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +21551 -0
  38. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  39. data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
  40. data/node_modules/bulma/package.json +42 -62
  41. data/node_modules/bulma/sass/_index.scss +10 -0
  42. data/node_modules/bulma/sass/base/_index.scss +6 -0
  43. data/node_modules/bulma/sass/base/animations.scss +15 -0
  44. data/node_modules/bulma/sass/base/generic.scss +239 -0
  45. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  46. data/node_modules/bulma/sass/base/skeleton.scss +114 -0
  47. data/node_modules/bulma/sass/components/_index.scss +13 -0
  48. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  49. data/node_modules/bulma/sass/components/card.scss +162 -0
  50. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  51. data/node_modules/bulma/sass/components/menu.scss +165 -0
  52. data/node_modules/bulma/sass/components/message.scss +183 -0
  53. data/node_modules/bulma/sass/components/modal.scss +164 -0
  54. data/node_modules/bulma/sass/components/navbar.scss +799 -0
  55. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  56. data/node_modules/bulma/sass/components/panel.scss +218 -0
  57. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  58. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  59. data/node_modules/bulma/sass/elements/block.scss +6 -0
  60. data/node_modules/bulma/sass/elements/box.scss +59 -0
  61. data/node_modules/bulma/sass/elements/button.scss +647 -0
  62. data/node_modules/bulma/sass/elements/content.scss +289 -0
  63. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  64. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  65. data/node_modules/bulma/sass/elements/image.scss +62 -0
  66. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  67. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  68. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  69. data/node_modules/bulma/sass/elements/table.scss +261 -0
  70. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  71. data/node_modules/bulma/sass/elements/title.scss +128 -0
  72. data/node_modules/bulma/sass/form/_index.scss +9 -0
  73. data/node_modules/bulma/sass/form/checkbox-radio.scss +36 -0
  74. data/node_modules/bulma/sass/form/file.scss +330 -0
  75. data/node_modules/bulma/sass/form/input-textarea.scss +113 -0
  76. data/node_modules/bulma/sass/form/select.scss +144 -0
  77. data/node_modules/bulma/sass/form/shared.scss +176 -0
  78. data/node_modules/bulma/sass/form/tools.scss +352 -0
  79. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  80. data/node_modules/bulma/sass/grid/columns.scss +961 -0
  81. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  82. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  83. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  84. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  85. data/node_modules/bulma/sass/helpers/color.scss +344 -0
  86. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  87. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  88. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  89. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  90. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  91. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  92. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  93. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  94. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  95. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  96. data/node_modules/bulma/sass/layout/container.scss +59 -0
  97. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  98. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  99. data/node_modules/bulma/sass/layout/level.scss +107 -0
  100. data/node_modules/bulma/sass/layout/media.scss +106 -0
  101. data/node_modules/bulma/sass/layout/section.scss +38 -0
  102. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  103. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  104. data/node_modules/bulma/sass/themes/light.scss +146 -0
  105. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  106. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  107. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  108. data/node_modules/bulma/sass/utilities/css-variables.scss +426 -0
  109. data/node_modules/bulma/sass/utilities/derived-variables.scss +86 -106
  110. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  111. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  112. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  113. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  114. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +20 -0
  115. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  116. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  117. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  118. data/package-lock.json +14 -6
  119. data/package.json +1 -1
  120. metadata +116 -99
  121. data/node_modules/bulma/CHANGELOG.md +0 -1459
  122. data/node_modules/bulma/bulma.sass +0 -10
  123. data/node_modules/bulma/css/bulma-rtl.css +0 -11331
  124. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  125. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  126. data/node_modules/bulma/sass/base/_all.sass +0 -4
  127. data/node_modules/bulma/sass/base/generic.sass +0 -142
  128. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  129. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  130. data/node_modules/bulma/sass/components/_all.sass +0 -14
  131. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -75
  132. data/node_modules/bulma/sass/components/card.sass +0 -79
  133. data/node_modules/bulma/sass/components/dropdown.sass +0 -81
  134. data/node_modules/bulma/sass/components/level.sass +0 -77
  135. data/node_modules/bulma/sass/components/media.sass +0 -52
  136. data/node_modules/bulma/sass/components/menu.sass +0 -57
  137. data/node_modules/bulma/sass/components/message.sass +0 -99
  138. data/node_modules/bulma/sass/components/modal.sass +0 -113
  139. data/node_modules/bulma/sass/components/navbar.sass +0 -441
  140. data/node_modules/bulma/sass/components/pagination.sass +0 -150
  141. data/node_modules/bulma/sass/components/panel.sass +0 -119
  142. data/node_modules/bulma/sass/components/tabs.sass +0 -174
  143. data/node_modules/bulma/sass/elements/_all.sass +0 -15
  144. data/node_modules/bulma/sass/elements/box.sass +0 -24
  145. data/node_modules/bulma/sass/elements/button.sass +0 -323
  146. data/node_modules/bulma/sass/elements/container.sass +0 -24
  147. data/node_modules/bulma/sass/elements/content.sass +0 -155
  148. data/node_modules/bulma/sass/elements/form.sass +0 -1
  149. data/node_modules/bulma/sass/elements/icon.sass +0 -21
  150. data/node_modules/bulma/sass/elements/image.sass +0 -71
  151. data/node_modules/bulma/sass/elements/notification.sass +0 -48
  152. data/node_modules/bulma/sass/elements/other.sass +0 -39
  153. data/node_modules/bulma/sass/elements/progress.sass +0 -67
  154. data/node_modules/bulma/sass/elements/table.sass +0 -129
  155. data/node_modules/bulma/sass/elements/tag.sass +0 -136
  156. data/node_modules/bulma/sass/elements/title.sass +0 -70
  157. data/node_modules/bulma/sass/form/_all.sass +0 -8
  158. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -21
  159. data/node_modules/bulma/sass/form/file.sass +0 -180
  160. data/node_modules/bulma/sass/form/input-textarea.sass +0 -64
  161. data/node_modules/bulma/sass/form/select.sass +0 -85
  162. data/node_modules/bulma/sass/form/shared.sass +0 -55
  163. data/node_modules/bulma/sass/form/tools.sass +0 -213
  164. data/node_modules/bulma/sass/grid/_all.sass +0 -4
  165. data/node_modules/bulma/sass/grid/columns.sass +0 -504
  166. data/node_modules/bulma/sass/grid/tiles.sass +0 -34
  167. data/node_modules/bulma/sass/helpers/_all.sass +0 -10
  168. data/node_modules/bulma/sass/helpers/color.sass +0 -37
  169. data/node_modules/bulma/sass/helpers/float.sass +0 -8
  170. data/node_modules/bulma/sass/helpers/other.sass +0 -8
  171. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  172. data/node_modules/bulma/sass/helpers/position.sass +0 -5
  173. data/node_modules/bulma/sass/helpers/spacing.sass +0 -28
  174. data/node_modules/bulma/sass/helpers/typography.sass +0 -98
  175. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  176. data/node_modules/bulma/sass/layout/_all.sass +0 -5
  177. data/node_modules/bulma/sass/layout/footer.sass +0 -9
  178. data/node_modules/bulma/sass/layout/hero.sass +0 -145
  179. data/node_modules/bulma/sass/layout/section.sass +0 -13
  180. data/node_modules/bulma/sass/utilities/_all.sass +0 -8
  181. data/node_modules/bulma/sass/utilities/animations.sass +0 -5
  182. data/node_modules/bulma/sass/utilities/controls.sass +0 -50
  183. data/node_modules/bulma/sass/utilities/functions.sass +0 -115
  184. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
  185. data/node_modules/bulma/sass/utilities/mixins.sass +0 -285
@@ -1,155 +0,0 @@
1
- $content-heading-color: $text-strong !default
2
- $content-heading-weight: $weight-semibold !default
3
- $content-heading-line-height: 1.125 !default
4
-
5
- $content-blockquote-background-color: $background !default
6
- $content-blockquote-border-left: 5px solid $border !default
7
- $content-blockquote-padding: 1.25em 1.5em !default
8
-
9
- $content-pre-padding: 1.25em 1.5em !default
10
-
11
- $content-table-cell-border: 1px solid $border !default
12
- $content-table-cell-border-width: 0 0 1px !default
13
- $content-table-cell-padding: 0.5em 0.75em !default
14
- $content-table-cell-heading-color: $text-strong !default
15
- $content-table-head-cell-border-width: 0 0 2px !default
16
- $content-table-head-cell-color: $text-strong !default
17
- $content-table-foot-cell-border-width: 2px 0 0 !default
18
- $content-table-foot-cell-color: $text-strong !default
19
-
20
- .content
21
- @extend %block
22
- // Inline
23
- li + li
24
- margin-top: 0.25em
25
- // Block
26
- p,
27
- dl,
28
- ol,
29
- ul,
30
- blockquote,
31
- pre,
32
- table
33
- &:not(:last-child)
34
- margin-bottom: 1em
35
- h1,
36
- h2,
37
- h3,
38
- h4,
39
- h5,
40
- h6
41
- color: $content-heading-color
42
- font-weight: $content-heading-weight
43
- line-height: $content-heading-line-height
44
- h1
45
- font-size: 2em
46
- margin-bottom: 0.5em
47
- &:not(:first-child)
48
- margin-top: 1em
49
- h2
50
- font-size: 1.75em
51
- margin-bottom: 0.5714em
52
- &:not(:first-child)
53
- margin-top: 1.1428em
54
- h3
55
- font-size: 1.5em
56
- margin-bottom: 0.6666em
57
- &:not(:first-child)
58
- margin-top: 1.3333em
59
- h4
60
- font-size: 1.25em
61
- margin-bottom: 0.8em
62
- h5
63
- font-size: 1.125em
64
- margin-bottom: 0.8888em
65
- h6
66
- font-size: 1em
67
- margin-bottom: 1em
68
- blockquote
69
- background-color: $content-blockquote-background-color
70
- +ltr-property("border", $content-blockquote-border-left, false)
71
- padding: $content-blockquote-padding
72
- ol
73
- list-style-position: outside
74
- +ltr-property("margin", 2em, false)
75
- margin-top: 1em
76
- &:not([type])
77
- list-style-type: decimal
78
- &.is-lower-alpha
79
- list-style-type: lower-alpha
80
- &.is-lower-roman
81
- list-style-type: lower-roman
82
- &.is-upper-alpha
83
- list-style-type: upper-alpha
84
- &.is-upper-roman
85
- list-style-type: upper-roman
86
- ul
87
- list-style: disc outside
88
- +ltr-property("margin", 2em, false)
89
- margin-top: 1em
90
- ul
91
- list-style-type: circle
92
- margin-top: 0.5em
93
- ul
94
- list-style-type: square
95
- dd
96
- +ltr-property("margin", 2em, false)
97
- figure
98
- margin-left: 2em
99
- margin-right: 2em
100
- text-align: center
101
- &:not(:first-child)
102
- margin-top: 2em
103
- &:not(:last-child)
104
- margin-bottom: 2em
105
- img
106
- display: inline-block
107
- figcaption
108
- font-style: italic
109
- pre
110
- +overflow-touch
111
- overflow-x: auto
112
- padding: $content-pre-padding
113
- white-space: pre
114
- word-wrap: normal
115
- sup,
116
- sub
117
- font-size: 75%
118
- table
119
- width: 100%
120
- td,
121
- th
122
- border: $content-table-cell-border
123
- border-width: $content-table-cell-border-width
124
- padding: $content-table-cell-padding
125
- vertical-align: top
126
- th
127
- color: $content-table-cell-heading-color
128
- &:not([align])
129
- text-align: inherit
130
- thead
131
- td,
132
- th
133
- border-width: $content-table-head-cell-border-width
134
- color: $content-table-head-cell-color
135
- tfoot
136
- td,
137
- th
138
- border-width: $content-table-foot-cell-border-width
139
- color: $content-table-foot-cell-color
140
- tbody
141
- tr
142
- &:last-child
143
- td,
144
- th
145
- border-bottom-width: 0
146
- .tabs
147
- li + li
148
- margin-top: 0
149
- // Sizes
150
- &.is-small
151
- font-size: $size-small
152
- &.is-medium
153
- font-size: $size-medium
154
- &.is-large
155
- font-size: $size-large
@@ -1 +0,0 @@
1
- @warn "The form.sass file is DEPRECATED. It has moved into its own /form folder. Please import sass/form/_all instead."
@@ -1,21 +0,0 @@
1
- $icon-dimensions: 1.5rem !default
2
- $icon-dimensions-small: 1rem !default
3
- $icon-dimensions-medium: 2rem !default
4
- $icon-dimensions-large: 3rem !default
5
-
6
- .icon
7
- align-items: center
8
- display: inline-flex
9
- justify-content: center
10
- height: $icon-dimensions
11
- width: $icon-dimensions
12
- // Sizes
13
- &.is-small
14
- height: $icon-dimensions-small
15
- width: $icon-dimensions-small
16
- &.is-medium
17
- height: $icon-dimensions-medium
18
- width: $icon-dimensions-medium
19
- &.is-large
20
- height: $icon-dimensions-large
21
- width: $icon-dimensions-large
@@ -1,71 +0,0 @@
1
- $dimensions: 16 24 32 48 64 96 128 !default
2
-
3
- .image
4
- display: block
5
- position: relative
6
- img
7
- display: block
8
- height: auto
9
- width: 100%
10
- &.is-rounded
11
- border-radius: $radius-rounded
12
- &.is-fullwidth
13
- width: 100%
14
- // Ratio
15
- &.is-square,
16
- &.is-1by1,
17
- &.is-5by4,
18
- &.is-4by3,
19
- &.is-3by2,
20
- &.is-5by3,
21
- &.is-16by9,
22
- &.is-2by1,
23
- &.is-3by1,
24
- &.is-4by5,
25
- &.is-3by4,
26
- &.is-2by3,
27
- &.is-3by5,
28
- &.is-9by16,
29
- &.is-1by2,
30
- &.is-1by3
31
- img,
32
- .has-ratio
33
- @extend %overlay
34
- height: 100%
35
- width: 100%
36
- &.is-square,
37
- &.is-1by1
38
- padding-top: 100%
39
- &.is-5by4
40
- padding-top: 80%
41
- &.is-4by3
42
- padding-top: 75%
43
- &.is-3by2
44
- padding-top: 66.6666%
45
- &.is-5by3
46
- padding-top: 60%
47
- &.is-16by9
48
- padding-top: 56.25%
49
- &.is-2by1
50
- padding-top: 50%
51
- &.is-3by1
52
- padding-top: 33.3333%
53
- &.is-4by5
54
- padding-top: 125%
55
- &.is-3by4
56
- padding-top: 133.3333%
57
- &.is-2by3
58
- padding-top: 150%
59
- &.is-3by5
60
- padding-top: 166.6666%
61
- &.is-9by16
62
- padding-top: 177.7777%
63
- &.is-1by2
64
- padding-top: 200%
65
- &.is-1by3
66
- padding-top: 300%
67
- // Sizes
68
- @each $dimension in $dimensions
69
- &.is-#{$dimension}x#{$dimension}
70
- height: $dimension * 1px
71
- width: $dimension * 1px
@@ -1,48 +0,0 @@
1
- $notification-background-color: $background !default
2
- $notification-code-background-color: $scheme-main !default
3
- $notification-radius: $radius !default
4
- $notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default
5
- $notification-padding-ltr: 1.25rem 2.5rem 1.25rem 1.5rem !default
6
- $notification-padding-rtl: 1.25rem 1.5rem 1.25rem 2.5rem !default
7
-
8
- .notification
9
- @extend %block
10
- background-color: $notification-background-color
11
- border-radius: $notification-radius
12
- position: relative
13
- +ltr
14
- padding: $notification-padding-ltr
15
- +rtl
16
- padding: $notification-padding-rtl
17
- a:not(.button):not(.dropdown-item)
18
- color: currentColor
19
- text-decoration: underline
20
- strong
21
- color: currentColor
22
- code,
23
- pre
24
- background: $notification-code-background-color
25
- pre code
26
- background: transparent
27
- & > .delete
28
- +ltr-position(0.5rem)
29
- position: absolute
30
- top: 0.5rem
31
- .title,
32
- .subtitle,
33
- .content
34
- color: currentColor
35
- // Colors
36
- @each $name, $pair in $colors
37
- $color: nth($pair, 1)
38
- $color-invert: nth($pair, 2)
39
- &.is-#{$name}
40
- background-color: $color
41
- color: $color-invert
42
- // If light and dark colors are provided
43
- @if length($pair) >= 4
44
- $color-light: nth($pair, 3)
45
- $color-dark: nth($pair, 4)
46
- &.is-light
47
- background-color: $color-light
48
- color: $color-dark
@@ -1,39 +0,0 @@
1
- .block
2
- @extend %block
3
-
4
- .delete
5
- @extend %delete
6
-
7
- .heading
8
- display: block
9
- font-size: 11px
10
- letter-spacing: 1px
11
- margin-bottom: 5px
12
- text-transform: uppercase
13
-
14
- .highlight
15
- @extend %block
16
- font-weight: $weight-normal
17
- max-width: 100%
18
- overflow: hidden
19
- padding: 0
20
- pre
21
- overflow: auto
22
- max-width: 100%
23
-
24
- .loader
25
- @extend %loader
26
-
27
- .number
28
- align-items: center
29
- background-color: $background
30
- border-radius: $radius-rounded
31
- display: inline-flex
32
- font-size: $size-medium
33
- height: 2em
34
- justify-content: center
35
- margin-right: 1.5rem
36
- min-width: 2.5em
37
- padding: 0.25rem 0.5rem
38
- text-align: center
39
- vertical-align: top
@@ -1,67 +0,0 @@
1
- $progress-bar-background-color: $border-light !default
2
- $progress-value-background-color: $text !default
3
- $progress-border-radius: $radius-rounded !default
4
-
5
- $progress-indeterminate-duration: 1.5s !default
6
-
7
- .progress
8
- @extend %block
9
- -moz-appearance: none
10
- -webkit-appearance: none
11
- border: none
12
- border-radius: $progress-border-radius
13
- display: block
14
- height: $size-normal
15
- overflow: hidden
16
- padding: 0
17
- width: 100%
18
- &::-webkit-progress-bar
19
- background-color: $progress-bar-background-color
20
- &::-webkit-progress-value
21
- background-color: $progress-value-background-color
22
- &::-moz-progress-bar
23
- background-color: $progress-value-background-color
24
- &::-ms-fill
25
- background-color: $progress-value-background-color
26
- border: none
27
- // Colors
28
- @each $name, $pair in $colors
29
- $color: nth($pair, 1)
30
- &.is-#{$name}
31
- &::-webkit-progress-value
32
- background-color: $color
33
- &::-moz-progress-bar
34
- background-color: $color
35
- &::-ms-fill
36
- background-color: $color
37
- &:indeterminate
38
- background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%)
39
-
40
- &:indeterminate
41
- animation-duration: $progress-indeterminate-duration
42
- animation-iteration-count: infinite
43
- animation-name: moveIndeterminate
44
- animation-timing-function: linear
45
- background-color: $progress-bar-background-color
46
- background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%)
47
- background-position: top left
48
- background-repeat: no-repeat
49
- background-size: 150% 150%
50
- &::-webkit-progress-bar
51
- background-color: transparent
52
- &::-moz-progress-bar
53
- background-color: transparent
54
-
55
- // Sizes
56
- &.is-small
57
- height: $size-small
58
- &.is-medium
59
- height: $size-medium
60
- &.is-large
61
- height: $size-large
62
-
63
- @keyframes moveIndeterminate
64
- from
65
- background-position: 200% 0
66
- to
67
- background-position: -200% 0
@@ -1,129 +0,0 @@
1
- $table-color: $text-strong !default
2
- $table-background-color: $scheme-main !default
3
-
4
- $table-cell-border: 1px solid $border !default
5
- $table-cell-border-width: 0 0 1px !default
6
- $table-cell-padding: 0.5em 0.75em !default
7
- $table-cell-heading-color: $text-strong !default
8
-
9
- $table-head-cell-border-width: 0 0 2px !default
10
- $table-head-cell-color: $text-strong !default
11
- $table-foot-cell-border-width: 2px 0 0 !default
12
- $table-foot-cell-color: $text-strong !default
13
-
14
- $table-head-background-color: transparent !default
15
- $table-body-background-color: transparent !default
16
- $table-foot-background-color: transparent !default
17
-
18
- $table-row-hover-background-color: $scheme-main-bis !default
19
-
20
- $table-row-active-background-color: $primary !default
21
- $table-row-active-color: $primary-invert !default
22
-
23
- $table-striped-row-even-background-color: $scheme-main-bis !default
24
- $table-striped-row-even-hover-background-color: $scheme-main-ter !default
25
-
26
- .table
27
- @extend %block
28
- background-color: $table-background-color
29
- color: $table-color
30
- td,
31
- th
32
- border: $table-cell-border
33
- border-width: $table-cell-border-width
34
- padding: $table-cell-padding
35
- vertical-align: top
36
- // Colors
37
- @each $name, $pair in $colors
38
- $color: nth($pair, 1)
39
- $color-invert: nth($pair, 2)
40
- &.is-#{$name}
41
- background-color: $color
42
- border-color: $color
43
- color: $color-invert
44
- // Modifiers
45
- &.is-narrow
46
- white-space: nowrap
47
- width: 1%
48
- &.is-selected
49
- background-color: $table-row-active-background-color
50
- color: $table-row-active-color
51
- a,
52
- strong
53
- color: currentColor
54
- &.is-vcentered
55
- vertical-align: middle
56
- th
57
- color: $table-cell-heading-color
58
- &:not([align])
59
- text-align: inherit
60
- tr
61
- &.is-selected
62
- background-color: $table-row-active-background-color
63
- color: $table-row-active-color
64
- a,
65
- strong
66
- color: currentColor
67
- td,
68
- th
69
- border-color: $table-row-active-color
70
- color: currentColor
71
- thead
72
- background-color: $table-head-background-color
73
- td,
74
- th
75
- border-width: $table-head-cell-border-width
76
- color: $table-head-cell-color
77
- tfoot
78
- background-color: $table-foot-background-color
79
- td,
80
- th
81
- border-width: $table-foot-cell-border-width
82
- color: $table-foot-cell-color
83
- tbody
84
- background-color: $table-body-background-color
85
- tr
86
- &:last-child
87
- td,
88
- th
89
- border-bottom-width: 0
90
- // Modifiers
91
- &.is-bordered
92
- td,
93
- th
94
- border-width: 1px
95
- tr
96
- &:last-child
97
- td,
98
- th
99
- border-bottom-width: 1px
100
- &.is-fullwidth
101
- width: 100%
102
- &.is-hoverable
103
- tbody
104
- tr:not(.is-selected)
105
- &:hover
106
- background-color: $table-row-hover-background-color
107
- &.is-striped
108
- tbody
109
- tr:not(.is-selected)
110
- &:hover
111
- background-color: $table-row-hover-background-color
112
- &:nth-child(even)
113
- background-color: $table-striped-row-even-hover-background-color
114
- &.is-narrow
115
- td,
116
- th
117
- padding: 0.25em 0.5em
118
- &.is-striped
119
- tbody
120
- tr:not(.is-selected)
121
- &:nth-child(even)
122
- background-color: $table-striped-row-even-background-color
123
-
124
- .table-container
125
- @extend %block
126
- +overflow-touch
127
- overflow: auto
128
- overflow-y: hidden
129
- max-width: 100%
@@ -1,136 +0,0 @@
1
- $tag-background-color: $background !default
2
- $tag-color: $text !default
3
- $tag-radius: $radius !default
4
- $tag-delete-margin: 1px !default
5
-
6
- .tags
7
- align-items: center
8
- display: flex
9
- flex-wrap: wrap
10
- justify-content: flex-start
11
- .tag
12
- margin-bottom: 0.5rem
13
- &:not(:last-child)
14
- +ltr-property("margin", 0.5rem)
15
- &:last-child
16
- margin-bottom: -0.5rem
17
- &:not(:last-child)
18
- margin-bottom: 1rem
19
- // Sizes
20
- &.are-medium
21
- .tag:not(.is-normal):not(.is-large)
22
- font-size: $size-normal
23
- &.are-large
24
- .tag:not(.is-normal):not(.is-medium)
25
- font-size: $size-medium
26
- &.is-centered
27
- justify-content: center
28
- .tag
29
- margin-right: 0.25rem
30
- margin-left: 0.25rem
31
- &.is-right
32
- justify-content: flex-end
33
- .tag
34
- &:not(:first-child)
35
- margin-left: 0.5rem
36
- &:not(:last-child)
37
- margin-right: 0
38
- &.has-addons
39
- .tag
40
- +ltr-property("margin", 0)
41
- &:not(:first-child)
42
- +ltr-property("margin", 0, false)
43
- +ltr
44
- border-top-left-radius: 0
45
- border-bottom-left-radius: 0
46
- +rtl
47
- border-top-right-radius: 0
48
- border-bottom-right-radius: 0
49
- &:not(:last-child)
50
- +ltr
51
- border-top-right-radius: 0
52
- border-bottom-right-radius: 0
53
- +rtl
54
- border-top-left-radius: 0
55
- border-bottom-left-radius: 0
56
-
57
- .tag:not(body)
58
- align-items: center
59
- background-color: $tag-background-color
60
- border-radius: $tag-radius
61
- color: $tag-color
62
- display: inline-flex
63
- font-size: $size-small
64
- height: 2em
65
- justify-content: center
66
- line-height: 1.5
67
- padding-left: 0.75em
68
- padding-right: 0.75em
69
- white-space: nowrap
70
- .delete
71
- +ltr-property("margin", 0.25rem, false)
72
- +ltr-property("margin", -0.375rem)
73
- // Colors
74
- @each $name, $pair in $colors
75
- $color: nth($pair, 1)
76
- $color-invert: nth($pair, 2)
77
- &.is-#{$name}
78
- background-color: $color
79
- color: $color-invert
80
- // If a light and dark colors are provided
81
- @if length($pair) > 3
82
- $color-light: nth($pair, 3)
83
- $color-dark: nth($pair, 4)
84
- &.is-light
85
- background-color: $color-light
86
- color: $color-dark
87
- // Sizes
88
- &.is-normal
89
- font-size: $size-small
90
- &.is-medium
91
- font-size: $size-normal
92
- &.is-large
93
- font-size: $size-medium
94
- .icon
95
- &:first-child:not(:last-child)
96
- +ltr-property("margin", -0.375em, false)
97
- +ltr-property("margin", 0.1875em)
98
- &:last-child:not(:first-child)
99
- +ltr-property("margin", 0.1875em, false)
100
- +ltr-property("margin", -0.375em)
101
- &:first-child:last-child
102
- +ltr-property("margin", -0.375em, false)
103
- +ltr-property("margin", -0.375em)
104
- // Modifiers
105
- &.is-delete
106
- +ltr-property("margin", $tag-delete-margin, false)
107
- padding: 0
108
- position: relative
109
- width: 2em
110
- &::before,
111
- &::after
112
- background-color: currentColor
113
- content: ""
114
- display: block
115
- left: 50%
116
- position: absolute
117
- top: 50%
118
- transform: translateX(-50%) translateY(-50%) rotate(45deg)
119
- transform-origin: center center
120
- &::before
121
- height: 1px
122
- width: 50%
123
- &::after
124
- height: 50%
125
- width: 1px
126
- &:hover,
127
- &:focus
128
- background-color: darken($tag-background-color, 5%)
129
- &:active
130
- background-color: darken($tag-background-color, 10%)
131
- &.is-rounded
132
- border-radius: $radius-rounded
133
-
134
- a.tag
135
- &:hover
136
- text-decoration: underline