bulma-clean-theme 0.14.0 → 1.0.0.beta.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 (190) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/_includes/callouts.html +12 -5
  4. data/_includes/cookie-banner.html +1 -1
  5. data/_includes/hero.html +5 -3
  6. data/_includes/showcase.html +8 -6
  7. data/_layouts/default.html +1 -0
  8. data/_layouts/post.html +7 -3
  9. data/_sass/_main.scss +3 -2
  10. data/node_modules/.package-lock.json +211 -8
  11. data/node_modules/bulma/LICENSE +1 -1
  12. data/node_modules/bulma/README.md +56 -52
  13. data/node_modules/bulma/bulma.scss +4 -0
  14. data/node_modules/bulma/css/bulma.css +19282 -8696
  15. data/node_modules/bulma/css/bulma.css.map +1 -1
  16. data/node_modules/bulma/css/bulma.min.css +3 -1
  17. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  18. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map +1 -0
  19. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  20. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +1 -0
  21. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  22. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css.map +1 -0
  23. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +3 -0
  24. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  25. data/node_modules/bulma/package.json +25 -20
  26. data/node_modules/bulma/sass/_index.scss +10 -0
  27. data/node_modules/bulma/sass/base/_index.scss +6 -0
  28. data/node_modules/bulma/sass/base/animations.scss +15 -0
  29. data/node_modules/bulma/sass/base/generic.scss +239 -0
  30. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  31. data/node_modules/bulma/sass/base/skeleton.scss +126 -0
  32. data/node_modules/bulma/sass/components/_index.scss +13 -0
  33. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  34. data/node_modules/bulma/sass/components/card.scss +162 -0
  35. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  36. data/node_modules/bulma/sass/components/menu.scss +165 -0
  37. data/node_modules/bulma/sass/components/message.scss +183 -0
  38. data/node_modules/bulma/sass/components/modal.scss +164 -0
  39. data/node_modules/bulma/sass/components/navbar.scss +788 -0
  40. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  41. data/node_modules/bulma/sass/components/panel.scss +218 -0
  42. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  43. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  44. data/node_modules/bulma/sass/elements/block.scss +6 -0
  45. data/node_modules/bulma/sass/elements/box.scss +59 -0
  46. data/node_modules/bulma/sass/elements/button.scss +640 -0
  47. data/node_modules/bulma/sass/elements/content.scss +283 -0
  48. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  49. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  50. data/node_modules/bulma/sass/elements/image.scss +62 -0
  51. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  52. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  53. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  54. data/node_modules/bulma/sass/elements/table.scss +261 -0
  55. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  56. data/node_modules/bulma/sass/elements/title.scss +128 -0
  57. data/node_modules/bulma/sass/form/_index.scss +9 -0
  58. data/node_modules/bulma/sass/form/checkbox-radio.scss +32 -0
  59. data/node_modules/bulma/sass/form/file.scss +330 -0
  60. data/node_modules/bulma/sass/form/input-textarea.scss +123 -0
  61. data/node_modules/bulma/sass/form/select.scss +143 -0
  62. data/node_modules/bulma/sass/form/shared.scss +172 -0
  63. data/node_modules/bulma/sass/form/tools.scss +341 -0
  64. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  65. data/node_modules/bulma/sass/grid/columns-v2.scss +957 -0
  66. data/node_modules/bulma/sass/grid/columns.scss +877 -0
  67. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  68. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  69. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  70. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  71. data/node_modules/bulma/sass/helpers/color.scss +364 -0
  72. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  73. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  74. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  75. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  76. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  77. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  78. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  79. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  80. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  81. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  82. data/node_modules/bulma/sass/layout/container.scss +51 -0
  83. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  84. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  85. data/node_modules/bulma/sass/layout/level.scss +107 -0
  86. data/node_modules/bulma/sass/layout/media.scss +106 -0
  87. data/node_modules/bulma/sass/layout/section.scss +34 -0
  88. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  89. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  90. data/node_modules/bulma/sass/themes/light.scss +145 -0
  91. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  92. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  93. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  94. data/node_modules/bulma/sass/utilities/css-variables.scss +425 -0
  95. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  96. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  97. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  98. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  99. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  100. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +19 -0
  101. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  102. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  103. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  104. data/node_modules/bulma-block-list/README.md +12 -6
  105. data/node_modules/bulma-block-list/docs/.nojekyll +0 -0
  106. data/node_modules/bulma-block-list/docs/docs.css +22782 -0
  107. data/node_modules/bulma-block-list/docs/docs.css.map +1 -0
  108. data/node_modules/bulma-block-list/docs/index.html +376 -307
  109. data/node_modules/bulma-block-list/package.json +8 -3
  110. data/node_modules/bulma-block-list/src/block-list.scss +99 -125
  111. data/node_modules/bulma-block-list/src/docs.scss +5 -0
  112. data/package-lock.json +353 -16
  113. data/package.json +2 -2
  114. metadata +97 -82
  115. data/node_modules/bulma/bulma.sass +0 -10
  116. data/node_modules/bulma/css/bulma-rtl.css +0 -11851
  117. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  118. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  119. data/node_modules/bulma/sass/base/_all.sass +0 -6
  120. data/node_modules/bulma/sass/base/animations.sass +0 -5
  121. data/node_modules/bulma/sass/base/generic.sass +0 -145
  122. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  123. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  124. data/node_modules/bulma/sass/components/_all.sass +0 -15
  125. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  126. data/node_modules/bulma/sass/components/card.sass +0 -103
  127. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  128. data/node_modules/bulma/sass/components/level.sass +0 -79
  129. data/node_modules/bulma/sass/components/media.sass +0 -59
  130. data/node_modules/bulma/sass/components/menu.sass +0 -59
  131. data/node_modules/bulma/sass/components/message.sass +0 -101
  132. data/node_modules/bulma/sass/components/modal.sass +0 -117
  133. data/node_modules/bulma/sass/components/navbar.sass +0 -446
  134. data/node_modules/bulma/sass/components/pagination.sass +0 -167
  135. data/node_modules/bulma/sass/components/panel.sass +0 -121
  136. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  137. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  138. data/node_modules/bulma/sass/elements/box.sass +0 -26
  139. data/node_modules/bulma/sass/elements/button.sass +0 -357
  140. data/node_modules/bulma/sass/elements/container.sass +0 -29
  141. data/node_modules/bulma/sass/elements/content.sass +0 -162
  142. data/node_modules/bulma/sass/elements/form.sass +0 -1
  143. data/node_modules/bulma/sass/elements/icon.sass +0 -46
  144. data/node_modules/bulma/sass/elements/image.sass +0 -73
  145. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  146. data/node_modules/bulma/sass/elements/other.sass +0 -31
  147. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  148. data/node_modules/bulma/sass/elements/table.sass +0 -134
  149. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  150. data/node_modules/bulma/sass/elements/title.sass +0 -70
  151. data/node_modules/bulma/sass/form/_all.sass +0 -9
  152. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  153. data/node_modules/bulma/sass/form/file.sass +0 -184
  154. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  155. data/node_modules/bulma/sass/form/select.sass +0 -88
  156. data/node_modules/bulma/sass/form/shared.sass +0 -60
  157. data/node_modules/bulma/sass/form/tools.sass +0 -215
  158. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  159. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  160. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  161. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  162. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  163. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  164. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  165. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  166. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  167. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  168. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  169. data/node_modules/bulma/sass/helpers/typography.sass +0 -103
  170. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  171. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  172. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  173. data/node_modules/bulma/sass/layout/hero.sass +0 -153
  174. data/node_modules/bulma/sass/layout/section.sass +0 -17
  175. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  176. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  177. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  178. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -114
  179. data/node_modules/bulma/sass/utilities/extends.sass +0 -25
  180. data/node_modules/bulma/sass/utilities/functions.sass +0 -135
  181. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -79
  182. data/node_modules/bulma/sass/utilities/mixins.sass +0 -303
  183. data/node_modules/bulma-block-list/docs/Gemfile +0 -3
  184. data/node_modules/bulma-block-list/docs/_config.yml +0 -17
  185. data/node_modules/bulma-block-list/docs/_data/menu.yaml +0 -24
  186. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +0 -156
  187. data/node_modules/bulma-block-list/docs/_sass/_main.scss +0 -20
  188. data/node_modules/bulma-block-list/docs/assets/css/app.scss +0 -7
  189. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  190. data/node_modules/bulma-block-list/src/demo.scss +0 -3
