bulma-sass 0.7.5.1 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/bulma.sass +2 -1
- data/app/assets/stylesheets/sass/base/_all.sass +1 -1
- data/app/assets/stylesheets/sass/base/generic.sass +3 -2
- data/app/assets/stylesheets/sass/base/helpers.sass +1 -281
- data/app/assets/stylesheets/sass/base/minireset.sass +2 -8
- data/app/assets/stylesheets/sass/components/_all.sass +1 -1
- data/app/assets/stylesheets/sass/components/breadcrumb.sass +4 -4
- data/app/assets/stylesheets/sass/components/card.sass +10 -6
- data/app/assets/stylesheets/sass/components/dropdown.sass +8 -8
- data/app/assets/stylesheets/sass/components/level.sass +2 -2
- data/app/assets/stylesheets/sass/components/media.sass +14 -10
- data/app/assets/stylesheets/sass/components/menu.sass +2 -2
- data/app/assets/stylesheets/sass/components/message.sass +23 -11
- data/app/assets/stylesheets/sass/components/modal.sass +7 -5
- data/app/assets/stylesheets/sass/components/navbar.sass +27 -27
- data/app/assets/stylesheets/sass/components/pagination.sass +7 -6
- data/app/assets/stylesheets/sass/components/panel.sass +29 -13
- data/app/assets/stylesheets/sass/components/tabs.sass +36 -13
- data/app/assets/stylesheets/sass/elements/_all.sass +1 -0
- data/app/assets/stylesheets/sass/elements/box.sass +4 -4
- data/app/assets/stylesheets/sass/elements/button.sass +49 -29
- data/app/assets/stylesheets/sass/elements/container.sass +14 -10
- data/app/assets/stylesheets/sass/elements/content.sass +5 -5
- data/app/assets/stylesheets/sass/elements/image.sass +2 -0
- data/app/assets/stylesheets/sass/elements/notification.sass +19 -4
- data/app/assets/stylesheets/sass/elements/progress.sass +6 -2
- data/app/assets/stylesheets/sass/elements/table.sass +12 -8
- data/app/assets/stylesheets/sass/elements/tag.sass +34 -17
- data/app/assets/stylesheets/sass/elements/title.sass +3 -3
- data/app/assets/stylesheets/sass/form/_all.sass +1 -0
- data/app/assets/stylesheets/sass/form/checkbox-radio.sass +3 -2
- data/app/assets/stylesheets/sass/form/file.sass +16 -14
- data/app/assets/stylesheets/sass/form/input-textarea.sass +13 -7
- data/app/assets/stylesheets/sass/form/select.sass +9 -7
- data/app/assets/stylesheets/sass/form/shared.sass +14 -12
- data/app/assets/stylesheets/sass/form/tools.sass +22 -12
- data/app/assets/stylesheets/sass/grid/_all.sass +1 -0
- data/app/assets/stylesheets/sass/helpers/_all.sass +12 -0
- data/app/assets/stylesheets/sass/helpers/color.sass +37 -0
- data/app/assets/stylesheets/sass/helpers/flexbox.sass +35 -0
- data/app/assets/stylesheets/sass/helpers/float.sass +8 -0
- data/app/assets/stylesheets/sass/helpers/other.sass +11 -0
- data/app/assets/stylesheets/sass/helpers/overflow.sass +2 -0
- data/app/assets/stylesheets/sass/helpers/position.sass +5 -0
- data/app/assets/stylesheets/sass/helpers/spacing.sass +31 -0
- data/app/assets/stylesheets/sass/helpers/typography.sass +98 -0
- data/app/assets/stylesheets/sass/helpers/visibility.sass +122 -0
- data/app/assets/stylesheets/sass/layout/_all.sass +1 -0
- data/app/assets/stylesheets/sass/layout/footer.sass +1 -1
- data/app/assets/stylesheets/sass/layout/hero.sass +25 -21
- data/app/assets/stylesheets/sass/utilities/_all.sass +1 -0
- data/app/assets/stylesheets/sass/utilities/controls.sass +3 -3
- data/app/assets/stylesheets/sass/utilities/derived-variables.sass +32 -10
- data/app/assets/stylesheets/sass/utilities/functions.sass +68 -15
- data/app/assets/stylesheets/sass/utilities/initial-variables.sass +5 -3
- data/app/assets/stylesheets/sass/utilities/mixins.sass +29 -5
- data/bulma-sass.gemspec +2 -2
- data/lib/bulma/sass/version.rb +1 -1
- data/release.sh +2 -2
- metadata +17 -8
- data/app/assets/stylesheets/sass/components/list.sass +0 -39
@@ -1,27 +1,29 @@
|
|
1
|
-
$
|
2
|
-
|
3
|
-
$input-
|
1
|
+
$form-colors: $colors !default
|
2
|
+
|
3
|
+
$input-color: $text-strong !default
|
4
|
+
$input-background-color: $scheme-main !default
|
5
|
+
$input-border-color: $border !default
|
4
6
|
$input-height: $control-height !default
|
5
|
-
$input-shadow: inset 0
|
6
|
-
$input-placeholder-color:
|
7
|
+
$input-shadow: inset 0 0.0625em 0.125em rgba($scheme-invert, 0.05) !default
|
8
|
+
$input-placeholder-color: bulmaRgba($input-color, 0.3) !default
|
7
9
|
|
8
|
-
$input-hover-color: $
|
9
|
-
$input-hover-border-color: $
|
10
|
+
$input-hover-color: $text-strong !default
|
11
|
+
$input-hover-border-color: $border-hover !default
|
10
12
|
|
11
|
-
$input-focus-color: $
|
13
|
+
$input-focus-color: $text-strong !default
|
12
14
|
$input-focus-border-color: $link !default
|
13
15
|
$input-focus-box-shadow-size: 0 0 0 0.125em !default
|
14
|
-
$input-focus-box-shadow-color:
|
16
|
+
$input-focus-box-shadow-color: bulmaRgba($link, 0.25) !default
|
15
17
|
|
16
18
|
$input-disabled-color: $text-light !default
|
17
19
|
$input-disabled-background-color: $background !default
|
18
20
|
$input-disabled-border-color: $background !default
|
19
|
-
$input-disabled-placeholder-color:
|
21
|
+
$input-disabled-placeholder-color: bulmaRgba($input-disabled-color, 0.3) !default
|
20
22
|
|
21
23
|
$input-arrow: $link !default
|
22
24
|
|
23
|
-
$input-icon-color: $
|
24
|
-
$input-icon-active-color: $
|
25
|
+
$input-icon-color: $border !default
|
26
|
+
$input-icon-active-color: $text !default
|
25
27
|
|
26
28
|
$input-radius: $radius !default
|
27
29
|
|
@@ -1,8 +1,10 @@
|
|
1
|
-
$label-color: $
|
1
|
+
$label-color: $text-strong !default
|
2
2
|
$label-weight: $weight-bold !default
|
3
3
|
|
4
4
|
$help-size: $size-small !default
|
5
5
|
|
6
|
+
$label-colors: $form-colors !default
|
7
|
+
|
6
8
|
.label
|
7
9
|
color: $label-color
|
8
10
|
display: block
|
@@ -22,7 +24,7 @@ $help-size: $size-small !default
|
|
22
24
|
display: block
|
23
25
|
font-size: $help-size
|
24
26
|
margin-top: 0.25rem
|
25
|
-
@each $name, $pair in $colors
|
27
|
+
@each $name, $pair in $label-colors
|
26
28
|
$color: nth($pair, 1)
|
27
29
|
&.is-#{$name}
|
28
30
|
color: $color
|
@@ -38,7 +40,7 @@ $help-size: $size-small !default
|
|
38
40
|
justify-content: flex-start
|
39
41
|
.control
|
40
42
|
&:not(:last-child)
|
41
|
-
margin
|
43
|
+
+ltr-property("margin", -1px)
|
42
44
|
&:not(:first-child):not(:last-child)
|
43
45
|
.button,
|
44
46
|
.input,
|
@@ -48,14 +50,22 @@ $help-size: $size-small !default
|
|
48
50
|
.button,
|
49
51
|
.input,
|
50
52
|
.select select
|
51
|
-
|
52
|
-
|
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
|
53
59
|
&:last-child:not(:only-child)
|
54
60
|
.button,
|
55
61
|
.input,
|
56
62
|
.select select
|
57
|
-
|
58
|
-
|
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
|
59
69
|
.button,
|
60
70
|
.input,
|
61
71
|
.select select
|
@@ -88,7 +98,7 @@ $help-size: $size-small !default
|
|
88
98
|
flex-shrink: 0
|
89
99
|
&:not(:last-child)
|
90
100
|
margin-bottom: 0
|
91
|
-
margin
|
101
|
+
+ltr-property("margin", 0.75rem)
|
92
102
|
&.is-expanded
|
93
103
|
flex-grow: 1
|
94
104
|
flex-shrink: 1
|
@@ -119,7 +129,7 @@ $help-size: $size-small !default
|
|
119
129
|
flex-basis: 0
|
120
130
|
flex-grow: 1
|
121
131
|
flex-shrink: 0
|
122
|
-
margin
|
132
|
+
+ltr-property("margin", 1.5rem)
|
123
133
|
text-align: right
|
124
134
|
&.is-small
|
125
135
|
font-size: $size-small
|
@@ -148,14 +158,14 @@ $help-size: $size-small !default
|
|
148
158
|
&:not(.is-narrow)
|
149
159
|
flex-grow: 1
|
150
160
|
&:not(:last-child)
|
151
|
-
margin
|
161
|
+
+ltr-property("margin", 0.75rem)
|
152
162
|
|
153
163
|
.control
|
154
164
|
box-sizing: border-box
|
155
165
|
clear: both
|
156
166
|
font-size: $size-normal
|
157
167
|
position: relative
|
158
|
-
text-align:
|
168
|
+
text-align: inherit
|
159
169
|
// Modifiers
|
160
170
|
&.has-icons-left,
|
161
171
|
&.has-icons-right
|
@@ -194,7 +204,7 @@ $help-size: $size-small !default
|
|
194
204
|
&::after
|
195
205
|
@extend %loader
|
196
206
|
position: absolute !important
|
197
|
-
|
207
|
+
+ltr-position(0.625em)
|
198
208
|
top: 0.625em
|
199
209
|
z-index: 4
|
200
210
|
&.is-small:after
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/* Bulma Helpers */
|
2
|
+
@charset "utf-8"
|
3
|
+
|
4
|
+
@import "color.sass"
|
5
|
+
@import "flexbox.sass"
|
6
|
+
@import "float.sass"
|
7
|
+
@import "other.sass"
|
8
|
+
@import "overflow.sass"
|
9
|
+
@import "position.sass"
|
10
|
+
@import "spacing.sass"
|
11
|
+
@import "typography.sass"
|
12
|
+
@import "visibility.sass"
|
@@ -0,0 +1,37 @@
|
|
1
|
+
@each $name, $pair in $colors
|
2
|
+
$color: nth($pair, 1)
|
3
|
+
.has-text-#{$name}
|
4
|
+
color: $color !important
|
5
|
+
a.has-text-#{$name}
|
6
|
+
&:hover,
|
7
|
+
&:focus
|
8
|
+
color: bulmaDarken($color, 10%) !important
|
9
|
+
.has-background-#{$name}
|
10
|
+
background-color: $color !important
|
11
|
+
@if length($pair) >= 4
|
12
|
+
$color-light: nth($pair, 3)
|
13
|
+
$color-dark: nth($pair, 4)
|
14
|
+
// Light
|
15
|
+
.has-text-#{$name}-light
|
16
|
+
color: $color-light !important
|
17
|
+
a.has-text-#{$name}-light
|
18
|
+
&:hover,
|
19
|
+
&:focus
|
20
|
+
color: bulmaDarken($color-light, 10%) !important
|
21
|
+
.has-background-#{$name}-light
|
22
|
+
background-color: $color-light !important
|
23
|
+
// Dark
|
24
|
+
.has-text-#{$name}-dark
|
25
|
+
color: $color-dark !important
|
26
|
+
a.has-text-#{$name}-dark
|
27
|
+
&:hover,
|
28
|
+
&:focus
|
29
|
+
color: bulmaLighten($color-dark, 10%) !important
|
30
|
+
.has-background-#{$name}-dark
|
31
|
+
background-color: $color-dark !important
|
32
|
+
|
33
|
+
@each $name, $shade in $shades
|
34
|
+
.has-text-#{$name}
|
35
|
+
color: $shade !important
|
36
|
+
.has-background-#{$name}
|
37
|
+
background-color: $shade !important
|
@@ -0,0 +1,35 @@
|
|
1
|
+
$flex-direction-values: row, row-reverse, column, column-reverse
|
2
|
+
@each $value in $flex-direction-values
|
3
|
+
.is-flex-direction-#{$value}
|
4
|
+
flex-direction: $value !important
|
5
|
+
|
6
|
+
$flex-wrap-values: nowrap, wrap, wrap-reverse
|
7
|
+
@each $value in $flex-wrap-values
|
8
|
+
.is-flex-wrap-#{$value}
|
9
|
+
flex-wrap: $value !important
|
10
|
+
|
11
|
+
$justify-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, start, end, left, right
|
12
|
+
@each $value in $justify-content-values
|
13
|
+
.is-justify-content-#{$value}
|
14
|
+
justify-content: $value !important
|
15
|
+
|
16
|
+
$align-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, stretch, start, end, baseline
|
17
|
+
@each $value in $align-content-values
|
18
|
+
.is-align-content-#{$value}
|
19
|
+
align-content: $value !important
|
20
|
+
|
21
|
+
$align-items-values: stretch, flex-start, flex-end, center, baseline, start, end, self-start, self-end
|
22
|
+
@each $value in $align-items-values
|
23
|
+
.is-align-items-#{$value}
|
24
|
+
align-items: $value !important
|
25
|
+
|
26
|
+
$align-self-values: auto, flex-start, flex-end, center, baseline, stretch
|
27
|
+
@each $value in $align-self-values
|
28
|
+
.is-align-self-#{$value}
|
29
|
+
align-self: $value !important
|
30
|
+
|
31
|
+
$flex-operators: grow, shrink
|
32
|
+
@each $operator in $flex-operators
|
33
|
+
@for $i from 0 through 5
|
34
|
+
.is-flex-#{$operator}-#{$i}
|
35
|
+
flex-#{$operator}: $i !important
|
@@ -0,0 +1,31 @@
|
|
1
|
+
.is-marginless
|
2
|
+
margin: 0 !important
|
3
|
+
|
4
|
+
.is-paddingless
|
5
|
+
padding: 0 !important
|
6
|
+
|
7
|
+
$spacing-shortcuts: ("margin": "m", "padding": "p") !default
|
8
|
+
$spacing-directions: ("top": "t", "right": "r", "bottom": "b", "left": "l") !default
|
9
|
+
$spacing-horizontal: "x" !default
|
10
|
+
$spacing-vertical: "y" !default
|
11
|
+
$spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5": 1.5rem, "6": 3rem) !default
|
12
|
+
|
13
|
+
@each $property, $shortcut in $spacing-shortcuts
|
14
|
+
@each $name, $value in $spacing-values
|
15
|
+
// All directions
|
16
|
+
.#{$shortcut}-#{$name}
|
17
|
+
#{$property}: $value !important
|
18
|
+
// Cardinal directions
|
19
|
+
@each $direction, $suffix in $spacing-directions
|
20
|
+
.#{$shortcut}#{$suffix}-#{$name}
|
21
|
+
#{$property}-#{$direction}: $value !important
|
22
|
+
// Horizontal axis
|
23
|
+
@if $spacing-horizontal != null
|
24
|
+
.#{$shortcut}#{$spacing-horizontal}-#{$name}
|
25
|
+
#{$property}-left: $value !important
|
26
|
+
#{$property}-right: $value !important
|
27
|
+
// Vertical axis
|
28
|
+
@if $spacing-vertical != null
|
29
|
+
.#{$shortcut}#{$spacing-vertical}-#{$name}
|
30
|
+
#{$property}-top: $value !important
|
31
|
+
#{$property}-bottom: $value !important
|
@@ -0,0 +1,98 @@
|
|
1
|
+
=typography-size($target:'')
|
2
|
+
@each $size in $sizes
|
3
|
+
$i: index($sizes, $size)
|
4
|
+
.is-size-#{$i}#{if($target == '', '', '-' + $target)}
|
5
|
+
font-size: $size !important
|
6
|
+
|
7
|
+
+typography-size()
|
8
|
+
|
9
|
+
+mobile
|
10
|
+
+typography-size('mobile')
|
11
|
+
|
12
|
+
+tablet
|
13
|
+
+typography-size('tablet')
|
14
|
+
|
15
|
+
+touch
|
16
|
+
+typography-size('touch')
|
17
|
+
|
18
|
+
+desktop
|
19
|
+
+typography-size('desktop')
|
20
|
+
|
21
|
+
+widescreen
|
22
|
+
+typography-size('widescreen')
|
23
|
+
|
24
|
+
+fullhd
|
25
|
+
+typography-size('fullhd')
|
26
|
+
|
27
|
+
$alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'right': 'right')
|
28
|
+
|
29
|
+
@each $alignment, $text-align in $alignments
|
30
|
+
.has-text-#{$alignment}
|
31
|
+
text-align: #{$text-align} !important
|
32
|
+
|
33
|
+
@each $alignment, $text-align in $alignments
|
34
|
+
+mobile
|
35
|
+
.has-text-#{$alignment}-mobile
|
36
|
+
text-align: #{$text-align} !important
|
37
|
+
+tablet
|
38
|
+
.has-text-#{$alignment}-tablet
|
39
|
+
text-align: #{$text-align} !important
|
40
|
+
+tablet-only
|
41
|
+
.has-text-#{$alignment}-tablet-only
|
42
|
+
text-align: #{$text-align} !important
|
43
|
+
+touch
|
44
|
+
.has-text-#{$alignment}-touch
|
45
|
+
text-align: #{$text-align} !important
|
46
|
+
+desktop
|
47
|
+
.has-text-#{$alignment}-desktop
|
48
|
+
text-align: #{$text-align} !important
|
49
|
+
+desktop-only
|
50
|
+
.has-text-#{$alignment}-desktop-only
|
51
|
+
text-align: #{$text-align} !important
|
52
|
+
+widescreen
|
53
|
+
.has-text-#{$alignment}-widescreen
|
54
|
+
text-align: #{$text-align} !important
|
55
|
+
+widescreen-only
|
56
|
+
.has-text-#{$alignment}-widescreen-only
|
57
|
+
text-align: #{$text-align} !important
|
58
|
+
+fullhd
|
59
|
+
.has-text-#{$alignment}-fullhd
|
60
|
+
text-align: #{$text-align} !important
|
61
|
+
|
62
|
+
.is-capitalized
|
63
|
+
text-transform: capitalize !important
|
64
|
+
|
65
|
+
.is-lowercase
|
66
|
+
text-transform: lowercase !important
|
67
|
+
|
68
|
+
.is-uppercase
|
69
|
+
text-transform: uppercase !important
|
70
|
+
|
71
|
+
.is-italic
|
72
|
+
font-style: italic !important
|
73
|
+
|
74
|
+
.has-text-weight-light
|
75
|
+
font-weight: $weight-light !important
|
76
|
+
.has-text-weight-normal
|
77
|
+
font-weight: $weight-normal !important
|
78
|
+
.has-text-weight-medium
|
79
|
+
font-weight: $weight-medium !important
|
80
|
+
.has-text-weight-semibold
|
81
|
+
font-weight: $weight-semibold !important
|
82
|
+
.has-text-weight-bold
|
83
|
+
font-weight: $weight-bold !important
|
84
|
+
|
85
|
+
.is-family-primary
|
86
|
+
font-family: $family-primary !important
|
87
|
+
|
88
|
+
.is-family-secondary
|
89
|
+
font-family: $family-secondary !important
|
90
|
+
|
91
|
+
.is-family-sans-serif
|
92
|
+
font-family: $family-sans-serif !important
|
93
|
+
|
94
|
+
.is-family-monospace
|
95
|
+
font-family: $family-monospace !important
|
96
|
+
|
97
|
+
.is-family-code
|
98
|
+
font-family: $family-code !important
|
@@ -0,0 +1,122 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
$displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
|
4
|
+
|
5
|
+
@each $display in $displays
|
6
|
+
.is-#{$display}
|
7
|
+
display: #{$display} !important
|
8
|
+
+mobile
|
9
|
+
.is-#{$display}-mobile
|
10
|
+
display: #{$display} !important
|
11
|
+
+tablet
|
12
|
+
.is-#{$display}-tablet
|
13
|
+
display: #{$display} !important
|
14
|
+
+tablet-only
|
15
|
+
.is-#{$display}-tablet-only
|
16
|
+
display: #{$display} !important
|
17
|
+
+touch
|
18
|
+
.is-#{$display}-touch
|
19
|
+
display: #{$display} !important
|
20
|
+
+desktop
|
21
|
+
.is-#{$display}-desktop
|
22
|
+
display: #{$display} !important
|
23
|
+
+desktop-only
|
24
|
+
.is-#{$display}-desktop-only
|
25
|
+
display: #{$display} !important
|
26
|
+
+widescreen
|
27
|
+
.is-#{$display}-widescreen
|
28
|
+
display: #{$display} !important
|
29
|
+
+widescreen-only
|
30
|
+
.is-#{$display}-widescreen-only
|
31
|
+
display: #{$display} !important
|
32
|
+
+fullhd
|
33
|
+
.is-#{$display}-fullhd
|
34
|
+
display: #{$display} !important
|
35
|
+
|
36
|
+
.is-hidden
|
37
|
+
display: none !important
|
38
|
+
|
39
|
+
.is-sr-only
|
40
|
+
border: none !important
|
41
|
+
clip: rect(0, 0, 0, 0) !important
|
42
|
+
height: 0.01em !important
|
43
|
+
overflow: hidden !important
|
44
|
+
padding: 0 !important
|
45
|
+
position: absolute !important
|
46
|
+
white-space: nowrap !important
|
47
|
+
width: 0.01em !important
|
48
|
+
|
49
|
+
+mobile
|
50
|
+
.is-hidden-mobile
|
51
|
+
display: none !important
|
52
|
+
|
53
|
+
+tablet
|
54
|
+
.is-hidden-tablet
|
55
|
+
display: none !important
|
56
|
+
|
57
|
+
+tablet-only
|
58
|
+
.is-hidden-tablet-only
|
59
|
+
display: none !important
|
60
|
+
|
61
|
+
+touch
|
62
|
+
.is-hidden-touch
|
63
|
+
display: none !important
|
64
|
+
|
65
|
+
+desktop
|
66
|
+
.is-hidden-desktop
|
67
|
+
display: none !important
|
68
|
+
|
69
|
+
+desktop-only
|
70
|
+
.is-hidden-desktop-only
|
71
|
+
display: none !important
|
72
|
+
|
73
|
+
+widescreen
|
74
|
+
.is-hidden-widescreen
|
75
|
+
display: none !important
|
76
|
+
|
77
|
+
+widescreen-only
|
78
|
+
.is-hidden-widescreen-only
|
79
|
+
display: none !important
|
80
|
+
|
81
|
+
+fullhd
|
82
|
+
.is-hidden-fullhd
|
83
|
+
display: none !important
|
84
|
+
|
85
|
+
.is-invisible
|
86
|
+
visibility: hidden !important
|
87
|
+
|
88
|
+
+mobile
|
89
|
+
.is-invisible-mobile
|
90
|
+
visibility: hidden !important
|
91
|
+
|
92
|
+
+tablet
|
93
|
+
.is-invisible-tablet
|
94
|
+
visibility: hidden !important
|
95
|
+
|
96
|
+
+tablet-only
|
97
|
+
.is-invisible-tablet-only
|
98
|
+
visibility: hidden !important
|
99
|
+
|
100
|
+
+touch
|
101
|
+
.is-invisible-touch
|
102
|
+
visibility: hidden !important
|
103
|
+
|
104
|
+
+desktop
|
105
|
+
.is-invisible-desktop
|
106
|
+
visibility: hidden !important
|
107
|
+
|
108
|
+
+desktop-only
|
109
|
+
.is-invisible-desktop-only
|
110
|
+
visibility: hidden !important
|
111
|
+
|
112
|
+
+widescreen
|
113
|
+
.is-invisible-widescreen
|
114
|
+
visibility: hidden !important
|
115
|
+
|
116
|
+
+widescreen-only
|
117
|
+
.is-invisible-widescreen-only
|
118
|
+
visibility: hidden !important
|
119
|
+
|
120
|
+
+fullhd
|
121
|
+
.is-invisible-fullhd
|
122
|
+
visibility: hidden !important
|