bulma-sass-rails 0.9.3
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.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/README.md +43 -0
- data/app/assets/stylesheets/bulma-rtl.sass +3 -0
- data/app/assets/stylesheets/bulma.sass +10 -0
- data/app/assets/stylesheets/sass/base/_all.sass +6 -0
- data/app/assets/stylesheets/sass/base/animations.sass +5 -0
- data/app/assets/stylesheets/sass/base/generic.sass +145 -0
- data/app/assets/stylesheets/sass/base/helpers.sass +1 -0
- data/app/assets/stylesheets/sass/base/minireset.sass +79 -0
- data/app/assets/stylesheets/sass/components/_all.sass +15 -0
- data/app/assets/stylesheets/sass/components/breadcrumb.sass +77 -0
- data/app/assets/stylesheets/sass/components/card.sass +103 -0
- data/app/assets/stylesheets/sass/components/dropdown.sass +83 -0
- data/app/assets/stylesheets/sass/components/level.sass +79 -0
- data/app/assets/stylesheets/sass/components/media.sass +59 -0
- data/app/assets/stylesheets/sass/components/menu.sass +59 -0
- data/app/assets/stylesheets/sass/components/message.sass +101 -0
- data/app/assets/stylesheets/sass/components/modal.sass +117 -0
- data/app/assets/stylesheets/sass/components/navbar.sass +446 -0
- data/app/assets/stylesheets/sass/components/pagination.sass +167 -0
- data/app/assets/stylesheets/sass/components/panel.sass +121 -0
- data/app/assets/stylesheets/sass/components/tabs.sass +176 -0
- data/app/assets/stylesheets/sass/elements/_all.sass +16 -0
- data/app/assets/stylesheets/sass/elements/box.sass +26 -0
- data/app/assets/stylesheets/sass/elements/button.sass +345 -0
- data/app/assets/stylesheets/sass/elements/container.sass +29 -0
- data/app/assets/stylesheets/sass/elements/content.sass +159 -0
- data/app/assets/stylesheets/sass/elements/form.sass +1 -0
- data/app/assets/stylesheets/sass/elements/icon.sass +46 -0
- data/app/assets/stylesheets/sass/elements/image.sass +73 -0
- data/app/assets/stylesheets/sass/elements/notification.sass +52 -0
- data/app/assets/stylesheets/sass/elements/other.sass +31 -0
- data/app/assets/stylesheets/sass/elements/progress.sass +73 -0
- data/app/assets/stylesheets/sass/elements/table.sass +133 -0
- data/app/assets/stylesheets/sass/elements/tag.sass +140 -0
- data/app/assets/stylesheets/sass/elements/title.sass +70 -0
- data/app/assets/stylesheets/sass/form/_all.sass +9 -0
- data/app/assets/stylesheets/sass/form/checkbox-radio.sass +22 -0
- data/app/assets/stylesheets/sass/form/file.sass +184 -0
- data/app/assets/stylesheets/sass/form/input-textarea.sass +66 -0
- data/app/assets/stylesheets/sass/form/select.sass +87 -0
- data/app/assets/stylesheets/sass/form/shared.sass +60 -0
- data/app/assets/stylesheets/sass/form/tools.sass +215 -0
- data/app/assets/stylesheets/sass/grid/_all.sass +5 -0
- data/app/assets/stylesheets/sass/grid/columns.sass +513 -0
- data/app/assets/stylesheets/sass/grid/tiles.sass +36 -0
- data/app/assets/stylesheets/sass/helpers/_all.sass +12 -0
- data/app/assets/stylesheets/sass/helpers/color.sass +39 -0
- data/app/assets/stylesheets/sass/helpers/flexbox.sass +35 -0
- data/app/assets/stylesheets/sass/helpers/float.sass +10 -0
- data/app/assets/stylesheets/sass/helpers/other.sass +14 -0
- data/app/assets/stylesheets/sass/helpers/overflow.sass +2 -0
- data/app/assets/stylesheets/sass/helpers/position.sass +7 -0
- data/app/assets/stylesheets/sass/helpers/spacing.sass +31 -0
- data/app/assets/stylesheets/sass/helpers/typography.sass +103 -0
- data/app/assets/stylesheets/sass/helpers/visibility.sass +122 -0
- data/app/assets/stylesheets/sass/layout/_all.sass +6 -0
- data/app/assets/stylesheets/sass/layout/footer.sass +11 -0
- data/app/assets/stylesheets/sass/layout/hero.sass +153 -0
- data/app/assets/stylesheets/sass/layout/section.sass +17 -0
- data/app/assets/stylesheets/sass/utilities/_all.sass +9 -0
- data/app/assets/stylesheets/sass/utilities/animations.sass +1 -0
- data/app/assets/stylesheets/sass/utilities/controls.sass +49 -0
- data/app/assets/stylesheets/sass/utilities/derived-variables.sass +114 -0
- data/app/assets/stylesheets/sass/utilities/extends.sass +25 -0
- data/app/assets/stylesheets/sass/utilities/functions.sass +135 -0
- data/app/assets/stylesheets/sass/utilities/initial-variables.sass +78 -0
- data/app/assets/stylesheets/sass/utilities/mixins.sass +284 -0
- data/bulma-sass-rails.gemspec +18 -0
- data/lib/bulma/engine.rb +4 -0
- data/lib/bulma/version.rb +3 -0
- data/lib/bulma-sass-rails.rb +5 -0
- metadata +130 -0
@@ -0,0 +1,70 @@
|
|
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
|
@@ -0,0 +1,22 @@
|
|
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)
|
@@ -0,0 +1,184 @@
|
|
1
|
+
$file-border-color: $border !default
|
2
|
+
$file-radius: $radius !default
|
3
|
+
|
4
|
+
$file-cta-background-color: $scheme-main-ter !default
|
5
|
+
$file-cta-color: $text !default
|
6
|
+
$file-cta-hover-color: $text-strong !default
|
7
|
+
$file-cta-active-color: $text-strong !default
|
8
|
+
|
9
|
+
$file-name-border-color: $border !default
|
10
|
+
$file-name-border-style: solid !default
|
11
|
+
$file-name-border-width: 1px 1px 1px 0 !default
|
12
|
+
$file-name-max-width: 16em !default
|
13
|
+
|
14
|
+
$file-colors: $form-colors !default
|
15
|
+
|
16
|
+
.file
|
17
|
+
@extend %unselectable
|
18
|
+
align-items: stretch
|
19
|
+
display: flex
|
20
|
+
justify-content: flex-start
|
21
|
+
position: relative
|
22
|
+
// Colors
|
23
|
+
@each $name, $pair in $file-colors
|
24
|
+
$color: nth($pair, 1)
|
25
|
+
$color-invert: nth($pair, 2)
|
26
|
+
&.is-#{$name}
|
27
|
+
.file-cta
|
28
|
+
background-color: $color
|
29
|
+
border-color: transparent
|
30
|
+
color: $color-invert
|
31
|
+
&:hover,
|
32
|
+
&.is-hovered
|
33
|
+
.file-cta
|
34
|
+
background-color: bulmaDarken($color, 2.5%)
|
35
|
+
border-color: transparent
|
36
|
+
color: $color-invert
|
37
|
+
&:focus,
|
38
|
+
&.is-focused
|
39
|
+
.file-cta
|
40
|
+
border-color: transparent
|
41
|
+
box-shadow: 0 0 0.5em bulmaRgba($color, 0.25)
|
42
|
+
color: $color-invert
|
43
|
+
&:active,
|
44
|
+
&.is-active
|
45
|
+
.file-cta
|
46
|
+
background-color: bulmaDarken($color, 5%)
|
47
|
+
border-color: transparent
|
48
|
+
color: $color-invert
|
49
|
+
// Sizes
|
50
|
+
&.is-small
|
51
|
+
font-size: $size-small
|
52
|
+
&.is-normal
|
53
|
+
font-size: $size-normal
|
54
|
+
&.is-medium
|
55
|
+
font-size: $size-medium
|
56
|
+
.file-icon
|
57
|
+
.fa
|
58
|
+
font-size: 21px
|
59
|
+
&.is-large
|
60
|
+
font-size: $size-large
|
61
|
+
.file-icon
|
62
|
+
.fa
|
63
|
+
font-size: 28px
|
64
|
+
// Modifiers
|
65
|
+
&.has-name
|
66
|
+
.file-cta
|
67
|
+
border-bottom-right-radius: 0
|
68
|
+
border-top-right-radius: 0
|
69
|
+
.file-name
|
70
|
+
border-bottom-left-radius: 0
|
71
|
+
border-top-left-radius: 0
|
72
|
+
&.is-empty
|
73
|
+
.file-cta
|
74
|
+
border-radius: $file-radius
|
75
|
+
.file-name
|
76
|
+
display: none
|
77
|
+
&.is-boxed
|
78
|
+
.file-label
|
79
|
+
flex-direction: column
|
80
|
+
.file-cta
|
81
|
+
flex-direction: column
|
82
|
+
height: auto
|
83
|
+
padding: 1em 3em
|
84
|
+
.file-name
|
85
|
+
border-width: 0 1px 1px
|
86
|
+
.file-icon
|
87
|
+
height: 1.5em
|
88
|
+
width: 1.5em
|
89
|
+
.fa
|
90
|
+
font-size: 21px
|
91
|
+
&.is-small
|
92
|
+
.file-icon .fa
|
93
|
+
font-size: 14px
|
94
|
+
&.is-medium
|
95
|
+
.file-icon .fa
|
96
|
+
font-size: 28px
|
97
|
+
&.is-large
|
98
|
+
.file-icon .fa
|
99
|
+
font-size: 35px
|
100
|
+
&.has-name
|
101
|
+
.file-cta
|
102
|
+
border-radius: $file-radius $file-radius 0 0
|
103
|
+
.file-name
|
104
|
+
border-radius: 0 0 $file-radius $file-radius
|
105
|
+
border-width: 0 1px 1px
|
106
|
+
&.is-centered
|
107
|
+
justify-content: center
|
108
|
+
&.is-fullwidth
|
109
|
+
.file-label
|
110
|
+
width: 100%
|
111
|
+
.file-name
|
112
|
+
flex-grow: 1
|
113
|
+
max-width: none
|
114
|
+
&.is-right
|
115
|
+
justify-content: flex-end
|
116
|
+
.file-cta
|
117
|
+
border-radius: 0 $file-radius $file-radius 0
|
118
|
+
.file-name
|
119
|
+
border-radius: $file-radius 0 0 $file-radius
|
120
|
+
border-width: 1px 0 1px 1px
|
121
|
+
order: -1
|
122
|
+
|
123
|
+
.file-label
|
124
|
+
align-items: stretch
|
125
|
+
display: flex
|
126
|
+
cursor: pointer
|
127
|
+
justify-content: flex-start
|
128
|
+
overflow: hidden
|
129
|
+
position: relative
|
130
|
+
&:hover
|
131
|
+
.file-cta
|
132
|
+
background-color: bulmaDarken($file-cta-background-color, 2.5%)
|
133
|
+
color: $file-cta-hover-color
|
134
|
+
.file-name
|
135
|
+
border-color: bulmaDarken($file-name-border-color, 2.5%)
|
136
|
+
&:active
|
137
|
+
.file-cta
|
138
|
+
background-color: bulmaDarken($file-cta-background-color, 5%)
|
139
|
+
color: $file-cta-active-color
|
140
|
+
.file-name
|
141
|
+
border-color: bulmaDarken($file-name-border-color, 5%)
|
142
|
+
|
143
|
+
.file-input
|
144
|
+
height: 100%
|
145
|
+
left: 0
|
146
|
+
opacity: 0
|
147
|
+
outline: none
|
148
|
+
position: absolute
|
149
|
+
top: 0
|
150
|
+
width: 100%
|
151
|
+
|
152
|
+
.file-cta,
|
153
|
+
.file-name
|
154
|
+
@extend %control
|
155
|
+
border-color: $file-border-color
|
156
|
+
border-radius: $file-radius
|
157
|
+
font-size: 1em
|
158
|
+
padding-left: 1em
|
159
|
+
padding-right: 1em
|
160
|
+
white-space: nowrap
|
161
|
+
|
162
|
+
.file-cta
|
163
|
+
background-color: $file-cta-background-color
|
164
|
+
color: $file-cta-color
|
165
|
+
|
166
|
+
.file-name
|
167
|
+
border-color: $file-name-border-color
|
168
|
+
border-style: $file-name-border-style
|
169
|
+
border-width: $file-name-border-width
|
170
|
+
display: block
|
171
|
+
max-width: $file-name-max-width
|
172
|
+
overflow: hidden
|
173
|
+
text-align: inherit
|
174
|
+
text-overflow: ellipsis
|
175
|
+
|
176
|
+
.file-icon
|
177
|
+
align-items: center
|
178
|
+
display: flex
|
179
|
+
height: 1em
|
180
|
+
justify-content: center
|
181
|
+
+ltr-property("margin", 0.5em)
|
182
|
+
width: 1em
|
183
|
+
.fa
|
184
|
+
font-size: 14px
|
@@ -0,0 +1,66 @@
|
|
1
|
+
$textarea-padding: $control-padding-horizontal !default
|
2
|
+
$textarea-max-height: 40em !default
|
3
|
+
$textarea-min-height: 8em !default
|
4
|
+
|
5
|
+
$textarea-colors: $form-colors !default
|
6
|
+
|
7
|
+
%input-textarea
|
8
|
+
@extend %input
|
9
|
+
box-shadow: $input-shadow
|
10
|
+
max-width: 100%
|
11
|
+
width: 100%
|
12
|
+
&[readonly]
|
13
|
+
box-shadow: none
|
14
|
+
// Colors
|
15
|
+
@each $name, $pair in $textarea-colors
|
16
|
+
$color: nth($pair, 1)
|
17
|
+
&.is-#{$name}
|
18
|
+
border-color: $color
|
19
|
+
&:focus,
|
20
|
+
&.is-focused,
|
21
|
+
&:active,
|
22
|
+
&.is-active
|
23
|
+
box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25)
|
24
|
+
// Sizes
|
25
|
+
&.is-small
|
26
|
+
+control-small
|
27
|
+
&.is-medium
|
28
|
+
+control-medium
|
29
|
+
&.is-large
|
30
|
+
+control-large
|
31
|
+
// Modifiers
|
32
|
+
&.is-fullwidth
|
33
|
+
display: block
|
34
|
+
width: 100%
|
35
|
+
&.is-inline
|
36
|
+
display: inline
|
37
|
+
width: auto
|
38
|
+
|
39
|
+
.input
|
40
|
+
@extend %input-textarea
|
41
|
+
&.is-rounded
|
42
|
+
border-radius: $radius-rounded
|
43
|
+
padding-left: calc(#{$control-padding-horizontal} + 0.375em)
|
44
|
+
padding-right: calc(#{$control-padding-horizontal} + 0.375em)
|
45
|
+
&.is-static
|
46
|
+
background-color: transparent
|
47
|
+
border-color: transparent
|
48
|
+
box-shadow: none
|
49
|
+
padding-left: 0
|
50
|
+
padding-right: 0
|
51
|
+
|
52
|
+
.textarea
|
53
|
+
@extend %input-textarea
|
54
|
+
display: block
|
55
|
+
max-width: 100%
|
56
|
+
min-width: 100%
|
57
|
+
padding: $textarea-padding
|
58
|
+
resize: vertical
|
59
|
+
&:not([rows])
|
60
|
+
max-height: $textarea-max-height
|
61
|
+
min-height: $textarea-min-height
|
62
|
+
&[rows]
|
63
|
+
height: initial
|
64
|
+
// Modifiers
|
65
|
+
&.has-fixed-size
|
66
|
+
resize: none
|
@@ -0,0 +1,87 @@
|
|
1
|
+
$select-colors: $form-colors !default
|
2
|
+
|
3
|
+
.select
|
4
|
+
display: inline-block
|
5
|
+
max-width: 100%
|
6
|
+
position: relative
|
7
|
+
vertical-align: top
|
8
|
+
&:not(.is-multiple)
|
9
|
+
height: $input-height
|
10
|
+
&:not(.is-multiple):not(.is-loading)
|
11
|
+
&::after
|
12
|
+
@extend %arrow
|
13
|
+
border-color: $input-arrow
|
14
|
+
+ltr-position(1.125em)
|
15
|
+
z-index: 4
|
16
|
+
&.is-rounded
|
17
|
+
select
|
18
|
+
border-radius: $radius-rounded
|
19
|
+
+ltr-property("padding", 1em, false)
|
20
|
+
select
|
21
|
+
@extend %input
|
22
|
+
cursor: pointer
|
23
|
+
display: block
|
24
|
+
font-size: 1em
|
25
|
+
max-width: 100%
|
26
|
+
outline: none
|
27
|
+
&::-ms-expand
|
28
|
+
display: none
|
29
|
+
&[disabled]:hover,
|
30
|
+
fieldset[disabled] &:hover
|
31
|
+
border-color: $input-disabled-border-color
|
32
|
+
&:not([multiple])
|
33
|
+
+ltr-property("padding", 2.5em)
|
34
|
+
&[multiple]
|
35
|
+
height: auto
|
36
|
+
padding: 0
|
37
|
+
option
|
38
|
+
padding: 0.5em 1em
|
39
|
+
// States
|
40
|
+
&:not(.is-multiple):not(.is-loading):hover
|
41
|
+
&::after
|
42
|
+
border-color: $input-hover-color
|
43
|
+
// Colors
|
44
|
+
@each $name, $pair in $select-colors
|
45
|
+
$color: nth($pair, 1)
|
46
|
+
&.is-#{$name}
|
47
|
+
&:not(:hover)::after
|
48
|
+
border-color: $color
|
49
|
+
select
|
50
|
+
border-color: $color
|
51
|
+
&:hover,
|
52
|
+
&.is-hovered
|
53
|
+
border-color: bulmaDarken($color, 5%)
|
54
|
+
&:focus,
|
55
|
+
&.is-focused,
|
56
|
+
&:active,
|
57
|
+
&.is-active
|
58
|
+
box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25)
|
59
|
+
// Sizes
|
60
|
+
&.is-small
|
61
|
+
+control-small
|
62
|
+
&.is-medium
|
63
|
+
+control-medium
|
64
|
+
&.is-large
|
65
|
+
+control-large
|
66
|
+
// Modifiers
|
67
|
+
&.is-disabled
|
68
|
+
&::after
|
69
|
+
border-color: $input-disabled-color
|
70
|
+
&.is-fullwidth
|
71
|
+
width: 100%
|
72
|
+
select
|
73
|
+
width: 100%
|
74
|
+
&.is-loading
|
75
|
+
&::after
|
76
|
+
@extend %loader
|
77
|
+
margin-top: 0
|
78
|
+
position: absolute
|
79
|
+
+ltr-position(0.625em)
|
80
|
+
top: 0.625em
|
81
|
+
transform: none
|
82
|
+
&.is-small:after
|
83
|
+
font-size: $size-small
|
84
|
+
&.is-medium:after
|
85
|
+
font-size: $size-medium
|
86
|
+
&.is-large:after
|
87
|
+
font-size: $size-large
|
@@ -0,0 +1,60 @@
|
|
1
|
+
@import "../utilities/controls"
|
2
|
+
@import "../utilities/mixins"
|
3
|
+
|
4
|
+
$form-colors: $colors !default
|
5
|
+
|
6
|
+
$input-color: $text-strong !default
|
7
|
+
$input-background-color: $scheme-main !default
|
8
|
+
$input-border-color: $border !default
|
9
|
+
$input-height: $control-height !default
|
10
|
+
$input-shadow: inset 0 0.0625em 0.125em rgba($scheme-invert, 0.05) !default
|
11
|
+
$input-placeholder-color: bulmaRgba($input-color, 0.3) !default
|
12
|
+
|
13
|
+
$input-hover-color: $text-strong !default
|
14
|
+
$input-hover-border-color: $border-hover !default
|
15
|
+
|
16
|
+
$input-focus-color: $text-strong !default
|
17
|
+
$input-focus-border-color: $link !default
|
18
|
+
$input-focus-box-shadow-size: 0 0 0 0.125em !default
|
19
|
+
$input-focus-box-shadow-color: bulmaRgba($link, 0.25) !default
|
20
|
+
|
21
|
+
$input-disabled-color: $text-light !default
|
22
|
+
$input-disabled-background-color: $background !default
|
23
|
+
$input-disabled-border-color: $background !default
|
24
|
+
$input-disabled-placeholder-color: bulmaRgba($input-disabled-color, 0.3) !default
|
25
|
+
|
26
|
+
$input-arrow: $link !default
|
27
|
+
|
28
|
+
$input-icon-color: $border !default
|
29
|
+
$input-icon-active-color: $text !default
|
30
|
+
|
31
|
+
$input-radius: $radius !default
|
32
|
+
|
33
|
+
=input
|
34
|
+
@extend %control
|
35
|
+
background-color: $input-background-color
|
36
|
+
border-color: $input-border-color
|
37
|
+
border-radius: $input-radius
|
38
|
+
color: $input-color
|
39
|
+
+placeholder
|
40
|
+
color: $input-placeholder-color
|
41
|
+
&:hover,
|
42
|
+
&.is-hovered
|
43
|
+
border-color: $input-hover-border-color
|
44
|
+
&:focus,
|
45
|
+
&.is-focused,
|
46
|
+
&:active,
|
47
|
+
&.is-active
|
48
|
+
border-color: $input-focus-border-color
|
49
|
+
box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color
|
50
|
+
&[disabled],
|
51
|
+
fieldset[disabled] &
|
52
|
+
background-color: $input-disabled-background-color
|
53
|
+
border-color: $input-disabled-border-color
|
54
|
+
box-shadow: none
|
55
|
+
color: $input-disabled-color
|
56
|
+
+placeholder
|
57
|
+
color: $input-disabled-placeholder-color
|
58
|
+
|
59
|
+
%input
|
60
|
+
+input
|
@@ -0,0 +1,215 @@
|
|
1
|
+
$label-color: $text-strong !default
|
2
|
+
$label-weight: $weight-bold !default
|
3
|
+
|
4
|
+
$help-size: $size-small !default
|
5
|
+
|
6
|
+
$label-colors: $form-colors !default
|
7
|
+
|
8
|
+
.label
|
9
|
+
color: $label-color
|
10
|
+
display: block
|
11
|
+
font-size: $size-normal
|
12
|
+
font-weight: $label-weight
|
13
|
+
&:not(:last-child)
|
14
|
+
margin-bottom: 0.5em
|
15
|
+
// Sizes
|
16
|
+
&.is-small
|
17
|
+
font-size: $size-small
|
18
|
+
&.is-medium
|
19
|
+
font-size: $size-medium
|
20
|
+
&.is-large
|
21
|
+
font-size: $size-large
|
22
|
+
|
23
|
+
.help
|
24
|
+
display: block
|
25
|
+
font-size: $help-size
|
26
|
+
margin-top: 0.25rem
|
27
|
+
@each $name, $pair in $label-colors
|
28
|
+
$color: nth($pair, 1)
|
29
|
+
&.is-#{$name}
|
30
|
+
color: $color
|
31
|
+
|
32
|
+
// Containers
|
33
|
+
|
34
|
+
.field
|
35
|
+
&:not(:last-child)
|
36
|
+
margin-bottom: 0.75rem
|
37
|
+
// Modifiers
|
38
|
+
&.has-addons
|
39
|
+
display: flex
|
40
|
+
justify-content: flex-start
|
41
|
+
.control
|
42
|
+
&:not(:last-child)
|
43
|
+
+ltr-property("margin", -1px)
|
44
|
+
&:not(:first-child):not(:last-child)
|
45
|
+
.button,
|
46
|
+
.input,
|
47
|
+
.select select
|
48
|
+
border-radius: 0
|
49
|
+
&:first-child:not(:only-child)
|
50
|
+
.button,
|
51
|
+
.input,
|
52
|
+
.select select
|
53
|
+
+ltr
|
54
|
+
border-bottom-right-radius: 0
|
55
|
+
border-top-right-radius: 0
|
56
|
+
+rtl
|
57
|
+
border-bottom-left-radius: 0
|
58
|
+
border-top-left-radius: 0
|
59
|
+
&:last-child:not(:only-child)
|
60
|
+
.button,
|
61
|
+
.input,
|
62
|
+
.select select
|
63
|
+
+ltr
|
64
|
+
border-bottom-left-radius: 0
|
65
|
+
border-top-left-radius: 0
|
66
|
+
+rtl
|
67
|
+
border-bottom-right-radius: 0
|
68
|
+
border-top-right-radius: 0
|
69
|
+
.button,
|
70
|
+
.input,
|
71
|
+
.select select
|
72
|
+
&:not([disabled])
|
73
|
+
&:hover,
|
74
|
+
&.is-hovered
|
75
|
+
z-index: 2
|
76
|
+
&:focus,
|
77
|
+
&.is-focused,
|
78
|
+
&:active,
|
79
|
+
&.is-active
|
80
|
+
z-index: 3
|
81
|
+
&:hover
|
82
|
+
z-index: 4
|
83
|
+
&.is-expanded
|
84
|
+
flex-grow: 1
|
85
|
+
flex-shrink: 1
|
86
|
+
&.has-addons-centered
|
87
|
+
justify-content: center
|
88
|
+
&.has-addons-right
|
89
|
+
justify-content: flex-end
|
90
|
+
&.has-addons-fullwidth
|
91
|
+
.control
|
92
|
+
flex-grow: 1
|
93
|
+
flex-shrink: 0
|
94
|
+
&.is-grouped
|
95
|
+
display: flex
|
96
|
+
justify-content: flex-start
|
97
|
+
& > .control
|
98
|
+
flex-shrink: 0
|
99
|
+
&:not(:last-child)
|
100
|
+
margin-bottom: 0
|
101
|
+
+ltr-property("margin", 0.75rem)
|
102
|
+
&.is-expanded
|
103
|
+
flex-grow: 1
|
104
|
+
flex-shrink: 1
|
105
|
+
&.is-grouped-centered
|
106
|
+
justify-content: center
|
107
|
+
&.is-grouped-right
|
108
|
+
justify-content: flex-end
|
109
|
+
&.is-grouped-multiline
|
110
|
+
flex-wrap: wrap
|
111
|
+
& > .control
|
112
|
+
&:last-child,
|
113
|
+
&:not(:last-child)
|
114
|
+
margin-bottom: 0.75rem
|
115
|
+
&:last-child
|
116
|
+
margin-bottom: -0.75rem
|
117
|
+
&:not(:last-child)
|
118
|
+
margin-bottom: 0
|
119
|
+
&.is-horizontal
|
120
|
+
+tablet
|
121
|
+
display: flex
|
122
|
+
|
123
|
+
.field-label
|
124
|
+
.label
|
125
|
+
font-size: inherit
|
126
|
+
+mobile
|
127
|
+
margin-bottom: 0.5rem
|
128
|
+
+tablet
|
129
|
+
flex-basis: 0
|
130
|
+
flex-grow: 1
|
131
|
+
flex-shrink: 0
|
132
|
+
+ltr-property("margin", 1.5rem)
|
133
|
+
text-align: right
|
134
|
+
&.is-small
|
135
|
+
font-size: $size-small
|
136
|
+
padding-top: 0.375em
|
137
|
+
&.is-normal
|
138
|
+
padding-top: 0.375em
|
139
|
+
&.is-medium
|
140
|
+
font-size: $size-medium
|
141
|
+
padding-top: 0.375em
|
142
|
+
&.is-large
|
143
|
+
font-size: $size-large
|
144
|
+
padding-top: 0.375em
|
145
|
+
|
146
|
+
.field-body
|
147
|
+
.field .field
|
148
|
+
margin-bottom: 0
|
149
|
+
+tablet
|
150
|
+
display: flex
|
151
|
+
flex-basis: 0
|
152
|
+
flex-grow: 5
|
153
|
+
flex-shrink: 1
|
154
|
+
.field
|
155
|
+
margin-bottom: 0
|
156
|
+
& > .field
|
157
|
+
flex-shrink: 1
|
158
|
+
&:not(.is-narrow)
|
159
|
+
flex-grow: 1
|
160
|
+
&:not(:last-child)
|
161
|
+
+ltr-property("margin", 0.75rem)
|
162
|
+
|
163
|
+
.control
|
164
|
+
box-sizing: border-box
|
165
|
+
clear: both
|
166
|
+
font-size: $size-normal
|
167
|
+
position: relative
|
168
|
+
text-align: inherit
|
169
|
+
// Modifiers
|
170
|
+
&.has-icons-left,
|
171
|
+
&.has-icons-right
|
172
|
+
.input,
|
173
|
+
.select
|
174
|
+
&:focus
|
175
|
+
& ~ .icon
|
176
|
+
color: $input-icon-active-color
|
177
|
+
&.is-small ~ .icon
|
178
|
+
font-size: $size-small
|
179
|
+
&.is-medium ~ .icon
|
180
|
+
font-size: $size-medium
|
181
|
+
&.is-large ~ .icon
|
182
|
+
font-size: $size-large
|
183
|
+
.icon
|
184
|
+
color: $input-icon-color
|
185
|
+
height: $input-height
|
186
|
+
pointer-events: none
|
187
|
+
position: absolute
|
188
|
+
top: 0
|
189
|
+
width: $input-height
|
190
|
+
z-index: 4
|
191
|
+
&.has-icons-left
|
192
|
+
.input,
|
193
|
+
.select select
|
194
|
+
padding-left: $input-height
|
195
|
+
.icon.is-left
|
196
|
+
left: 0
|
197
|
+
&.has-icons-right
|
198
|
+
.input,
|
199
|
+
.select select
|
200
|
+
padding-right: $input-height
|
201
|
+
.icon.is-right
|
202
|
+
right: 0
|
203
|
+
&.is-loading
|
204
|
+
&::after
|
205
|
+
@extend %loader
|
206
|
+
position: absolute !important
|
207
|
+
+ltr-position(0.625em)
|
208
|
+
top: 0.625em
|
209
|
+
z-index: 4
|
210
|
+
&.is-small:after
|
211
|
+
font-size: $size-small
|
212
|
+
&.is-medium:after
|
213
|
+
font-size: $size-medium
|
214
|
+
&.is-large:after
|
215
|
+
font-size: $size-large
|