mere-blog-theme 0.5 → 1.0.1

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 (189) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -24
  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 +50 -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 +4 -4
  22. data/node_modules/bulma/LICENSE +1 -1
  23. data/node_modules/bulma/README.md +67 -55
  24. data/node_modules/bulma/bulma.scss +4 -0
  25. data/node_modules/bulma/css/bulma.css +18412 -8566
  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 +25 -19
  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 +112 -0
  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 +5 -12
  119. data/package.json +1 -1
  120. metadata +107 -80
  121. data/node_modules/bulma/CHANGELOG.md +0 -1539
  122. data/node_modules/bulma/bulma.sass +0 -10
  123. data/node_modules/bulma/css/bulma-rtl.css +0 -11705
  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 -6
  127. data/node_modules/bulma/sass/base/animations.sass +0 -5
  128. data/node_modules/bulma/sass/base/generic.sass +0 -145
  129. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  130. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  131. data/node_modules/bulma/sass/components/_all.sass +0 -15
  132. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  133. data/node_modules/bulma/sass/components/card.sass +0 -102
  134. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  135. data/node_modules/bulma/sass/components/level.sass +0 -79
  136. data/node_modules/bulma/sass/components/media.sass +0 -59
  137. data/node_modules/bulma/sass/components/menu.sass +0 -59
  138. data/node_modules/bulma/sass/components/message.sass +0 -101
  139. data/node_modules/bulma/sass/components/modal.sass +0 -117
  140. data/node_modules/bulma/sass/components/navbar.sass +0 -445
  141. data/node_modules/bulma/sass/components/pagination.sass +0 -158
  142. data/node_modules/bulma/sass/components/panel.sass +0 -121
  143. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  144. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  145. data/node_modules/bulma/sass/elements/box.sass +0 -26
  146. data/node_modules/bulma/sass/elements/button.sass +0 -345
  147. data/node_modules/bulma/sass/elements/container.sass +0 -29
  148. data/node_modules/bulma/sass/elements/content.sass +0 -157
  149. data/node_modules/bulma/sass/elements/form.sass +0 -1
  150. data/node_modules/bulma/sass/elements/icon.sass +0 -40
  151. data/node_modules/bulma/sass/elements/image.sass +0 -73
  152. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  153. data/node_modules/bulma/sass/elements/other.sass +0 -41
  154. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  155. data/node_modules/bulma/sass/elements/table.sass +0 -133
  156. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  157. data/node_modules/bulma/sass/elements/title.sass +0 -72
  158. data/node_modules/bulma/sass/form/_all.sass +0 -9
  159. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  160. data/node_modules/bulma/sass/form/file.sass +0 -182
  161. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  162. data/node_modules/bulma/sass/form/select.sass +0 -87
  163. data/node_modules/bulma/sass/form/shared.sass +0 -60
  164. data/node_modules/bulma/sass/form/tools.sass +0 -215
  165. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  166. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  167. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  168. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  169. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  170. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  171. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  172. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  173. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  174. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  175. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  176. data/node_modules/bulma/sass/helpers/typography.sass +0 -100
  177. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  178. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  179. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  180. data/node_modules/bulma/sass/layout/hero.sass +0 -149
  181. data/node_modules/bulma/sass/layout/section.sass +0 -15
  182. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  183. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  184. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  185. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -110
  186. data/node_modules/bulma/sass/utilities/extends.sass +0 -22
  187. data/node_modules/bulma/sass/utilities/functions.sass +0 -115
  188. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
  189. data/node_modules/bulma/sass/utilities/mixins.sass +0 -268
