jekyll-dlp 0.1.0
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/LICENSE.txt +21 -0
- data/README.md +40 -0
- data/_data/footer_links.yml +4 -0
- data/_data/homepage.yml +42 -0
- data/_data/nav.yml +4 -0
- data/_includes/css.html +3 -0
- data/_includes/footer.html +12 -0
- data/_includes/js.html +1 -0
- data/_includes/meta.html +27 -0
- data/_includes/nav.html +18 -0
- data/_layouts/blank.html +16 -0
- data/_layouts/default.html +28 -0
- data/_layouts/home.html +85 -0
- data/_sass/materialize/LICENSE +21 -0
- data/_sass/materialize/components/_badges.scss +55 -0
- data/_sass/materialize/components/_buttons.scss +322 -0
- data/_sass/materialize/components/_cards.scss +195 -0
- data/_sass/materialize/components/_carousel.scss +90 -0
- data/_sass/materialize/components/_chips.scss +90 -0
- data/_sass/materialize/components/_collapsible.scss +91 -0
- data/_sass/materialize/components/_color-classes.scss +32 -0
- data/_sass/materialize/components/_color-variables.scss +370 -0
- data/_sass/materialize/components/_datepicker.scss +191 -0
- data/_sass/materialize/components/_dropdown.scss +85 -0
- data/_sass/materialize/components/_global.scss +769 -0
- data/_sass/materialize/components/_grid.scss +156 -0
- data/_sass/materialize/components/_icons-material-design.scss +5 -0
- data/_sass/materialize/components/_materialbox.scss +43 -0
- data/_sass/materialize/components/_modal.scss +94 -0
- data/_sass/materialize/components/_navbar.scss +208 -0
- data/_sass/materialize/components/_normalize.scss +447 -0
- data/_sass/materialize/components/_preloader.scss +334 -0
- data/_sass/materialize/components/_pulse.scss +34 -0
- data/_sass/materialize/components/_sidenav.scss +216 -0
- data/_sass/materialize/components/_slider.scss +92 -0
- data/_sass/materialize/components/_table_of_contents.scss +33 -0
- data/_sass/materialize/components/_tabs.scss +99 -0
- data/_sass/materialize/components/_tapTarget.scss +103 -0
- data/_sass/materialize/components/_timepicker.scss +183 -0
- data/_sass/materialize/components/_toast.scss +58 -0
- data/_sass/materialize/components/_tooltip.scss +32 -0
- data/_sass/materialize/components/_transitions.scss +13 -0
- data/_sass/materialize/components/_typography.scss +60 -0
- data/_sass/materialize/components/_variables.scss +349 -0
- data/_sass/materialize/components/_waves.scss +114 -0
- data/_sass/materialize/components/forms/_checkboxes.scss +200 -0
- data/_sass/materialize/components/forms/_file-input.scss +44 -0
- data/_sass/materialize/components/forms/_forms.scss +22 -0
- data/_sass/materialize/components/forms/_input-fields.scss +354 -0
- data/_sass/materialize/components/forms/_radio-buttons.scss +115 -0
- data/_sass/materialize/components/forms/_range.scss +161 -0
- data/_sass/materialize/components/forms/_select.scss +180 -0
- data/_sass/materialize/components/forms/_switches.scss +89 -0
- data/assets/css/main.css +65 -0
- data/assets/css/materialize.scss +44 -0
- metadata +140 -0
@@ -0,0 +1,322 @@
|
|
1
|
+
// shared styles
|
2
|
+
.btn,
|
3
|
+
.btn-flat {
|
4
|
+
border: $button-border;
|
5
|
+
border-radius: $button-radius;
|
6
|
+
display: inline-block;
|
7
|
+
height: $button-height;
|
8
|
+
line-height: $button-height;
|
9
|
+
padding: $button-padding;
|
10
|
+
text-transform: uppercase;
|
11
|
+
vertical-align: middle;
|
12
|
+
-webkit-tap-highlight-color: transparent; // Gets rid of tap active state
|
13
|
+
}
|
14
|
+
|
15
|
+
// Disabled shared style
|
16
|
+
.btn.disabled,
|
17
|
+
.btn-floating.disabled,
|
18
|
+
.btn-large.disabled,
|
19
|
+
.btn-small.disabled,
|
20
|
+
.btn-flat.disabled,
|
21
|
+
.btn:disabled,
|
22
|
+
.btn-floating:disabled,
|
23
|
+
.btn-large:disabled,
|
24
|
+
.btn-small:disabled,
|
25
|
+
.btn-flat:disabled,
|
26
|
+
.btn[disabled],
|
27
|
+
.btn-floating[disabled],
|
28
|
+
.btn-large[disabled],
|
29
|
+
.btn-small[disabled],
|
30
|
+
.btn-flat[disabled] {
|
31
|
+
pointer-events: none;
|
32
|
+
background-color: $button-disabled-background !important;
|
33
|
+
box-shadow: none;
|
34
|
+
color: $button-disabled-color !important;
|
35
|
+
cursor: default;
|
36
|
+
&:hover {
|
37
|
+
background-color: $button-disabled-background !important;
|
38
|
+
color: $button-disabled-color !important;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
// Shared icon styles
|
43
|
+
.btn,
|
44
|
+
.btn-floating,
|
45
|
+
.btn-large,
|
46
|
+
.btn-small,
|
47
|
+
.btn-flat {
|
48
|
+
font-size: $button-font-size;
|
49
|
+
outline: 0;
|
50
|
+
i {
|
51
|
+
font-size: $button-icon-font-size;
|
52
|
+
line-height: inherit;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
// Shared focus button style
|
57
|
+
.btn,
|
58
|
+
.btn-floating {
|
59
|
+
&:focus {
|
60
|
+
background-color: darken($button-raised-background, 10%);
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
// Raised Button
|
65
|
+
.btn {
|
66
|
+
text-decoration: none;
|
67
|
+
color: $button-raised-color;
|
68
|
+
background-color: $button-raised-background;
|
69
|
+
text-align: center;
|
70
|
+
letter-spacing: .5px;
|
71
|
+
@extend .z-depth-1;
|
72
|
+
transition: background-color .2s ease-out;
|
73
|
+
cursor: pointer;
|
74
|
+
&:hover {
|
75
|
+
background-color: $button-raised-background-hover;
|
76
|
+
@extend .z-depth-1-half;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
// Floating button
|
81
|
+
.btn-floating {
|
82
|
+
&:hover {
|
83
|
+
background-color: $button-floating-background-hover;
|
84
|
+
@extend .z-depth-1-half;
|
85
|
+
}
|
86
|
+
&:before {
|
87
|
+
border-radius: 0;
|
88
|
+
}
|
89
|
+
&.btn-large {
|
90
|
+
&.halfway-fab {
|
91
|
+
bottom: -$button-floating-large-size / 2;
|
92
|
+
}
|
93
|
+
width: $button-floating-large-size;
|
94
|
+
height: $button-floating-large-size;
|
95
|
+
padding: 0;
|
96
|
+
i {
|
97
|
+
line-height: $button-floating-large-size;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
&.btn-small {
|
102
|
+
&.halfway-fab {
|
103
|
+
bottom: -$button-floating-small-size / 2;
|
104
|
+
}
|
105
|
+
width: $button-floating-small-size;
|
106
|
+
height: $button-floating-small-size;
|
107
|
+
i {
|
108
|
+
line-height: $button-floating-small-size;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
&.halfway-fab {
|
113
|
+
&.left {
|
114
|
+
right: auto;
|
115
|
+
left: 24px;
|
116
|
+
}
|
117
|
+
position: absolute;
|
118
|
+
right: 24px;
|
119
|
+
bottom: -$button-floating-size / 2;
|
120
|
+
}
|
121
|
+
display: inline-block;
|
122
|
+
color: $button-floating-color;
|
123
|
+
position: relative;
|
124
|
+
overflow: hidden;
|
125
|
+
z-index: 1;
|
126
|
+
width: $button-floating-size;
|
127
|
+
height: $button-floating-size;
|
128
|
+
line-height: $button-floating-size;
|
129
|
+
padding: 0;
|
130
|
+
background-color: $button-floating-background;
|
131
|
+
border-radius: $button-floating-radius;
|
132
|
+
@extend .z-depth-1;
|
133
|
+
transition: background-color .3s;
|
134
|
+
cursor: pointer;
|
135
|
+
vertical-align: middle;
|
136
|
+
i {
|
137
|
+
width: inherit;
|
138
|
+
display: inline-block;
|
139
|
+
text-align: center;
|
140
|
+
color: $button-floating-color;
|
141
|
+
font-size: $button-large-icon-font-size;
|
142
|
+
line-height: $button-floating-size;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
// button fix
|
147
|
+
button.btn-floating {
|
148
|
+
border: $button-border;
|
149
|
+
}
|
150
|
+
|
151
|
+
// Fixed Action Button
|
152
|
+
.fixed-action-btn {
|
153
|
+
&.active {
|
154
|
+
ul {
|
155
|
+
visibility: visible;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
// Directions
|
160
|
+
&.direction-left,
|
161
|
+
&.direction-right {
|
162
|
+
padding: 0 0 0 15px;
|
163
|
+
ul {
|
164
|
+
text-align: right;
|
165
|
+
right: 64px;
|
166
|
+
top: 50%;
|
167
|
+
transform: translateY(-50%);
|
168
|
+
height: 100%;
|
169
|
+
left: auto;
|
170
|
+
/*width 100% only goes to width of button container */
|
171
|
+
width: 500px;
|
172
|
+
li {
|
173
|
+
display: inline-block;
|
174
|
+
margin: 7.5px 15px 0 0;
|
175
|
+
}
|
176
|
+
}
|
177
|
+
}
|
178
|
+
&.direction-right {
|
179
|
+
padding: 0 15px 0 0;
|
180
|
+
ul {
|
181
|
+
text-align: left;
|
182
|
+
direction: rtl;
|
183
|
+
left: 64px;
|
184
|
+
right: auto;
|
185
|
+
li {
|
186
|
+
margin: 7.5px 0 0 15px;
|
187
|
+
}
|
188
|
+
}
|
189
|
+
}
|
190
|
+
&.direction-bottom {
|
191
|
+
padding: 0 0 15px 0;
|
192
|
+
ul {
|
193
|
+
top: 64px;
|
194
|
+
bottom: auto;
|
195
|
+
display: flex;
|
196
|
+
flex-direction: column-reverse;
|
197
|
+
li {
|
198
|
+
margin: 15px 0 0 0;
|
199
|
+
}
|
200
|
+
}
|
201
|
+
}
|
202
|
+
&.toolbar {
|
203
|
+
&.active {
|
204
|
+
&>a i {
|
205
|
+
opacity: 0;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
padding: 0;
|
209
|
+
height: $button-floating-large-size;
|
210
|
+
ul {
|
211
|
+
display: flex;
|
212
|
+
top: 0;
|
213
|
+
bottom: 0;
|
214
|
+
z-index: 1;
|
215
|
+
li {
|
216
|
+
flex: 1;
|
217
|
+
display: inline-block;
|
218
|
+
margin: 0;
|
219
|
+
height: 100%;
|
220
|
+
transition: none;
|
221
|
+
a {
|
222
|
+
display: block;
|
223
|
+
overflow: hidden;
|
224
|
+
position: relative;
|
225
|
+
width: 100%;
|
226
|
+
height: 100%;
|
227
|
+
background-color: transparent;
|
228
|
+
box-shadow: none;
|
229
|
+
color: #fff;
|
230
|
+
line-height: $button-floating-large-size;
|
231
|
+
z-index: 1;
|
232
|
+
i {
|
233
|
+
line-height: inherit;
|
234
|
+
}
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
}
|
239
|
+
position: fixed;
|
240
|
+
right: 23px;
|
241
|
+
bottom: 23px;
|
242
|
+
padding-top: 15px;
|
243
|
+
margin-bottom: 0;
|
244
|
+
z-index: 997;
|
245
|
+
ul {
|
246
|
+
left: 0;
|
247
|
+
right: 0;
|
248
|
+
text-align: center;
|
249
|
+
position: absolute;
|
250
|
+
bottom: 64px;
|
251
|
+
margin: 0;
|
252
|
+
visibility: hidden;
|
253
|
+
li {
|
254
|
+
margin-bottom: 15px;
|
255
|
+
}
|
256
|
+
a.btn-floating {
|
257
|
+
opacity: 0;
|
258
|
+
}
|
259
|
+
}
|
260
|
+
.fab-backdrop {
|
261
|
+
position: absolute;
|
262
|
+
top: 0;
|
263
|
+
left: 0;
|
264
|
+
z-index: -1;
|
265
|
+
width: $button-floating-size;
|
266
|
+
height: $button-floating-size;
|
267
|
+
background-color: $button-floating-background;
|
268
|
+
border-radius: $button-floating-radius;
|
269
|
+
transform: scale(0);
|
270
|
+
}
|
271
|
+
}
|
272
|
+
|
273
|
+
// Flat button
|
274
|
+
.btn-flat {
|
275
|
+
box-shadow: none;
|
276
|
+
background-color: transparent;
|
277
|
+
color: $button-flat-color;
|
278
|
+
cursor: pointer;
|
279
|
+
transition: background-color .2s;
|
280
|
+
&:focus,
|
281
|
+
&:hover {
|
282
|
+
box-shadow: none;
|
283
|
+
}
|
284
|
+
&:focus {
|
285
|
+
background-color: rgba(0, 0, 0, .1);
|
286
|
+
}
|
287
|
+
&.disabled,
|
288
|
+
&.btn-flat[disabled] {
|
289
|
+
background-color: transparent !important;
|
290
|
+
color: $button-flat-disabled-color !important;
|
291
|
+
cursor: default;
|
292
|
+
}
|
293
|
+
}
|
294
|
+
|
295
|
+
// Large button
|
296
|
+
.btn-large {
|
297
|
+
@extend .btn;
|
298
|
+
height: $button-large-height;
|
299
|
+
line-height: $button-large-height;
|
300
|
+
font-size: $button-large-font-size;
|
301
|
+
padding: 0 28px;
|
302
|
+
|
303
|
+
i {
|
304
|
+
font-size: $button-large-icon-font-size;
|
305
|
+
}
|
306
|
+
}
|
307
|
+
|
308
|
+
// Small button
|
309
|
+
.btn-small {
|
310
|
+
@extend .btn;
|
311
|
+
height: $button-small-height;
|
312
|
+
line-height: $button-small-height;
|
313
|
+
font-size: $button-small-font-size;
|
314
|
+
i {
|
315
|
+
font-size: $button-small-icon-font-size;
|
316
|
+
}
|
317
|
+
}
|
318
|
+
|
319
|
+
// Block button
|
320
|
+
.btn-block {
|
321
|
+
display: block;
|
322
|
+
}
|
@@ -0,0 +1,195 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
.card-panel {
|
4
|
+
transition: box-shadow .25s;
|
5
|
+
padding: $card-padding;
|
6
|
+
margin: $element-top-margin 0 $element-bottom-margin 0;
|
7
|
+
border-radius: 2px;
|
8
|
+
@extend .z-depth-1;
|
9
|
+
background-color: $card-bg-color;
|
10
|
+
}
|
11
|
+
|
12
|
+
.card {
|
13
|
+
position: relative;
|
14
|
+
margin: $element-top-margin 0 $element-bottom-margin 0;
|
15
|
+
background-color: $card-bg-color;
|
16
|
+
transition: box-shadow .25s;
|
17
|
+
border-radius: 2px;
|
18
|
+
@extend .z-depth-1;
|
19
|
+
|
20
|
+
|
21
|
+
.card-title {
|
22
|
+
font-size: 24px;
|
23
|
+
font-weight: 300;
|
24
|
+
&.activator {
|
25
|
+
cursor: pointer;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
// Card Sizes
|
30
|
+
&.small, &.medium, &.large {
|
31
|
+
position: relative;
|
32
|
+
|
33
|
+
.card-image {
|
34
|
+
max-height: 60%;
|
35
|
+
overflow: hidden;
|
36
|
+
}
|
37
|
+
.card-image + .card-content {
|
38
|
+
max-height: 40%;
|
39
|
+
}
|
40
|
+
.card-content {
|
41
|
+
max-height: 100%;
|
42
|
+
overflow: hidden;
|
43
|
+
}
|
44
|
+
.card-action {
|
45
|
+
position: absolute;
|
46
|
+
bottom: 0;
|
47
|
+
left: 0;
|
48
|
+
right: 0;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
&.small {
|
53
|
+
height: 300px;
|
54
|
+
}
|
55
|
+
|
56
|
+
&.medium {
|
57
|
+
height: 400px;
|
58
|
+
}
|
59
|
+
|
60
|
+
&.large {
|
61
|
+
height: 500px;
|
62
|
+
}
|
63
|
+
|
64
|
+
// Horizontal Cards
|
65
|
+
&.horizontal {
|
66
|
+
&.small, &.medium, &.large {
|
67
|
+
.card-image {
|
68
|
+
height: 100%;
|
69
|
+
max-height: none;
|
70
|
+
overflow: visible;
|
71
|
+
|
72
|
+
img {
|
73
|
+
height: 100%;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
display: flex;
|
79
|
+
|
80
|
+
.card-image {
|
81
|
+
max-width: 50%;
|
82
|
+
img {
|
83
|
+
border-radius: 2px 0 0 2px;
|
84
|
+
max-width: 100%;
|
85
|
+
width: auto;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
.card-stacked {
|
90
|
+
display: flex;
|
91
|
+
flex-direction: column;
|
92
|
+
flex: 1;
|
93
|
+
position: relative;
|
94
|
+
|
95
|
+
.card-content {
|
96
|
+
flex-grow: 1;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
// Sticky Action Section
|
102
|
+
&.sticky-action {
|
103
|
+
.card-action {
|
104
|
+
z-index: 2;
|
105
|
+
}
|
106
|
+
|
107
|
+
.card-reveal {
|
108
|
+
z-index: 1;
|
109
|
+
padding-bottom: 64px;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
.card-image {
|
117
|
+
position: relative;
|
118
|
+
|
119
|
+
// Image background for content
|
120
|
+
img {
|
121
|
+
display: block;
|
122
|
+
border-radius: 2px 2px 0 0;
|
123
|
+
position: relative;
|
124
|
+
left: 0;
|
125
|
+
right: 0;
|
126
|
+
top: 0;
|
127
|
+
bottom: 0;
|
128
|
+
width: 100%;
|
129
|
+
}
|
130
|
+
|
131
|
+
.card-title {
|
132
|
+
color: $card-bg-color;
|
133
|
+
position: absolute;
|
134
|
+
bottom: 0;
|
135
|
+
left: 0;
|
136
|
+
max-width: 100%;
|
137
|
+
padding: $card-padding;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
.card-content {
|
142
|
+
padding: $card-padding;
|
143
|
+
border-radius: 0 0 2px 2px;
|
144
|
+
|
145
|
+
p {
|
146
|
+
margin: 0;
|
147
|
+
}
|
148
|
+
.card-title {
|
149
|
+
display: block;
|
150
|
+
line-height: 32px;
|
151
|
+
margin-bottom: 8px;
|
152
|
+
|
153
|
+
i {
|
154
|
+
line-height: 32px;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
.card-action {
|
160
|
+
&:last-child {
|
161
|
+
border-radius: 0 0 2px 2px;
|
162
|
+
}
|
163
|
+
background-color: inherit; // Use inherit to inherit color classes
|
164
|
+
border-top: 1px solid rgba(160,160,160,.2);
|
165
|
+
position: relative;
|
166
|
+
padding: 16px $card-padding;
|
167
|
+
|
168
|
+
a:not(.btn):not(.btn-large):not(.btn-floating) {
|
169
|
+
color: $card-link-color;
|
170
|
+
margin-right: $card-padding;
|
171
|
+
transition: color .3s ease;
|
172
|
+
text-transform: uppercase;
|
173
|
+
|
174
|
+
&:hover { color: $card-link-color-light; }
|
175
|
+
}
|
176
|
+
}
|
177
|
+
|
178
|
+
.card-reveal {
|
179
|
+
padding: $card-padding;
|
180
|
+
position: absolute;
|
181
|
+
background-color: $card-bg-color;
|
182
|
+
width: 100%;
|
183
|
+
overflow-y: auto;
|
184
|
+
left: 0;
|
185
|
+
top: 100%;
|
186
|
+
height: 100%;
|
187
|
+
z-index: 3;
|
188
|
+
display: none;
|
189
|
+
|
190
|
+
.card-title {
|
191
|
+
cursor: pointer;
|
192
|
+
display: block;
|
193
|
+
}
|
194
|
+
}
|
195
|
+
}
|
@@ -0,0 +1,90 @@
|
|
1
|
+
.carousel {
|
2
|
+
&.carousel-slider {
|
3
|
+
top: 0;
|
4
|
+
left: 0;
|
5
|
+
|
6
|
+
.carousel-fixed-item {
|
7
|
+
&.with-indicators {
|
8
|
+
bottom: 68px;
|
9
|
+
}
|
10
|
+
|
11
|
+
position: absolute;
|
12
|
+
left: 0;
|
13
|
+
right: 0;
|
14
|
+
bottom: 20px;
|
15
|
+
z-index: 1;
|
16
|
+
}
|
17
|
+
|
18
|
+
.carousel-item {
|
19
|
+
width: 100%;
|
20
|
+
height: 100%;
|
21
|
+
min-height: $carousel-height;
|
22
|
+
position: absolute;
|
23
|
+
top: 0;
|
24
|
+
left: 0;
|
25
|
+
|
26
|
+
h2 {
|
27
|
+
font-size: 24px;
|
28
|
+
font-weight: 500;
|
29
|
+
line-height: 32px;
|
30
|
+
}
|
31
|
+
|
32
|
+
p {
|
33
|
+
font-size: 15px;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
overflow: hidden;
|
39
|
+
position: relative;
|
40
|
+
width: 100%;
|
41
|
+
height: $carousel-height;
|
42
|
+
perspective: 500px;
|
43
|
+
transform-style: preserve-3d;
|
44
|
+
transform-origin: 0% 50%;
|
45
|
+
|
46
|
+
.carousel-item {
|
47
|
+
visibility: hidden;
|
48
|
+
width: $carousel-item-width;
|
49
|
+
height: $carousel-item-height;
|
50
|
+
position: absolute;
|
51
|
+
top: 0;
|
52
|
+
left: 0;
|
53
|
+
|
54
|
+
& > img {
|
55
|
+
width: 100%;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
.indicators {
|
60
|
+
position: absolute;
|
61
|
+
text-align: center;
|
62
|
+
left: 0;
|
63
|
+
right: 0;
|
64
|
+
bottom: 0;
|
65
|
+
margin: 0;
|
66
|
+
|
67
|
+
.indicator-item {
|
68
|
+
&.active {
|
69
|
+
background-color: #fff;
|
70
|
+
}
|
71
|
+
|
72
|
+
display: inline-block;
|
73
|
+
position: relative;
|
74
|
+
cursor: pointer;
|
75
|
+
height: 8px;
|
76
|
+
width: 8px;
|
77
|
+
margin: 24px 4px;
|
78
|
+
background-color: rgba(255,255,255,.5);
|
79
|
+
|
80
|
+
transition: background-color .3s;
|
81
|
+
border-radius: 50%;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
// Materialbox compatibility
|
86
|
+
&.scrolling .carousel-item .materialboxed,
|
87
|
+
.carousel-item:not(.active) .materialboxed {
|
88
|
+
pointer-events: none;
|
89
|
+
}
|
90
|
+
}
|
@@ -0,0 +1,90 @@
|
|
1
|
+
.chip {
|
2
|
+
&:focus {
|
3
|
+
outline: none;
|
4
|
+
background-color: $chip-selected-color;
|
5
|
+
color: #fff;
|
6
|
+
}
|
7
|
+
|
8
|
+
display: inline-block;
|
9
|
+
height: 32px;
|
10
|
+
font-size: 13px;
|
11
|
+
font-weight: 500;
|
12
|
+
color: rgba(0,0,0,.6);
|
13
|
+
line-height: 32px;
|
14
|
+
padding: 0 12px;
|
15
|
+
border-radius: 16px;
|
16
|
+
background-color: $chip-bg-color;
|
17
|
+
margin-bottom: $chip-margin;
|
18
|
+
margin-right: $chip-margin;
|
19
|
+
|
20
|
+
> img {
|
21
|
+
float: left;
|
22
|
+
margin: 0 8px 0 -12px;
|
23
|
+
height: 32px;
|
24
|
+
width: 32px;
|
25
|
+
border-radius: 50%;
|
26
|
+
}
|
27
|
+
|
28
|
+
.close {
|
29
|
+
cursor: pointer;
|
30
|
+
float: right;
|
31
|
+
font-size: 16px;
|
32
|
+
line-height: 32px;
|
33
|
+
padding-left: 8px;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.chips {
|
38
|
+
border: none;
|
39
|
+
border-bottom: 1px solid $chip-border-color;
|
40
|
+
box-shadow: none;
|
41
|
+
margin: $input-margin;
|
42
|
+
min-height: 45px;
|
43
|
+
outline: none;
|
44
|
+
transition: all .3s;
|
45
|
+
|
46
|
+
&.focus {
|
47
|
+
border-bottom: 1px solid $chip-selected-color;
|
48
|
+
box-shadow: 0 1px 0 0 $chip-selected-color;
|
49
|
+
}
|
50
|
+
|
51
|
+
&:hover {
|
52
|
+
cursor: text;
|
53
|
+
}
|
54
|
+
|
55
|
+
.input {
|
56
|
+
background: none;
|
57
|
+
border: 0;
|
58
|
+
color: rgba(0,0,0,.6);
|
59
|
+
display: inline-block;
|
60
|
+
font-size: $input-font-size;
|
61
|
+
height: $input-height;
|
62
|
+
line-height: 32px;
|
63
|
+
outline: 0;
|
64
|
+
margin: 0;
|
65
|
+
padding: 0 !important;
|
66
|
+
width: 120px !important;
|
67
|
+
}
|
68
|
+
|
69
|
+
.input:focus {
|
70
|
+
border: 0 !important;
|
71
|
+
box-shadow: none !important;
|
72
|
+
}
|
73
|
+
|
74
|
+
// Autocomplete
|
75
|
+
.autocomplete-content {
|
76
|
+
margin-top: 0;
|
77
|
+
margin-bottom: 0;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
// Form prefix
|
82
|
+
.prefix ~ .chips {
|
83
|
+
margin-left: 3rem;
|
84
|
+
width: 92%;
|
85
|
+
width: calc(100% - 3rem);
|
86
|
+
}
|
87
|
+
.chips:empty ~ label {
|
88
|
+
font-size: 0.8rem;
|
89
|
+
transform: translateY(-140%);
|
90
|
+
}
|