@@ -1,52 +0,0 @@
1
- @import "../utilities/mixins"
2
-
3
- $notification-background-color: $background !default
4
- $notification-code-background-color: $scheme-main !default
5
- $notification-radius: $radius !default
6
- $notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default
7
- $notification-padding-ltr: 1.25rem 2.5rem 1.25rem 1.5rem !default
8
- $notification-padding-rtl: 1.25rem 1.5rem 1.25rem 2.5rem !default
9
-
10
- $notification-colors: $colors !default
11
-
12
- .notification
13
- @extend %block
14
- background-color: $notification-background-color
15
- border-radius: $notification-radius
16
- position: relative
17
- +ltr
18
- padding: $notification-padding-ltr
19
- +rtl
20
- padding: $notification-padding-rtl
21
- a:not(.button):not(.dropdown-item)
22
- color: currentColor
23
- text-decoration: underline
24
- strong
25
- color: currentColor
26
- code,
27
- pre
28
- background: $notification-code-background-color
29
- pre code
30
- background: transparent
31
- & > .delete
32
- +ltr-position(0.5rem)
33
- position: absolute
34
- top: 0.5rem
35
- .title,
36
- .subtitle,
37
- .content
38
- color: currentColor
39
- // Colors
40
- @each $name, $pair in $notification-colors
41
- $color: nth($pair, 1)
42
- $color-invert: nth($pair, 2)
43
- &.is-#{$name}
44
- background-color: $color
45
- color: $color-invert
46
- // If light and dark colors are provided
47
- @if length($pair) >= 4
48
- $color-light: nth($pair, 3)
49
- $color-dark: nth($pair, 4)
50
- &.is-light
51
- background-color: $color-light
52
- color: $color-dark
@@ -1,31 +0,0 @@
1
- @import "../utilities/mixins"
2
-
3
- .block
4
- @extend %block
5
-
6
- .delete
7
- @extend %delete
8
-
9
- .heading
10
- display: block
11
- font-size: 11px
12
- letter-spacing: 1px
13
- margin-bottom: 5px
14
- text-transform: uppercase
15
-
16
- .loader
17
- @extend %loader
18
-
19
- .number
20
- align-items: center
21
- background-color: $background
22
- border-radius: $radius-rounded
23
- display: inline-flex
24
- font-size: $size-medium
25
- height: 2em
26
- justify-content: center
27
- margin-right: 1.5rem
28
- min-width: 2.5em
29
- padding: 0.25rem 0.5rem
30
- text-align: center
31
- vertical-align: top
@@ -1,73 +0,0 @@
1
- @import "../utilities/mixins"
2
-
3
- $progress-bar-background-color: $border-light !default
4
- $progress-value-background-color: $text !default
5
- $progress-border-radius: $radius-rounded !default
6
-
7
- $progress-indeterminate-duration: 1.5s !default
8
-
9
- $progress-colors: $colors !default
10
-
11
- .progress
12
- @extend %block
13
- -moz-appearance: none
14
- -webkit-appearance: none
15
- border: none
16
- border-radius: $progress-border-radius
17
- display: block
18
- height: $size-normal
19
- overflow: hidden
20
- padding: 0
21
- width: 100%
22
- &::-webkit-progress-bar
23
- background-color: $progress-bar-background-color
24
- &::-webkit-progress-value
25
- background-color: $progress-value-background-color
26
- &::-moz-progress-bar
27
- background-color: $progress-value-background-color
28
- &::-ms-fill
29
- background-color: $progress-value-background-color
30
- border: none
31
- // Colors
32
- @each $name, $pair in $progress-colors
33
- $color: nth($pair, 1)
34
- &.is-#{$name}
35
- &::-webkit-progress-value
36
- background-color: $color
37
- &::-moz-progress-bar
38
- background-color: $color
39
- &::-ms-fill
40
- background-color: $color
41
- &:indeterminate
42
- background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%)
43
-
44
- &:indeterminate
45
- animation-duration: $progress-indeterminate-duration
46
- animation-iteration-count: infinite
47
- animation-name: moveIndeterminate
48
- animation-timing-function: linear
49
- background-color: $progress-bar-background-color
50
- background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%)
51
- background-position: top left
52
- background-repeat: no-repeat
53
- background-size: 150% 150%
54
- &::-webkit-progress-bar
55
- background-color: transparent
56
- &::-moz-progress-bar
57
- background-color: transparent
58
- &::-ms-fill
59
- animation-name: none
60
-
61
- // Sizes
62
- &.is-small
63
- height: $size-small
64
- &.is-medium
65
- height: $size-medium
66
- &.is-large
67
- height: $size-large
68
-
69
- @keyframes moveIndeterminate
70
- from
71
- background-position: 200% 0
72
- to
73
- background-position: -200% 0
@@ -1,134 +0,0 @@
1
- @import "../utilities/mixins"
2
-
3
- $table-color: $text-strong !default
4
- $table-background-color: $scheme-main !default
5
-
6
- $table-cell-border: 1px solid $border !default
7
- $table-cell-border-width: 0 0 1px !default
8
- $table-cell-padding: 0.5em 0.75em !default
9
- $table-cell-heading-color: $text-strong !default
10
- $table-cell-text-align: left !default
11
-
12
- $table-head-cell-border-width: 0 0 2px !default
13
- $table-head-cell-color: $text-strong !default
14
- $table-foot-cell-border-width: 2px 0 0 !default
15
- $table-foot-cell-color: $text-strong !default
16
-
17
- $table-head-background-color: transparent !default
18
- $table-body-background-color: transparent !default
19
- $table-foot-background-color: transparent !default
20
-
21
- $table-row-hover-background-color: $scheme-main-bis !default
22
-
23
- $table-row-active-background-color: $primary !default
24
- $table-row-active-color: $primary-invert !default
25
-
26
- $table-striped-row-even-background-color: $scheme-main-bis !default
27
- $table-striped-row-even-hover-background-color: $scheme-main-ter !default
28
-
29
- $table-colors: $colors !default
30
-
31
- .table
32
- @extend %block
33
- background-color: $table-background-color
34
- color: $table-color
35
- td,
36
- th
37
- border: $table-cell-border
38
- border-width: $table-cell-border-width
39
- padding: $table-cell-padding
40
- vertical-align: top
41
- // Colors
42
- @each $name, $pair in $table-colors
43
- $color: nth($pair, 1)
44
- $color-invert: nth($pair, 2)
45
- &.is-#{$name}
46
- background-color: $color
47
- border-color: $color
48
- color: $color-invert
49
- // Modifiers
50
- &.is-narrow
51
- white-space: nowrap
52
- width: 1%
53
- &.is-selected
54
- background-color: $table-row-active-background-color
55
- color: $table-row-active-color
56
- a,
57
- strong
58
- color: currentColor
59
- &.is-vcentered
60
- vertical-align: middle
61
- th
62
- color: $table-cell-heading-color
63
- &:not([align])
64
- text-align: $table-cell-text-align
65
- tr
66
- &.is-selected
67
- background-color: $table-row-active-background-color
68
- color: $table-row-active-color
69
- a,
70
- strong
71
- color: currentColor
72
- td,
73
- th
74
- border-color: $table-row-active-color
75
- color: currentColor
76
- thead
77
- background-color: $table-head-background-color
78
- td,
79
- th
80
- border-width: $table-head-cell-border-width
81
- color: $table-head-cell-color
82
- tfoot
83
- background-color: $table-foot-background-color
84
- td,
85
- th
86
- border-width: $table-foot-cell-border-width
87
- color: $table-foot-cell-color
88
- tbody
89
- background-color: $table-body-background-color
90
- tr
91
- &:last-child
92
- td,
93
- th
94
- border-bottom-width: 0
95
- // Modifiers
96
- &.is-bordered
97
- td,
98
- th
99
- border-width: 1px
100
- tr
101
- &:last-child
102
- td,
103
- th
104
- border-bottom-width: 1px
105
- &.is-fullwidth
106
- width: 100%
107
- &.is-hoverable
108
- tbody
109
- tr:not(.is-selected)
110
- &:hover
111
- background-color: $table-row-hover-background-color
112
- &.is-striped
113
- tbody
114
- tr:not(.is-selected)
115
- &:hover
116
- background-color: $table-row-hover-background-color
117
- &:nth-child(even)
118
- background-color: $table-striped-row-even-hover-background-color
119
- &.is-narrow
120
- td,
121
- th
122
- padding: 0.25em 0.5em
123
- &.is-striped
124
- tbody
125
- tr:not(.is-selected)
126
- &:nth-child(even)
127
- background-color: $table-striped-row-even-background-color
128
-
129
- .table-container
130
- @extend %block
131
- +overflow-touch
132
- overflow: auto
133
- overflow-y: hidden
134
- max-width: 100%
@@ -1,140 +0,0 @@
1
- @import "../utilities/mixins"
2
-
3
- $tag-background-color: $background !default
4
- $tag-color: $text !default
5
- $tag-radius: $radius !default
6
- $tag-delete-margin: 1px !default
7
-
8
- $tag-colors: $colors !default
9
-
10
- .tags
11
- align-items: center
12
- display: flex
13
- flex-wrap: wrap
14
- justify-content: flex-start
15
- .tag
16
- margin-bottom: 0.5rem
17
- &:not(:last-child)
18
- +ltr-property("margin", 0.5rem)
19
- &:last-child
20
- margin-bottom: -0.5rem
21
- &:not(:last-child)
22
- margin-bottom: 1rem
23
- // Sizes
24
- &.are-medium
25
- .tag:not(.is-normal):not(.is-large)
26
- font-size: $size-normal
27
- &.are-large
28
- .tag:not(.is-normal):not(.is-medium)
29
- font-size: $size-medium
30
- &.is-centered
31
- justify-content: center
32
- .tag
33
- margin-right: 0.25rem
34
- margin-left: 0.25rem
35
- &.is-right
36
- justify-content: flex-end
37
- .tag
38
- &:not(:first-child)
39
- margin-left: 0.5rem
40
- &:not(:last-child)
41
- margin-right: 0
42
- &.has-addons
43
- .tag
44
- +ltr-property("margin", 0)
45
- &:not(:first-child)
46
- +ltr-property("margin", 0, false)
47
- +ltr
48
- border-top-left-radius: 0
49
- border-bottom-left-radius: 0
50
- +rtl
51
- border-top-right-radius: 0
52
- border-bottom-right-radius: 0
53
- &:not(:last-child)
54
- +ltr
55
- border-top-right-radius: 0
56
- border-bottom-right-radius: 0
57
- +rtl
58
- border-top-left-radius: 0
59
- border-bottom-left-radius: 0
60
-
61
- .tag:not(body)
62
- align-items: center
63
- background-color: $tag-background-color
64
- border-radius: $tag-radius
65
- color: $tag-color
66
- display: inline-flex
67
- font-size: $size-small
68
- height: 2em
69
- justify-content: center
70
- line-height: 1.5
71
- padding-left: 0.75em
72
- padding-right: 0.75em
73
- white-space: nowrap
74
- .delete
75
- +ltr-property("margin", 0.25rem, false)
76
- +ltr-property("margin", -0.375rem)
77
- // Colors
78
- @each $name, $pair in $tag-colors
79
- $color: nth($pair, 1)
80
- $color-invert: nth($pair, 2)
81
- &.is-#{$name}
82
- background-color: $color
83
- color: $color-invert
84
- // If a light and dark colors are provided
85
- @if length($pair) > 3
86
- $color-light: nth($pair, 3)
87
- $color-dark: nth($pair, 4)
88
- &.is-light
89
- background-color: $color-light
90
- color: $color-dark
91
- // Sizes
92
- &.is-normal
93
- font-size: $size-small
94
- &.is-medium
95
- font-size: $size-normal
96
- &.is-large
97
- font-size: $size-medium
98
- .icon
99
- &:first-child:not(:last-child)
100
- +ltr-property("margin", -0.375em, false)
101
- +ltr-property("margin", 0.1875em)
102
- &:last-child:not(:first-child)
103
- +ltr-property("margin", 0.1875em, false)
104
- +ltr-property("margin", -0.375em)
105
- &:first-child:last-child
106
- +ltr-property("margin", -0.375em, false)
107
- +ltr-property("margin", -0.375em)
108
- // Modifiers
109
- &.is-delete
110
- +ltr-property("margin", $tag-delete-margin, false)
111
- padding: 0
112
- position: relative
113
- width: 2em
114
- &::before,
115
- &::after
116
- background-color: currentColor
117
- content: ""
118
- display: block
119
- left: 50%
120
- position: absolute
121
- top: 50%
122
- transform: translateX(-50%) translateY(-50%) rotate(45deg)
123
- transform-origin: center center
124
- &::before
125
- height: 1px
126
- width: 50%
127
- &::after
128
- height: 50%
129
- width: 1px
130
- &:hover,
131
- &:focus
132
- background-color: darken($tag-background-color, 5%)
133
- &:active
134
- background-color: darken($tag-background-color, 10%)
135
- &.is-rounded
136
- border-radius: $radius-rounded
137
-
138
- a.tag
139
- &:hover
140
- text-decoration: underline
@@ -1,70 +0,0 @@
1
- @import "../utilities/mixins"
2
-
3
- $title-color: $text-strong !default
4
- $title-family: false !default
5
- $title-size: $size-3 !default
6
- $title-weight: $weight-semibold !default
7
- $title-line-height: 1.125 !default
8
- $title-strong-color: inherit !default
9
- $title-strong-weight: inherit !default
10
- $title-sub-size: 0.75em !default
11
- $title-sup-size: 0.75em !default
12
-
13
- $subtitle-color: $text !default
14
- $subtitle-family: false !default
15
- $subtitle-size: $size-5 !default
16
- $subtitle-weight: $weight-normal !default
17
- $subtitle-line-height: 1.25 !default
18
- $subtitle-strong-color: $text-strong !default
19
- $subtitle-strong-weight: $weight-semibold !default
20
- $subtitle-negative-margin: -1.25rem !default
21
-
22
- .title,
23
- .subtitle
24
- @extend %block
25
- word-break: break-word
26
- em,
27
- span
28
- font-weight: inherit
29
- sub
30
- font-size: $title-sub-size
31
- sup
32
- font-size: $title-sup-size
33
- .tag
34
- vertical-align: middle
35
-
36
- .title
37
- color: $title-color
38
- @if $title-family
39
- font-family: $title-family
40
- font-size: $title-size
41
- font-weight: $title-weight
42
- line-height: $title-line-height
43
- strong
44
- color: $title-strong-color
45
- font-weight: $title-strong-weight
46
- &:not(.is-spaced) + .subtitle
47
- margin-top: $subtitle-negative-margin
48
- // Sizes
49
- @each $size in $sizes
50
- $i: index($sizes, $size)
51
- &.is-#{$i}
52
- font-size: $size
53
-
54
- .subtitle
55
- color: $subtitle-color
56
- @if $subtitle-family
57
- font-family: $subtitle-family
58
- font-size: $subtitle-size
59
- font-weight: $subtitle-weight
60
- line-height: $subtitle-line-height
61
- strong
62
- color: $subtitle-strong-color
63
- font-weight: $subtitle-strong-weight
64
- &:not(.is-spaced) + .title
65
- margin-top: $subtitle-negative-margin
66
- // Sizes
67
- @each $size in $sizes
68
- $i: index($sizes, $size)
69
- &.is-#{$i}
70
- font-size: $size
@@ -1,9 +0,0 @@
1
- /* Bulma Form */
2
- @charset "utf-8"
3
-
4
- @import "shared"
5
- @import "input-textarea"
6
- @import "checkbox-radio"
7
- @import "select"
8
- @import "file"
9
- @import "tools"
@@ -1,22 +0,0 @@
1
- %checkbox-radio
2
- cursor: pointer
3
- display: inline-block
4
- line-height: 1.25
5
- position: relative
6
- input
7
- cursor: pointer
8
- &:hover
9
- color: $input-hover-color
10
- &[disabled],
11
- fieldset[disabled] &,
12
- input[disabled]
13
- color: $input-disabled-color
14
- cursor: not-allowed
15
-
16
- .checkbox
17
- @extend %checkbox-radio
18
-
19
- .radio
20
- @extend %checkbox-radio
21
- & + .radio
22
- +ltr-property("margin", 0.5em, false)