@@ -0,0 +1,330 @@
1
+ @use "shared";
2
+ @use "../utilities/css-variables" as cv;
3
+ @use "../utilities/initial-variables" as iv;
4
+ @use "../utilities/controls";
5
+ @use "../utilities/extends";
6
+
7
+ $file-radius: cv.getVar("radius") !default;
8
+
9
+ $file-h: cv.getVar("scheme-h");
10
+ $file-s: cv.getVar("scheme-s");
11
+ $file-background-l: cv.getVar("scheme-main-ter-l");
12
+ $file-background-l-delta: 0%;
13
+ $file-hover-background-l-delta: -5%;
14
+ $file-active-background-l-delta: -10%;
15
+ $file-border-l: cv.getVar("border-l");
16
+ $file-border-l-delta: 0%;
17
+ $file-hover-border-l-delta: -10%;
18
+ $file-active-border-l-delta: -20%;
19
+ $file-cta-color-l: cv.getVar("text-strong-l");
20
+ $file-name-color-l: cv.getVar("text-strong-l");
21
+ $file-color-l-delta: 0%;
22
+ $file-hover-color-l-delta: -5%;
23
+ $file-active-color-l-delta: -10%;
24
+
25
+ $file-cta-color: cv.getVar("text") !default;
26
+ $file-cta-hover-color: cv.getVar("text-strong") !default;
27
+ $file-cta-active-color: cv.getVar("text-strong") !default;
28
+
29
+ $file-name-border-color: cv.getVar("border") !default;
30
+ $file-name-border-style: solid !default;
31
+ $file-name-border-width: 1px 1px 1px 0 !default;
32
+ $file-name-max-width: 16em !default;
33
+
34
+ $file-colors: shared.$form-colors !default;
35
+
36
+ .#{iv.$class-prefix}file {
37
+ @extend %block;
38
+ @extend %unselectable;
39
+
40
+ @include cv.register-vars(
41
+ (
42
+ "file-radius": #{$file-radius},
43
+ "file-name-border-color": #{$file-name-border-color},
44
+ "file-name-border-style": #{$file-name-border-style},
45
+ "file-name-border-width": #{$file-name-border-width},
46
+ "file-name-max-width": #{$file-name-max-width},
47
+ "file-h": #{$file-h},
48
+ "file-s": #{$file-s},
49
+ "file-background-l": #{$file-background-l},
50
+ "file-background-l-delta": #{$file-background-l-delta},
51
+ "file-hover-background-l-delta": #{$file-hover-background-l-delta},
52
+ "file-active-background-l-delta": #{$file-active-background-l-delta},
53
+ "file-border-l": #{$file-border-l},
54
+ "file-border-l-delta": #{$file-border-l-delta},
55
+ "file-hover-border-l-delta": #{$file-hover-border-l-delta},
56
+ "file-active-border-l-delta": #{$file-active-border-l-delta},
57
+ "file-cta-color-l": #{$file-cta-color-l},
58
+ "file-name-color-l": #{$file-name-color-l},
59
+ "file-color-l-delta": #{$file-color-l-delta},
60
+ "file-hover-color-l-delta": #{$file-hover-color-l-delta},
61
+ "file-active-color-l-delta": #{$file-active-color-l-delta},
62
+ )
63
+ );
64
+
65
+ align-items: stretch;
66
+ display: flex;
67
+ justify-content: flex-start;
68
+ position: relative;
69
+
70
+ // Colors
71
+ @each $name, $pair in $file-colors {
72
+ &.#{iv.$class-prefix}is-#{$name} {
73
+ @include cv.register-vars(
74
+ (
75
+ "file-h": #{cv.getVar($name, "", "-h")},
76
+ "file-s": #{cv.getVar($name, "", "-s")},
77
+ "file-background-l": #{cv.getVar($name, "", "-l")},
78
+ "file-border-l": #{cv.getVar($name, "", "-l")},
79
+ "file-cta-color-l": #{cv.getVar($name, "", "-invert-l")},
80
+ "file-name-color-l": #{cv.getVar($name, "", "-on-scheme-l")},
81
+ )
82
+ );
83
+ }
84
+ }
85
+
86
+ // Sizes
87
+ &.#{iv.$class-prefix}is-small {
88
+ font-size: cv.getVar("size-small");
89
+ }
90
+
91
+ &.#{iv.$class-prefix}is-normal {
92
+ font-size: cv.getVar("size-normal");
93
+ }
94
+
95
+ &.#{iv.$class-prefix}is-medium {
96
+ font-size: cv.getVar("size-medium");
97
+
98
+ .#{iv.$class-prefix}file-icon {
99
+ .#{iv.$class-prefix}fa {
100
+ font-size: 1.5rem;
101
+ }
102
+ }
103
+ }
104
+
105
+ &.#{iv.$class-prefix}is-large {
106
+ font-size: cv.getVar("size-large");
107
+
108
+ .#{iv.$class-prefix}file-icon {
109
+ .#{iv.$class-prefix}fa {
110
+ font-size: 2rem;
111
+ }
112
+ }
113
+ }
114
+
115
+ // Modifiers
116
+ &.#{iv.$class-prefix}has-name {
117
+ .#{iv.$class-prefix}file-cta {
118
+ border-end-end-radius: 0;
119
+ border-start-end-radius: 0;
120
+ }
121
+
122
+ .#{iv.$class-prefix}file-name {
123
+ border-end-start-radius: 0;
124
+ border-start-start-radius: 0;
125
+ }
126
+
127
+ &.#{iv.$class-prefix}is-empty {
128
+ .#{iv.$class-prefix}file-cta {
129
+ border-radius: cv.getVar("file-radius");
130
+ }
131
+
132
+ .#{iv.$class-prefix}file-name {
133
+ display: none;
134
+ }
135
+ }
136
+ }
137
+
138
+ &.#{iv.$class-prefix}is-boxed {
139
+ .#{iv.$class-prefix}file-label {
140
+ flex-direction: column;
141
+ }
142
+
143
+ .#{iv.$class-prefix}file-cta {
144
+ flex-direction: column;
145
+ height: auto;
146
+ padding: 1em 3em;
147
+ }
148
+
149
+ .#{iv.$class-prefix}file-name {
150
+ border-width: 0 1px 1px;
151
+ }
152
+
153
+ .#{iv.$class-prefix}file-icon {
154
+ height: 1.5em;
155
+ width: 1.5em;
156
+
157
+ .#{iv.$class-prefix}fa {
158
+ font-size: 1.5rem;
159
+ }
160
+ }
161
+
162
+ &.#{iv.$class-prefix}is-small {
163
+ .#{iv.$class-prefix}file-icon .#{iv.$class-prefix}fa {
164
+ font-size: 1rem;
165
+ }
166
+ }
167
+
168
+ &.#{iv.$class-prefix}is-medium {
169
+ .#{iv.$class-prefix}file-icon .#{iv.$class-prefix}fa {
170
+ font-size: 2rem;
171
+ }
172
+ }
173
+
174
+ &.#{iv.$class-prefix}is-large {
175
+ .#{iv.$class-prefix}file-icon .#{iv.$class-prefix}fa {
176
+ font-size: 2.5rem;
177
+ }
178
+ }
179
+
180
+ &.#{iv.$class-prefix}has-name {
181
+ .#{iv.$class-prefix}file-cta {
182
+ border-end-end-radius: 0;
183
+ border-end-start-radius: 0;
184
+ border-start-end-radius: cv.getVar("file-radius");
185
+ border-start-start-radius: cv.getVar("file-radius");
186
+ }
187
+
188
+ .#{iv.$class-prefix}file-name {
189
+ border-end-end-radius: cv.getVar("file-radius");
190
+ border-end-start-radius: cv.getVar("file-radius");
191
+ border-start-end-radius: 0;
192
+ border-start-start-radius: 0;
193
+ border-width: 0 1px 1px;
194
+ }
195
+ }
196
+ }
197
+
198
+ &.#{iv.$class-prefix}is-centered {
199
+ justify-content: center;
200
+ }
201
+
202
+ &.#{iv.$class-prefix}is-fullwidth {
203
+ .#{iv.$class-prefix}file-label {
204
+ width: 100%;
205
+ }
206
+
207
+ .#{iv.$class-prefix}file-name {
208
+ flex-grow: 1;
209
+ max-width: none;
210
+ }
211
+ }
212
+
213
+ &.#{iv.$class-prefix}is-right {
214
+ justify-content: flex-end;
215
+
216
+ .#{iv.$class-prefix}file-cta {
217
+ border-radius: 0 cv.getVar("file-radius") cv.getVar("file-radius") 0;
218
+ }
219
+
220
+ .#{iv.$class-prefix}file-name {
221
+ border-radius: cv.getVar("file-radius") 0 0 cv.getVar("file-radius");
222
+ border-width: 1px 0 1px 1px;
223
+ order: -1;
224
+ }
225
+ }
226
+ }
227
+
228
+ .#{iv.$class-prefix}file-label {
229
+ align-items: stretch;
230
+ display: flex;
231
+ cursor: pointer;
232
+ justify-content: flex-start;
233
+ overflow: hidden;
234
+ position: relative;
235
+
236
+ &:hover {
237
+ @include cv.register-vars(
238
+ (
239
+ "file-background-l-delta": #{cv.getVar("file-hover-background-l-delta")},
240
+ "file-border-l-delta": #{cv.getVar("file-hover-border-l-delta")},
241
+ "file-color-l-delta": #{cv.getVar("file-hover-color-l-delta")},
242
+ )
243
+ );
244
+ }
245
+
246
+ &:active {
247
+ @include cv.register-vars(
248
+ (
249
+ "file-background-l-delta": #{cv.getVar("file-active-background-l-delta")},
250
+ "file-border-l-delta": #{cv.getVar("file-active-border-l-delta")},
251
+ "file-color-l-delta": #{cv.getVar("file-active-color-l-delta")},
252
+ )
253
+ );
254
+ }
255
+ }
256
+
257
+ .#{iv.$class-prefix}file-input {
258
+ height: 100%;
259
+ left: 0;
260
+ opacity: 0;
261
+ outline: none;
262
+ position: absolute;
263
+ top: 0;
264
+ width: 100%;
265
+ }
266
+
267
+ .#{iv.$class-prefix}file-cta,
268
+ .#{iv.$class-prefix}file-name {
269
+ @extend %control;
270
+ border-color: hsl(
271
+ cv.getVar("file-h"),
272
+ cv.getVar("file-s"),
273
+ calc(#{cv.getVar("file-border-l")} + #{cv.getVar("file-border-l-delta")})
274
+ );
275
+ border-radius: cv.getVar("file-radius");
276
+ font-size: 1em;
277
+ padding-left: 1em;
278
+ padding-right: 1em;
279
+ white-space: nowrap;
280
+ }
281
+
282
+ .#{iv.$class-prefix}file-cta {
283
+ background-color: hsl(
284
+ cv.getVar("file-h"),
285
+ cv.getVar("file-s"),
286
+ calc(
287
+ #{cv.getVar("file-background-l")} + #{cv.getVar(
288
+ "file-background-l-delta"
289
+ )}
290
+ )
291
+ );
292
+ color: hsl(
293
+ cv.getVar("file-h"),
294
+ cv.getVar("file-s"),
295
+ calc(#{cv.getVar("file-cta-color-l")} + #{cv.getVar("file-color-l-delta")})
296
+ );
297
+ }
298
+
299
+ .#{iv.$class-prefix}file-name {
300
+ border-color: hsl(
301
+ cv.getVar("file-h"),
302
+ cv.getVar("file-s"),
303
+ calc(#{cv.getVar("file-border-l")} + #{cv.getVar("file-color-l-delta")})
304
+ );
305
+ border-style: cv.getVar("file-name-border-style");
306
+ border-width: cv.getVar("file-name-border-width");
307
+ color: hsl(
308
+ cv.getVar("file-h"),
309
+ cv.getVar("file-s"),
310
+ calc(#{cv.getVar("file-name-color-l")} + #{cv.getVar("file-color-l-delta")})
311
+ );
312
+ display: block;
313
+ max-width: cv.getVar("file-name-max-width");
314
+ overflow: hidden;
315
+ text-align: inherit;
316
+ text-overflow: ellipsis;
317
+ }
318
+
319
+ .#{iv.$class-prefix}file-icon {
320
+ align-items: center;
321
+ display: flex;
322
+ height: 1em;
323
+ justify-content: center;
324
+ margin-inline-end: 0.5em;
325
+ width: 1em;
326
+
327
+ .#{iv.$class-prefix}fa {
328
+ font-size: 1rem;
329
+ }
330
+ }
@@ -0,0 +1,113 @@
1
+ @use "shared";
2
+ @use "../utilities/css-variables" as cv;
3
+ @use "../utilities/initial-variables" as iv;
4
+ @use "../utilities/controls";
5
+
6
+ $textarea-padding: cv.getVar("control-padding-horizontal") !default;
7
+ $textarea-max-height: 40em !default;
8
+ $textarea-min-height: 8em !default;
9
+
10
+ $textarea-colors: shared.$form-colors !default;
11
+
12
+ %input-textarea {
13
+ @extend %input;
14
+
15
+ box-shadow: shared.$input-shadow;
16
+ max-width: 100%;
17
+ width: 100%;
18
+
19
+ &[readonly] {
20
+ box-shadow: none;
21
+ }
22
+
23
+ // Colors
24
+ @each $name, $pair in $textarea-colors {
25
+ $color: nth($pair, 1);
26
+
27
+ &.#{iv.$class-prefix}is-#{$name} {
28
+ @include cv.register-vars(
29
+ (
30
+ "input-h": #{cv.getVar($name, "", "-h")},
31
+ "input-s": #{cv.getVar($name, "", "-s")},
32
+ "input-l": #{cv.getVar($name, "", "-l")},
33
+ "input-focus-h": #{cv.getVar($name, "", "-h")},
34
+ "input-focus-s": #{cv.getVar($name, "", "-s")},
35
+ "input-focus-l": #{cv.getVar($name, "", "-l")},
36
+ "input-border-l": #{cv.getVar($name, "", "-l")},
37
+ )
38
+ );
39
+ }
40
+ }
41
+
42
+ // Sizes
43
+ &.#{iv.$class-prefix}is-small {
44
+ @include controls.control-small;
45
+ }
46
+
47
+ &.#{iv.$class-prefix}is-medium {
48
+ @include controls.control-medium;
49
+ }
50
+
51
+ &.#{iv.$class-prefix}is-large {
52
+ @include controls.control-large;
53
+ }
54
+
55
+ // Modifiers
56
+ &.#{iv.$class-prefix}is-fullwidth {
57
+ display: block;
58
+ width: 100%;
59
+ }
60
+
61
+ &.#{iv.$class-prefix}is-inline {
62
+ display: inline;
63
+ width: auto;
64
+ }
65
+ }
66
+
67
+ .#{iv.$class-prefix}input {
68
+ @extend %input-textarea;
69
+
70
+ &.#{iv.$class-prefix}is-rounded {
71
+ border-radius: cv.getVar("radius-rounded");
72
+ padding-left: calc(#{controls.$control-padding-horizontal} + 0.375em);
73
+ padding-right: calc(#{controls.$control-padding-horizontal} + 0.375em);
74
+ }
75
+
76
+ &.#{iv.$class-prefix}is-static {
77
+ background-color: transparent;
78
+ border-color: transparent;
79
+ box-shadow: none;
80
+ padding-left: 0;
81
+ padding-right: 0;
82
+ }
83
+ }
84
+
85
+ .#{iv.$class-prefix}textarea {
86
+ @extend %input-textarea;
87
+ @include cv.register-vars(
88
+ (
89
+ "textarea-padding": #{$textarea-padding},
90
+ "textarea-max-height": #{$textarea-max-height},
91
+ "textarea-min-height": #{$textarea-min-height},
92
+ )
93
+ );
94
+ display: block;
95
+ max-width: 100%;
96
+ min-width: 100%;
97
+ padding: cv.getVar("textarea-padding");
98
+ resize: vertical;
99
+
100
+ &:not([rows]) {
101
+ max-height: cv.getVar("textarea-max-height");
102
+ min-height: cv.getVar("textarea-min-height");
103
+ }
104
+
105
+ &[rows] {
106
+ height: initial;
107
+ }
108
+
109
+ // Modifiers
110
+ &.#{iv.$class-prefix}has-fixed-size {
111
+ resize: none;
112
+ }
113
+ }
@@ -0,0 +1,144 @@
1
+ @use "shared";
2
+ @use "../utilities/controls";
3
+ @use "../utilities/css-variables" as cv;
4
+ @use "../utilities/initial-variables" as iv;
5
+ @use "../utilities/extends";
6
+
7
+ $select-colors: shared.$form-colors !default;
8
+
9
+ .#{iv.$class-prefix}select {
10
+ @include cv.register-vars(
11
+ (
12
+ "input-h": #{cv.getVar("scheme-h")},
13
+ "input-s": #{cv.getVar("scheme-s")},
14
+ "input-border-style": solid,
15
+ "input-border-width": 1px,
16
+ "input-border-l": #{cv.getVar("border-l")},
17
+ )
18
+ );
19
+
20
+ display: inline-block;
21
+ max-width: 100%;
22
+ position: relative;
23
+ vertical-align: top;
24
+
25
+ &:not(.#{iv.$class-prefix}is-multiple) {
26
+ height: shared.$input-height;
27
+ }
28
+
29
+ &:not(.#{iv.$class-prefix}is-multiple):not(.#{iv.$class-prefix}is-loading) {
30
+ &::after {
31
+ @extend %arrow;
32
+ inset-inline-end: 1.125em;
33
+ z-index: 4;
34
+ }
35
+ }
36
+
37
+ &.#{iv.$class-prefix}is-rounded {
38
+ select {
39
+ border-radius: cv.getVar("radius-rounded");
40
+ padding-inline-start: 1em;
41
+ }
42
+ }
43
+
44
+ select {
45
+ @extend %input;
46
+ cursor: pointer;
47
+ display: block;
48
+ font-size: 1em;
49
+ max-width: 100%;
50
+ outline: none;
51
+
52
+ &::-ms-expand {
53
+ display: none;
54
+ }
55
+
56
+ &[disabled]:hover,
57
+ fieldset[disabled] &:hover {
58
+ border-color: shared.$input-disabled-border-color;
59
+ }
60
+
61
+ &:not([multiple]) {
62
+ padding-inline-end: 2.5em;
63
+ }
64
+
65
+ &[multiple] {
66
+ height: auto;
67
+ padding: 0;
68
+
69
+ option {
70
+ padding: 0.5em 1em;
71
+ }
72
+ }
73
+ }
74
+
75
+ // Colors
76
+ @each $name, $pair in $select-colors {
77
+ &.#{iv.$class-prefix}is-#{$name} {
78
+ @include cv.register-vars(
79
+ (
80
+ "input-h": #{cv.getVar($name, "", "-h")},
81
+ "input-s": #{cv.getVar($name, "", "-s")},
82
+ "input-l": #{cv.getVar($name, "", "-l")},
83
+ "input-focus-h": #{cv.getVar($name, "", "-h")},
84
+ "input-focus-s": #{cv.getVar($name, "", "-s")},
85
+ "input-focus-l": #{cv.getVar($name, "", "-l")},
86
+ "input-border-l": #{cv.getVar($name, "", "-l")},
87
+ "arrow-color": #{cv.getVar($name)},
88
+ )
89
+ );
90
+ }
91
+ }
92
+
93
+ // Sizes
94
+ &.#{iv.$class-prefix}is-small {
95
+ @include controls.control-small;
96
+ }
97
+
98
+ &.#{iv.$class-prefix}is-medium {
99
+ @include controls.control-medium;
100
+ }
101
+
102
+ &.#{iv.$class-prefix}is-large {
103
+ @include controls.control-large;
104
+ }
105
+
106
+ // Modifiers
107
+ &.#{iv.$class-prefix}is-disabled {
108
+ &::after {
109
+ border-color: shared.$input-disabled-color !important;
110
+ opacity: 0.5;
111
+ }
112
+ }
113
+
114
+ &.#{iv.$class-prefix}is-fullwidth {
115
+ width: 100%;
116
+
117
+ select {
118
+ width: 100%;
119
+ }
120
+ }
121
+
122
+ &.#{iv.$class-prefix}is-loading {
123
+ &::after {
124
+ @extend %loader;
125
+ inset-inline-end: 0.625em;
126
+ margin-top: 0;
127
+ position: absolute;
128
+ top: 0.625em;
129
+ transform: none;
130
+ }
131
+
132
+ &.#{iv.$class-prefix}is-small:after {
133
+ font-size: cv.getVar("size-small");
134
+ }
135
+
136
+ &.#{iv.$class-prefix}is-medium:after {
137
+ font-size: cv.getVar("size-medium");
138
+ }
139
+
140
+ &.#{iv.$class-prefix}is-large:after {
141
+ font-size: cv.getVar("size-large");
142
+ }
143
+ }
144
+ }