mithril-materialized 0.19.7 → 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.
- package/README.md +6 -2
- package/dist/autocomplete.d.ts +14 -7
- package/dist/button.d.ts +40 -40
- package/dist/carousel.d.ts +38 -18
- package/dist/chip.d.ts +31 -11
- package/dist/code-block.d.ts +8 -9
- package/dist/collapsible.d.ts +26 -22
- package/dist/collection.d.ts +49 -49
- package/dist/dropdown.d.ts +45 -46
- package/dist/floating-action-button.d.ts +37 -34
- package/dist/icon.d.ts +11 -11
- package/dist/index.css +7968 -2
- package/dist/index.d.ts +26 -28
- package/dist/index.esm.js +4211 -2
- package/dist/index.js +4265 -2
- package/dist/index.umd.js +4269 -2
- package/dist/input-options.d.ts +85 -81
- package/dist/input.d.ts +47 -42
- package/dist/label.d.ts +21 -22
- package/dist/material-box.d.ts +38 -21
- package/dist/material-icon.d.ts +14 -0
- package/dist/modal.d.ts +41 -26
- package/dist/option.d.ts +61 -52
- package/dist/pagination.d.ts +16 -20
- package/dist/parallax.d.ts +14 -13
- package/dist/pickers.d.ts +130 -8
- package/dist/radio.d.ts +41 -37
- package/dist/search-select.d.ts +41 -0
- package/dist/select.d.ts +46 -45
- package/dist/switch.d.ts +12 -13
- package/dist/tabs.d.ts +57 -45
- package/dist/utils.d.ts +43 -70
- package/package.json +55 -16
- package/sass/components/_badges.scss +59 -0
- package/sass/components/_buttons.scss +327 -0
- package/sass/components/_cards.scss +197 -0
- package/sass/components/_carousel.scss +92 -0
- package/sass/components/_chips.scss +92 -0
- package/sass/components/_collapsible.scss +94 -0
- package/sass/components/_color-classes.scss +34 -0
- package/sass/components/_color-variables.scss +371 -0
- package/sass/components/_datepicker.scss +251 -0
- package/sass/components/_dropdown.scss +90 -0
- package/sass/components/_global.scss +775 -0
- package/sass/components/_grid.scss +160 -0
- package/sass/components/_icons-material-design.scss +5 -0
- package/sass/components/_materialbox.scss +43 -0
- package/sass/components/_modal.scss +97 -0
- package/sass/components/_navbar.scss +211 -0
- package/sass/components/_normalize.scss +447 -0
- package/sass/components/_preloader.scss +336 -0
- package/sass/components/_pulse.scss +34 -0
- package/sass/components/_sidenav.scss +213 -0
- package/sass/components/_slider.scss +94 -0
- package/sass/components/_table_of_contents.scss +36 -0
- package/sass/components/_tabs.scss +102 -0
- package/sass/components/_tapTarget.scss +105 -0
- package/sass/components/_timepicker.scss +170 -0
- package/sass/components/_toast.scss +61 -0
- package/sass/components/_tooltip.scss +32 -0
- package/sass/components/_transitions.scss +13 -0
- package/sass/components/_typography.scss +61 -0
- package/sass/components/_variables.scss +352 -0
- package/sass/components/_waves.scss +114 -0
- package/sass/components/forms/_checkboxes.scss +203 -0
- package/sass/components/forms/_file-input.scss +50 -0
- package/sass/components/forms/_form-groups.scss +28 -0
- package/sass/components/forms/_forms.scss +24 -0
- package/sass/components/forms/_input-fields.scss +361 -0
- package/sass/components/forms/_radio-buttons.scss +118 -0
- package/sass/components/forms/_range.scss +164 -0
- package/sass/components/forms/_select.scss +193 -0
- package/sass/components/forms/_switches.scss +92 -0
- package/sass/materialize.scss +41 -0
- package/dist/index.css.map +0 -1
- package/dist/index.esm.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/index.modern.js +0 -2
- package/dist/index.modern.js.map +0 -1
- package/dist/index.umd.js.map +0 -1
- package/dist/kanban.d.ts +0 -47
- package/dist/layout-form-generator.d.ts +0 -75
- package/dist/map-editor.d.ts +0 -63
- package/dist/timeline.d.ts +0 -24
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
@use "../variables";
|
|
2
|
+
@use "input-fields";
|
|
3
|
+
|
|
4
|
+
/* Select Field
|
|
5
|
+
========================================================================== */
|
|
6
|
+
|
|
7
|
+
select.browser-default { opacity: 1; }
|
|
8
|
+
select {
|
|
9
|
+
opacity: 0;
|
|
10
|
+
background-color: variables.$select-background;
|
|
11
|
+
width: 100%;
|
|
12
|
+
padding: variables.$select-padding;
|
|
13
|
+
border: variables.$select-border;
|
|
14
|
+
border-radius: variables.$select-radius;
|
|
15
|
+
height: variables.$input-height;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.select-label {
|
|
19
|
+
position: absolute;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.select-wrapper {
|
|
23
|
+
&.valid .helper-text[data-success],
|
|
24
|
+
&.invalid ~ .helper-text[data-error] {
|
|
25
|
+
@extend %hidden-text !optional;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.valid {
|
|
29
|
+
& > input.select-dropdown {
|
|
30
|
+
@extend %valid-input-style !optional;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
& ~ .helper-text:after {
|
|
34
|
+
@extend %custom-success-message !optional;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.invalid {
|
|
39
|
+
& > input.select-dropdown,
|
|
40
|
+
& > input.select-dropdown:focus {
|
|
41
|
+
@extend %invalid-input-style !optional;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
& ~ .helper-text:after {
|
|
45
|
+
@extend %custom-error-message !optional;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.valid + label,
|
|
50
|
+
&.invalid + label {
|
|
51
|
+
width: 100%;
|
|
52
|
+
pointer-events: none;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
& + label:after {
|
|
56
|
+
@extend %input-after-style !optional;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
position: relative;
|
|
60
|
+
|
|
61
|
+
input.select-dropdown {
|
|
62
|
+
&:focus {
|
|
63
|
+
border-bottom: 1px solid variables.$input-focus-color;
|
|
64
|
+
}
|
|
65
|
+
position: relative;
|
|
66
|
+
cursor: pointer;
|
|
67
|
+
background-color: transparent;
|
|
68
|
+
border: none;
|
|
69
|
+
border-bottom: variables.$input-border;
|
|
70
|
+
outline: none;
|
|
71
|
+
height: variables.$input-height;
|
|
72
|
+
line-height: variables.$input-height;
|
|
73
|
+
width: 100%;
|
|
74
|
+
font-size: variables.$input-font-size;
|
|
75
|
+
margin: variables.$input-margin;
|
|
76
|
+
padding: 0;
|
|
77
|
+
display: block;
|
|
78
|
+
user-select:none;
|
|
79
|
+
z-index: 1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.caret {
|
|
83
|
+
position: absolute;
|
|
84
|
+
right: 0;
|
|
85
|
+
top: 0;
|
|
86
|
+
bottom: 0;
|
|
87
|
+
margin: auto 0;
|
|
88
|
+
z-index: 0;
|
|
89
|
+
fill: rgba(0,0,0,.87);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
& + label {
|
|
93
|
+
position: absolute;
|
|
94
|
+
top: -26px;
|
|
95
|
+
font-size: variables.$label-font-size;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// Hide select with overflow hidden instead of using display none
|
|
99
|
+
// (this prevents form validation errors with hidden form elements)
|
|
100
|
+
.hide-select {
|
|
101
|
+
width: 0;
|
|
102
|
+
height: 0;
|
|
103
|
+
overflow: hidden;
|
|
104
|
+
position: absolute;
|
|
105
|
+
top: 0;
|
|
106
|
+
z-index: -1;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// Disabled styles
|
|
111
|
+
select:disabled {
|
|
112
|
+
color: variables.$input-disabled-color;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.select-wrapper.disabled {
|
|
116
|
+
+ label {
|
|
117
|
+
color: variables.$input-disabled-color;
|
|
118
|
+
}
|
|
119
|
+
.caret {
|
|
120
|
+
fill: variables.$input-disabled-color;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.select-wrapper input.select-dropdown:disabled {
|
|
125
|
+
color: variables.$input-disabled-color;
|
|
126
|
+
cursor: default;
|
|
127
|
+
user-select: none;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.select-wrapper i {
|
|
131
|
+
color: variables.$select-disabled-color;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.select-dropdown li.disabled,
|
|
135
|
+
.select-dropdown li.disabled > span,
|
|
136
|
+
.select-dropdown li.optgroup {
|
|
137
|
+
color: variables.$select-disabled-color;
|
|
138
|
+
background-color: transparent;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
body.keyboard-focused {
|
|
142
|
+
.select-dropdown.dropdown-content li:focus {
|
|
143
|
+
background-color: variables.$select-option-focus;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.select-dropdown.dropdown-content {
|
|
148
|
+
li {
|
|
149
|
+
&:hover {
|
|
150
|
+
background-color: variables.$select-option-hover;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&.selected {
|
|
154
|
+
background-color: variables.$select-option-selected;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// Prefix Icons
|
|
160
|
+
.prefix ~ .select-wrapper {
|
|
161
|
+
margin-left: 3rem;
|
|
162
|
+
width: 92%;
|
|
163
|
+
width: calc(100% - 3rem);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.prefix ~ label { margin-left: 3rem; }
|
|
167
|
+
|
|
168
|
+
// Icons
|
|
169
|
+
.select-dropdown li {
|
|
170
|
+
img {
|
|
171
|
+
height: variables.$dropdown-item-height - 10;
|
|
172
|
+
width: variables.$dropdown-item-height - 10;
|
|
173
|
+
margin: 5px 15px;
|
|
174
|
+
float: right;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Optgroup styles
|
|
179
|
+
.select-dropdown li.optgroup {
|
|
180
|
+
border-top: 1px solid variables.$dropdown-hover-bg-color;
|
|
181
|
+
|
|
182
|
+
&.selected > span {
|
|
183
|
+
color: rgba(0, 0, 0, .7);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& > span {
|
|
187
|
+
color: rgba(0, 0, 0, .4);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
& ~ li.optgroup-option {
|
|
191
|
+
padding-left: 1rem;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
@use "sass:color";
|
|
2
|
+
@use "../variables";
|
|
3
|
+
|
|
4
|
+
/* Switch
|
|
5
|
+
========================================================================== */
|
|
6
|
+
|
|
7
|
+
.switch,
|
|
8
|
+
.switch * {
|
|
9
|
+
-webkit-tap-highlight-color: transparent;
|
|
10
|
+
user-select: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.switch label {
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.switch label input[type=checkbox] {
|
|
18
|
+
opacity: 0;
|
|
19
|
+
width: 0;
|
|
20
|
+
height: 0;
|
|
21
|
+
|
|
22
|
+
&:checked + .lever {
|
|
23
|
+
background-color: variables.$switch-checked-lever-bg;
|
|
24
|
+
|
|
25
|
+
&:before, &:after {
|
|
26
|
+
left: 18px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:after {
|
|
30
|
+
background-color: variables.$switch-bg-color;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.switch label .lever {
|
|
36
|
+
content: "";
|
|
37
|
+
display: inline-block;
|
|
38
|
+
position: relative;
|
|
39
|
+
width: 36px;
|
|
40
|
+
height: 14px;
|
|
41
|
+
background-color: variables.$switch-unchecked-lever-bg;
|
|
42
|
+
border-radius: variables.$switch-radius;
|
|
43
|
+
margin-right: 10px;
|
|
44
|
+
transition: background 0.3s ease;
|
|
45
|
+
vertical-align: middle;
|
|
46
|
+
margin: 0 16px;
|
|
47
|
+
|
|
48
|
+
&:before, &:after {
|
|
49
|
+
content: "";
|
|
50
|
+
position: absolute;
|
|
51
|
+
display: inline-block;
|
|
52
|
+
width: 20px;
|
|
53
|
+
height: 20px;
|
|
54
|
+
border-radius: 50%;
|
|
55
|
+
left: 0;
|
|
56
|
+
top: -3px;
|
|
57
|
+
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&:before {
|
|
61
|
+
background-color: color.adjust(variables.$switch-bg-color, $alpha: -.85);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&:after {
|
|
65
|
+
background-color: variables.$switch-unchecked-bg;
|
|
66
|
+
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// Switch active style
|
|
71
|
+
input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
|
|
72
|
+
input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
|
|
73
|
+
transform: scale(2.4);
|
|
74
|
+
background-color: color.adjust(variables.$switch-bg-color, $alpha: -.85);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
input[type=checkbox]:not(:disabled) ~ .lever:active:before,
|
|
78
|
+
input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
|
|
79
|
+
transform: scale(2.4);
|
|
80
|
+
background-color: rgba(0,0,0,.08);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Disabled Styles
|
|
84
|
+
.switch input[type=checkbox][disabled] + .lever {
|
|
85
|
+
cursor: default;
|
|
86
|
+
background-color: rgba(0,0,0,.12);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.switch label input[type=checkbox][disabled] + .lever:after,
|
|
90
|
+
.switch label input[type=checkbox][disabled]:checked + .lever:after {
|
|
91
|
+
background-color: variables.$input-disabled-solid-color;
|
|
92
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
// Color
|
|
4
|
+
@use "components/color-variables";
|
|
5
|
+
@use "components/color-classes";
|
|
6
|
+
|
|
7
|
+
// Variables;
|
|
8
|
+
@use "components/variables";
|
|
9
|
+
|
|
10
|
+
// Reset
|
|
11
|
+
@use "components/normalize";
|
|
12
|
+
|
|
13
|
+
// components
|
|
14
|
+
@use "components/global";
|
|
15
|
+
@use "components/badges";
|
|
16
|
+
@use "components/icons-material-design";
|
|
17
|
+
@use "components/grid";
|
|
18
|
+
@use "components/navbar";
|
|
19
|
+
@use "components/typography";
|
|
20
|
+
@use "components/transitions";
|
|
21
|
+
@use "components/cards";
|
|
22
|
+
@use "components/toast";
|
|
23
|
+
@use "components/tabs";
|
|
24
|
+
@use "components/tooltip";
|
|
25
|
+
@use "components/buttons";
|
|
26
|
+
@use "components/dropdown";
|
|
27
|
+
@use "components/waves";
|
|
28
|
+
@use "components/modal";
|
|
29
|
+
@use "components/collapsible";
|
|
30
|
+
@use "components/chips";
|
|
31
|
+
@use "components/materialbox";
|
|
32
|
+
@use "components/forms/forms";
|
|
33
|
+
@use "components/table_of_contents";
|
|
34
|
+
@use "components/sidenav";
|
|
35
|
+
@use "components/preloader";
|
|
36
|
+
@use "components/slider";
|
|
37
|
+
@use "components/carousel";
|
|
38
|
+
@use "components/tapTarget";
|
|
39
|
+
@use "components/pulse";
|
|
40
|
+
@use "components/datepicker";
|
|
41
|
+
@use "components/timepicker";
|
package/dist/index.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["input.css","codeblock.css","kanban.css","map-editor.css","switch.css","timeline.css"],"names":[],"mappings":"AAAA,OACE,oBACF,CAEA,wCAGE,4BAA6B,CAE7B,WAAgC,CAAhC,+BAAgC,CAChC,eAAgB,CAOhB,eAAgB,CAEhB,sBAAuB,CALvB,cAAe,CAFf,WAAY,CAPZ,cAAmB,CAMnB,YAAa,CAIb,SAAU,CAOV,oCAAwC,CATxC,UAWF,CAEA,2BACE,WACF,CC5BA,WACE,sBACF,CACA,eACE,kBACF,CACA,iBACE,oBACF,CCRA,2BACE,WAAY,CACZ,WAAY,CAEZ,mBACF,CAGA,kCACE,eAAgB,CAEhB,uBACF,CAEA,uBAQE,yEAIC,CACD,mHACF,CAEA,uBAQE,yEAIC,CACD,mHACF,CAEA,cACE,mBACF,CACA,uBACE,mBACF,CACA,2BACE,eAAgB,CAChB,gBACF,CCvDA,6CACE,gBAAiB,CACjB,SAAU,CACV,uBACF,CAEA,2FAcE,kCAAmC,CANnC,8CAA8B,CAA9B,kBAA8B,CAA9B,gBAA8B,CAJ9B,WAAY,CAFZ,SAAU,CADV,QAAS,CAYT,uBAAwB,CAMxB,0BAA2B,CAhB3B,UAiBF,CC1BA,2BAGE,UAEF,CACA,UACE,kBACF,CACA,UACE,kBACF,CACA,eAEE,SAAU,CADV,eAEF,CACA,cACE,eACF,CClBA,aAGE,eAAgB,CAFhB,eAAkB,CAClB,SAAU,CAEV,iBACF,CAGA,oBAME,kBAAmB,CAFnB,QAAS,CAHT,UAAW,CAMX,QAAS,CACT,iBAAkB,CANlB,iBAAkB,CAClB,KAAM,CAEN,UAIF,CAGA,yBACE,aAAc,CAEd,mBAAoB,CACpB,iBAAkB,CAFlB,SAGF,CAEA,8BACE,aAAc,CACd,gBACF,CAEA,0CAEE,aAAc,CADd,cAEF,CAEA,yCAEE,aAAc,CADd,eAEF,CAEA,wDACE,aACF,CAGA,6HAEE,aACF,CAGA,0BAEE,kBAAmB,CAOnB,iBAAkB,CANlB,UAAW,CAEX,eAAgB,CAChB,eAAgB,CAChB,eAAgB,CANhB,mBAAoB,CAGpB,gBAAkB,CAIlB,iBAEF,CAGA,iCACE,wBACF,CAEA,yCACE,kBACF,CAEA,6BAGE,0CAAiD,CAFjD,YAAe,CACf,gBAEF,CAGA,gCASE,6BAAkB,CAAlB,0BAAkB,CANlB,WAAY,CACZ,QAAS,CAGT,mBAAoB,CADpB,iBAAkB,CALlB,UAAW,CASX,QAAS,CALT,OAMF,CAGA,2GAEE,0BACF,CAEA,+CACE,0BACF,CAGA,yBASE,kCAAmC,CAGnC,kBAAmB,CACnB,iBAAkB,CAClB,4BAA6B,CAH7B,UAAW,CAJX,eAAgB,CAJhB,iBAAkB,CAElB,mBAAoB,CADpB,eAAmB,CAFnB,WAAY,CAcZ,QAAS,CART,gBAAiB,CAUjB,kBAAmB,CARnB,iBAAkB,CAKlB,iBAAkB,CATlB,mBAAoB,CALpB,UAkBF,CAGA,gCACC,kBACD,CAEA,yBACE,gBACF,CAGA,uCACE,yCACE,eACF,CACF,CAEA,qCACE,oBACE,YACF,CAEA,yBAGE,gBAAmB,CADnB,iBAAkB,CADlB,UAGF,CAEA,8BACE,eACF,CAEA,0BAIE,aAAc,CADd,eAAgB,CAFhB,eAAkB,CAClB,WAGF,CAEA,gCAIE,2BAA4B,CAD5B,8BAA+B,CAD/B,SAAU,CADV,UAAW,CAIX,SACF,CAEA,+CAEE,2BAA4B,CAD5B,8BAEF,CAEA,yBAEE,WAAY,CACZ,SAAU,CACV,oBAAuB,CAHvB,iBAIF,CACF","file":"index.css","sourcesContent":[".twist {\n transform: scaleY(-1);\n}\n\ninput[type='color']:not(.browser-default) {\n margin: 0px 0 8px 0;\n /** Copied from input[type=number] */\n background-color: transparent;\n border: none;\n border-bottom: 1px solid #9e9e9e;\n border-radius: 0;\n outline: none;\n height: 3rem;\n width: 100%;\n font-size: 16px;\n padding: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;\n transition: border 0.3s, -webkit-box-shadow 0.3s;\n transition: box-shadow 0.3s, border 0.3s;\n transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 0.3s;\n}\n\n.input-field.options > label {\n top: -2.5rem;\n}",".codeblock {\n margin: 1.5rem 0 2.5rem 0;\n}\n.codeblock > div {\n margin-bottom: 1rem;\n}\n.codeblock > label {\n display: inline-block;\n}\n",".kanban .kanban__draggable {\n cursor: move; /* fallback if grab cursor is unsupported */\n cursor: grab;\n cursor: -moz-grab;\n cursor: -webkit-grab;\n}\n\n/* (Optional) Apply a \"closed-hand\" cursor during drag operation. */\n.kanban .kanban__draggable:active {\n cursor: grabbing;\n cursor: -moz-grabbing;\n cursor: -webkit-grabbing;\n}\n\n.kanban .kanban__below {\n /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+100,1e5799+100,1e5799+100&0+0,0.7+100 */\n background: -moz-linear-gradient(top, rgba(30, 87, 153, 0) 0%, rgba(30, 87, 153, 0.7) 100%); /* FF3.6-15 */\n background: -webkit-linear-gradient(\n top,\n rgba(30, 87, 153, 0) 0%,\n rgba(30, 87, 153, 0.7) 100%\n ); /* Chrome10-25,Safari5.1-6 */\n background: linear-gradient(\n to bottom,\n rgba(30, 87, 153, 0) 0%,\n rgba(30, 87, 153, 0.7) 100%\n ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */\n filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#b31e5799',GradientType=0 ); /* IE6-9 */\n}\n\n.kanban .kanban__above {\n /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,1e5799+0,1e5799+0&0.7+0,0+100 */\n background: -moz-linear-gradient(top, rgba(30, 87, 153, 0.7) 0%, rgba(30, 87, 153, 0) 100%); /* FF3.6-15 */\n background: -webkit-linear-gradient(\n top,\n rgba(30, 87, 153, 0.7) 0%,\n rgba(30, 87, 153, 0) 100%\n ); /* Chrome10-25,Safari5.1-6 */\n background: linear-gradient(\n to bottom,\n rgba(30, 87, 153, 0.7) 0%,\n rgba(30, 87, 153, 0) 100%\n ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */\n filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b31e5799', endColorstr='#001e5799',GradientType=0 ); /* IE6-9 */\n}\n\n.kanban__item {\n padding-bottom: 12px;\n}\n.kanban__item.disabled {\n padding-bottom: 24px;\n}\n.kanban__item > .card-action {\n margin-bottom: 0;\n text-align: right;\n}",".map-editor .input-field .prefix ~ .collection {\n margin-left: 3rem;\n width: 92%;\n width: calc(100% - 3rem);\n}\n/* For truthy values, the checkbox is not visible when the item is selected, so make it white */\n.map-editor .active .checkbox-in-collection label > input[type='checkbox']:checked + span:before {\n top: -4px;\n left: -3px;\n width: 12px;\n height: 22px;\n border-top: 2px solid transparent;\n border-left: 2px solid transparent;\n border-right: 2px solid white; /* You need to change the colour here */\n border-bottom: 2px solid white; /* And here */\n -webkit-transform: rotate(40deg);\n -moz-transform: rotate(40deg);\n -ms-transform: rotate(40deg);\n -o-transform: rotate(40deg);\n transform: rotate(40deg);\n -webkit-backface-visibility: hidden;\n -webkit-transform-origin: 100% 100%;\n -moz-transform-origin: 100% 100%;\n -ms-transform-origin: 100% 100%;\n -o-transform-origin: 100% 100%;\n transform-origin: 100% 100%;\n}\n",".clear,\n.clear-10,\n.clear-15 {\n clear: both;\n /* overflow: hidden; Précaution pour IE 7 */\n}\n.clear-10 {\n margin-bottom: 10px;\n}\n.clear-15 {\n margin-bottom: 15px;\n}\nspan.mandatory {\n margin-left: 5px;\n color: red;\n}\nlabel+.switch {\n margin-top: 1rem;\n}\n",".mm_timeline {\n margin: 30px 0 0 0;\n padding: 0;\n list-style: none;\n position: relative;\n}\n\n/* The line */\n.mm_timeline:before {\n content: '';\n position: absolute;\n top: 0;\n bottom: 0;\n width: 10px;\n background: #afdcf8;\n left: 20%;\n margin-left: -10px;\n}\n\n/* The date/time */\n.mm_timeline > li .mm_time {\n display: block;\n width: 25%;\n padding-right: 100px;\n position: absolute;\n}\n\n.mm_timeline > li .mm_time span {\n display: block;\n text-align: right;\n}\n\n.mm_timeline > li .mm_time span:first-child {\n font-size: 0.9em;\n color: #bdd0db;\n}\n\n.mm_timeline > li .mm_time span:last-child {\n font-size: 1.4em;\n color: #3594cb;\n}\n\n.mm_timeline > li:nth-child(odd) .mm_time span:last-child {\n color: #6cbfee;\n}\n\n/* Active time */\n.mm_timeline > li.active:nth-child(even) .mm_time span:last-child,\n.mm_timeline > li.active:nth-child(odd) .mm_time span:last-child {\n color: rgb(6, 5, 88);\n}\n\n/* Right content */\n.mm_timeline > li .mm_label {\n margin: 0 0 15px 28%;\n background: #3594cb;\n color: #fff;\n padding: 0.6em 1em;\n font-size: 1.2em;\n font-weight: 300;\n line-height: 1.4;\n position: relative;\n border-radius: 5px;\n}\n\n/* Active label */\n.mm_timeline > li.active .mm_label {\n border: 4px solid rgb(6, 5, 88);\n}\n\n.mm_timeline > li:nth-child(odd) .mm_label {\n background: #6cbfee;\n}\n\n.mm_timeline > li .mm_label h5 {\n margin-top: 0px;\n padding: 0 0 10px 0;\n border-bottom: 1px solid rgba(255, 255, 255, 0.4);\n}\n\n/* The triangle */\n.mm_timeline > li .mm_label:after {\n right: 100%;\n border: solid transparent;\n content: ' ';\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n border-right-color: #3594cb;\n border-width: 10px;\n top: 10px;\n}\n\n/* Active triangle */\n.mm_timeline > li:nth-child(even).active .mm_label:after,\n.mm_timeline > li:nth-child(odd).active .mm_label:after {\n border-right-color: rgb(6, 5, 88);\n}\n\n.mm_timeline > li:nth-child(odd) .mm_label:after {\n border-right-color: #6cbfee;\n}\n\n/* The icons */\n.mm_timeline > li .mm_icon {\n width: 40px;\n height: 40px;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n font-size: 1.4em;\n line-height: 40px;\n -webkit-font-smoothing: antialiased;\n position: absolute;\n color: #fff;\n background: #46a4da;\n border-radius: 50%;\n box-shadow: 0 0 0 8px #afdcf8;\n text-align: center;\n left: 20%;\n /* top: 0; */\n margin: 0 0 0 -25px;\n}\n\n/* Active icon */\n.mm_timeline > li.active .mm_icon {\n\tbackground: rgb(6, 5, 88);\n}\n\n.mm_icon > .material-icons {\n line-height: 3rem;\n}\n\n/* Example Media Queries */\n@media screen and (max-width: 65.375em) {\n .mm_timeline > li .mm_time span:last-child {\n font-size: 1.5em;\n }\n}\n\n@media screen and (max-width: 47.2em) {\n .mm_timeline:before {\n display: none;\n }\n\n .mm_timeline > li .mm_time {\n width: 100%;\n position: relative;\n padding: 0 0 20px 0;\n }\n\n .mm_timeline > li .mm_time span {\n text-align: left;\n }\n\n .mm_timeline > li .mm_label {\n margin: 0 0 30px 0;\n padding: 1em;\n font-weight: 400;\n font-size: 95%;\n }\n\n .mm_timeline > li .mm_label:after {\n right: auto;\n left: 20px;\n border-right-color: transparent;\n border-bottom-color: #3594cb;\n top: -20px;\n }\n\n .mm_timeline > li:nth-child(odd) .mm_label:after {\n border-right-color: transparent;\n border-bottom-color: #6cbfee;\n }\n\n .mm_timeline > li .mm_icon {\n position: relative;\n float: right;\n left: auto;\n margin: -55px 5px 0 0px;\n }\n}\n"]}
|