@materializecss/materialize 1.1.0-alpha → 1.2.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.
- package/Gruntfile.js +712 -725
- package/LICENSE +21 -21
- package/README.md +91 -97
- package/dist/css/materialize.css +659 -1140
- package/dist/css/materialize.min.css +7 -7
- package/dist/js/materialize.js +4679 -4654
- package/dist/js/materialize.min.js +6 -6
- package/extras/noUiSlider/nouislider.css +404 -406
- package/extras/noUiSlider/nouislider.js +2147 -2147
- package/js/anime.min.js +34 -34
- package/js/autocomplete.js +479 -479
- package/js/buttons.js +354 -354
- package/js/cards.js +40 -40
- package/js/carousel.js +732 -717
- package/js/cash.js +960 -960
- package/js/characterCounter.js +136 -136
- package/js/chips.js +486 -486
- package/js/collapsible.js +275 -275
- package/js/component.js +44 -44
- package/js/datepicker.js +983 -976
- package/js/dropdown.js +669 -668
- package/js/forms.js +285 -275
- package/js/global.js +428 -424
- package/js/materialbox.js +453 -453
- package/js/modal.js +382 -382
- package/js/parallax.js +138 -138
- package/js/pushpin.js +148 -148
- package/js/range.js +263 -263
- package/js/scrollspy.js +295 -295
- package/js/select.js +391 -451
- package/js/sidenav.js +583 -583
- package/js/slider.js +359 -359
- package/js/tabs.js +402 -402
- package/js/tapTarget.js +315 -315
- package/js/timepicker.js +712 -647
- package/js/toasts.js +325 -322
- package/js/tooltip.js +320 -320
- package/js/waves.js +614 -614
- package/package.json +84 -74
- package/sass/_style.scss +929 -0
- package/sass/components/_badges.scss +55 -55
- package/sass/components/_buttons.scss +322 -322
- package/sass/components/_cards.scss +195 -195
- package/sass/components/_carousel.scss +90 -90
- package/sass/components/_chips.scss +96 -96
- package/sass/components/_collapsible.scss +91 -91
- package/sass/components/_collection.scss +107 -0
- package/sass/components/_color-classes.scss +32 -32
- package/sass/components/_color-variables.scss +370 -370
- package/sass/components/_datepicker.scss +191 -191
- package/sass/components/_dropdown.scss +84 -84
- package/sass/components/_global.scss +646 -771
- package/sass/components/_grid.scss +158 -156
- package/sass/components/_icons-material-design.scss +5 -5
- package/sass/components/_materialbox.scss +42 -42
- package/sass/components/_modal.scss +97 -97
- package/sass/components/_navbar.scss +208 -208
- package/sass/components/_normalize.scss +447 -447
- package/sass/components/_preloader.scss +334 -334
- package/sass/components/_pulse.scss +34 -34
- package/sass/components/_sidenav.scss +214 -214
- package/sass/components/_slider.scss +91 -91
- package/sass/components/_table_of_contents.scss +33 -33
- package/sass/components/_tabs.scss +99 -99
- package/sass/components/_tapTarget.scss +103 -103
- package/sass/components/_timepicker.scss +199 -183
- package/sass/components/_toast.scss +58 -58
- package/sass/components/_tooltip.scss +32 -32
- package/sass/components/_transitions.scss +12 -12
- package/sass/components/_typography.scss +62 -60
- package/sass/components/_variables.scss +352 -349
- package/sass/components/_waves.scss +187 -187
- package/sass/components/forms/_checkboxes.scss +200 -200
- package/sass/components/forms/_file-input.scss +44 -44
- package/sass/components/forms/_forms.scss +22 -22
- package/sass/components/forms/_input-fields.scss +388 -379
- package/sass/components/forms/_radio-buttons.scss +115 -115
- package/sass/components/forms/_range.scss +161 -161
- package/sass/components/forms/_select.scss +199 -199
- package/sass/components/forms/_switches.scss +91 -91
- package/sass/ghpages-materialize.scss +7 -0
- package/sass/materialize.scss +42 -41
- package/CHANGELOG.md +0 -76
- package/HISTORY.md +0 -527
package/dist/css/materialize.css
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Materialize v1.
|
|
2
|
+
* Materialize v1.2.0 (https://materializecss.github.io/materialize)
|
|
3
3
|
* Copyright 2014-2021 Materialize
|
|
4
4
|
* MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
|
|
5
5
|
*/
|
|
6
|
+
@charset "UTF-8";
|
|
6
7
|
.materialize-red {
|
|
7
8
|
background-color: #e51c23 !important;
|
|
8
9
|
}
|
|
@@ -2140,12 +2141,12 @@
|
|
|
2140
2141
|
}
|
|
2141
2142
|
|
|
2142
2143
|
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
|
2143
|
-
/* Document
|
|
2144
|
+
/* Document
|
|
2144
2145
|
========================================================================== */
|
|
2145
|
-
/**
|
|
2146
|
-
* 1. Correct the line height in all browsers.
|
|
2147
|
-
* 2. Prevent adjustments of font size after orientation changes in
|
|
2148
|
-
* IE on Windows Phone and in iOS.
|
|
2146
|
+
/**
|
|
2147
|
+
* 1. Correct the line height in all browsers.
|
|
2148
|
+
* 2. Prevent adjustments of font size after orientation changes in
|
|
2149
|
+
* IE on Windows Phone and in iOS.
|
|
2149
2150
|
*/
|
|
2150
2151
|
html {
|
|
2151
2152
|
line-height: 1.15;
|
|
@@ -2156,17 +2157,17 @@ html {
|
|
|
2156
2157
|
/* 2 */
|
|
2157
2158
|
}
|
|
2158
2159
|
|
|
2159
|
-
/* Sections
|
|
2160
|
+
/* Sections
|
|
2160
2161
|
========================================================================== */
|
|
2161
|
-
/**
|
|
2162
|
-
* Remove the margin in all browsers (opinionated).
|
|
2162
|
+
/**
|
|
2163
|
+
* Remove the margin in all browsers (opinionated).
|
|
2163
2164
|
*/
|
|
2164
2165
|
body {
|
|
2165
2166
|
margin: 0;
|
|
2166
2167
|
}
|
|
2167
2168
|
|
|
2168
|
-
/**
|
|
2169
|
-
* Add the correct display in IE 9-.
|
|
2169
|
+
/**
|
|
2170
|
+
* Add the correct display in IE 9-.
|
|
2170
2171
|
*/
|
|
2171
2172
|
article,
|
|
2172
2173
|
aside,
|
|
@@ -2177,20 +2178,20 @@ section {
|
|
|
2177
2178
|
display: block;
|
|
2178
2179
|
}
|
|
2179
2180
|
|
|
2180
|
-
/**
|
|
2181
|
-
* Correct the font size and margin on `h1` elements within `section` and
|
|
2182
|
-
* `article` contexts in Chrome, Firefox, and Safari.
|
|
2181
|
+
/**
|
|
2182
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
|
2183
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
|
2183
2184
|
*/
|
|
2184
2185
|
h1 {
|
|
2185
2186
|
font-size: 2em;
|
|
2186
2187
|
margin: 0.67em 0;
|
|
2187
2188
|
}
|
|
2188
2189
|
|
|
2189
|
-
/* Grouping content
|
|
2190
|
+
/* Grouping content
|
|
2190
2191
|
========================================================================== */
|
|
2191
|
-
/**
|
|
2192
|
-
* Add the correct display in IE 9-.
|
|
2193
|
-
* 1. Add the correct display in IE.
|
|
2192
|
+
/**
|
|
2193
|
+
* Add the correct display in IE 9-.
|
|
2194
|
+
* 1. Add the correct display in IE.
|
|
2194
2195
|
*/
|
|
2195
2196
|
figcaption,
|
|
2196
2197
|
figure,
|
|
@@ -2199,16 +2200,16 @@ main {
|
|
|
2199
2200
|
display: block;
|
|
2200
2201
|
}
|
|
2201
2202
|
|
|
2202
|
-
/**
|
|
2203
|
-
* Add the correct margin in IE 8.
|
|
2203
|
+
/**
|
|
2204
|
+
* Add the correct margin in IE 8.
|
|
2204
2205
|
*/
|
|
2205
2206
|
figure {
|
|
2206
2207
|
margin: 1em 40px;
|
|
2207
2208
|
}
|
|
2208
2209
|
|
|
2209
|
-
/**
|
|
2210
|
-
* 1. Add the correct box sizing in Firefox.
|
|
2211
|
-
* 2. Show the overflow in Edge and IE.
|
|
2210
|
+
/**
|
|
2211
|
+
* 1. Add the correct box sizing in Firefox.
|
|
2212
|
+
* 2. Show the overflow in Edge and IE.
|
|
2212
2213
|
*/
|
|
2213
2214
|
hr {
|
|
2214
2215
|
-webkit-box-sizing: content-box;
|
|
@@ -2220,9 +2221,9 @@ hr {
|
|
|
2220
2221
|
/* 2 */
|
|
2221
2222
|
}
|
|
2222
2223
|
|
|
2223
|
-
/**
|
|
2224
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
2225
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
2224
|
+
/**
|
|
2225
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
2226
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
2226
2227
|
*/
|
|
2227
2228
|
pre {
|
|
2228
2229
|
font-family: monospace, monospace;
|
|
@@ -2231,11 +2232,11 @@ pre {
|
|
|
2231
2232
|
/* 2 */
|
|
2232
2233
|
}
|
|
2233
2234
|
|
|
2234
|
-
/* Text-level semantics
|
|
2235
|
+
/* Text-level semantics
|
|
2235
2236
|
========================================================================== */
|
|
2236
|
-
/**
|
|
2237
|
-
* 1. Remove the gray background on active links in IE 10.
|
|
2238
|
-
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
|
2237
|
+
/**
|
|
2238
|
+
* 1. Remove the gray background on active links in IE 10.
|
|
2239
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
|
2239
2240
|
*/
|
|
2240
2241
|
a {
|
|
2241
2242
|
background-color: transparent;
|
|
@@ -2244,9 +2245,9 @@ a {
|
|
|
2244
2245
|
/* 2 */
|
|
2245
2246
|
}
|
|
2246
2247
|
|
|
2247
|
-
/**
|
|
2248
|
-
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
|
|
2249
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
2248
|
+
/**
|
|
2249
|
+
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
|
|
2250
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
2250
2251
|
*/
|
|
2251
2252
|
abbr[title] {
|
|
2252
2253
|
border-bottom: none;
|
|
@@ -2259,25 +2260,25 @@ abbr[title] {
|
|
|
2259
2260
|
/* 2 */
|
|
2260
2261
|
}
|
|
2261
2262
|
|
|
2262
|
-
/**
|
|
2263
|
-
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
|
2263
|
+
/**
|
|
2264
|
+
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
|
2264
2265
|
*/
|
|
2265
2266
|
b,
|
|
2266
2267
|
strong {
|
|
2267
2268
|
font-weight: inherit;
|
|
2268
2269
|
}
|
|
2269
2270
|
|
|
2270
|
-
/**
|
|
2271
|
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
2271
|
+
/**
|
|
2272
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
2272
2273
|
*/
|
|
2273
2274
|
b,
|
|
2274
2275
|
strong {
|
|
2275
2276
|
font-weight: bolder;
|
|
2276
2277
|
}
|
|
2277
2278
|
|
|
2278
|
-
/**
|
|
2279
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
2280
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
2279
|
+
/**
|
|
2280
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
2281
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
2281
2282
|
*/
|
|
2282
2283
|
code,
|
|
2283
2284
|
kbd,
|
|
@@ -2288,31 +2289,31 @@ samp {
|
|
|
2288
2289
|
/* 2 */
|
|
2289
2290
|
}
|
|
2290
2291
|
|
|
2291
|
-
/**
|
|
2292
|
-
* Add the correct font style in Android 4.3-.
|
|
2292
|
+
/**
|
|
2293
|
+
* Add the correct font style in Android 4.3-.
|
|
2293
2294
|
*/
|
|
2294
2295
|
dfn {
|
|
2295
2296
|
font-style: italic;
|
|
2296
2297
|
}
|
|
2297
2298
|
|
|
2298
|
-
/**
|
|
2299
|
-
* Add the correct background and color in IE 9-.
|
|
2299
|
+
/**
|
|
2300
|
+
* Add the correct background and color in IE 9-.
|
|
2300
2301
|
*/
|
|
2301
2302
|
mark {
|
|
2302
2303
|
background-color: #ff0;
|
|
2303
2304
|
color: #000;
|
|
2304
2305
|
}
|
|
2305
2306
|
|
|
2306
|
-
/**
|
|
2307
|
-
* Add the correct font size in all browsers.
|
|
2307
|
+
/**
|
|
2308
|
+
* Add the correct font size in all browsers.
|
|
2308
2309
|
*/
|
|
2309
2310
|
small {
|
|
2310
2311
|
font-size: 80%;
|
|
2311
2312
|
}
|
|
2312
2313
|
|
|
2313
|
-
/**
|
|
2314
|
-
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
2315
|
-
* all browsers.
|
|
2314
|
+
/**
|
|
2315
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
2316
|
+
* all browsers.
|
|
2316
2317
|
*/
|
|
2317
2318
|
sub,
|
|
2318
2319
|
sup {
|
|
@@ -2330,43 +2331,43 @@ sup {
|
|
|
2330
2331
|
top: -0.5em;
|
|
2331
2332
|
}
|
|
2332
2333
|
|
|
2333
|
-
/* Embedded content
|
|
2334
|
+
/* Embedded content
|
|
2334
2335
|
========================================================================== */
|
|
2335
|
-
/**
|
|
2336
|
-
* Add the correct display in IE 9-.
|
|
2336
|
+
/**
|
|
2337
|
+
* Add the correct display in IE 9-.
|
|
2337
2338
|
*/
|
|
2338
2339
|
audio,
|
|
2339
2340
|
video {
|
|
2340
2341
|
display: inline-block;
|
|
2341
2342
|
}
|
|
2342
2343
|
|
|
2343
|
-
/**
|
|
2344
|
-
* Add the correct display in iOS 4-7.
|
|
2344
|
+
/**
|
|
2345
|
+
* Add the correct display in iOS 4-7.
|
|
2345
2346
|
*/
|
|
2346
2347
|
audio:not([controls]) {
|
|
2347
2348
|
display: none;
|
|
2348
2349
|
height: 0;
|
|
2349
2350
|
}
|
|
2350
2351
|
|
|
2351
|
-
/**
|
|
2352
|
-
* Remove the border on images inside links in IE 10-.
|
|
2352
|
+
/**
|
|
2353
|
+
* Remove the border on images inside links in IE 10-.
|
|
2353
2354
|
*/
|
|
2354
2355
|
img {
|
|
2355
2356
|
border-style: none;
|
|
2356
2357
|
}
|
|
2357
2358
|
|
|
2358
|
-
/**
|
|
2359
|
-
* Hide the overflow in IE.
|
|
2359
|
+
/**
|
|
2360
|
+
* Hide the overflow in IE.
|
|
2360
2361
|
*/
|
|
2361
2362
|
svg:not(:root) {
|
|
2362
2363
|
overflow: hidden;
|
|
2363
2364
|
}
|
|
2364
2365
|
|
|
2365
|
-
/* Forms
|
|
2366
|
+
/* Forms
|
|
2366
2367
|
========================================================================== */
|
|
2367
|
-
/**
|
|
2368
|
-
* 1. Change the font styles in all browsers (opinionated).
|
|
2369
|
-
* 2. Remove the margin in Firefox and Safari.
|
|
2368
|
+
/**
|
|
2369
|
+
* 1. Change the font styles in all browsers (opinionated).
|
|
2370
|
+
* 2. Remove the margin in Firefox and Safari.
|
|
2370
2371
|
*/
|
|
2371
2372
|
button,
|
|
2372
2373
|
input,
|
|
@@ -2383,9 +2384,9 @@ textarea {
|
|
|
2383
2384
|
/* 2 */
|
|
2384
2385
|
}
|
|
2385
2386
|
|
|
2386
|
-
/**
|
|
2387
|
-
* Show the overflow in IE.
|
|
2388
|
-
* 1. Show the overflow in Edge.
|
|
2387
|
+
/**
|
|
2388
|
+
* Show the overflow in IE.
|
|
2389
|
+
* 1. Show the overflow in Edge.
|
|
2389
2390
|
*/
|
|
2390
2391
|
button,
|
|
2391
2392
|
input {
|
|
@@ -2393,9 +2394,9 @@ input {
|
|
|
2393
2394
|
overflow: visible;
|
|
2394
2395
|
}
|
|
2395
2396
|
|
|
2396
|
-
/**
|
|
2397
|
-
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
2398
|
-
* 1. Remove the inheritance of text transform in Firefox.
|
|
2397
|
+
/**
|
|
2398
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
2399
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
|
2399
2400
|
*/
|
|
2400
2401
|
button,
|
|
2401
2402
|
select {
|
|
@@ -2403,52 +2404,52 @@ select {
|
|
|
2403
2404
|
text-transform: none;
|
|
2404
2405
|
}
|
|
2405
2406
|
|
|
2406
|
-
/**
|
|
2407
|
-
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
|
2408
|
-
* controls in Android 4.
|
|
2409
|
-
* 2. Correct the inability to style clickable types in iOS and Safari.
|
|
2407
|
+
/**
|
|
2408
|
+
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
|
2409
|
+
* controls in Android 4.
|
|
2410
|
+
* 2. Correct the inability to style clickable types in iOS and Safari.
|
|
2410
2411
|
*/
|
|
2411
2412
|
button,
|
|
2412
|
-
html [type=
|
|
2413
|
-
[type=
|
|
2414
|
-
[type=
|
|
2413
|
+
html [type=button],
|
|
2414
|
+
[type=reset],
|
|
2415
|
+
[type=submit] {
|
|
2415
2416
|
-webkit-appearance: button;
|
|
2416
2417
|
/* 2 */
|
|
2417
2418
|
}
|
|
2418
2419
|
|
|
2419
|
-
/**
|
|
2420
|
-
* Remove the inner border and padding in Firefox.
|
|
2420
|
+
/**
|
|
2421
|
+
* Remove the inner border and padding in Firefox.
|
|
2421
2422
|
*/
|
|
2422
2423
|
button::-moz-focus-inner,
|
|
2423
|
-
[type=
|
|
2424
|
-
[type=
|
|
2425
|
-
[type=
|
|
2424
|
+
[type=button]::-moz-focus-inner,
|
|
2425
|
+
[type=reset]::-moz-focus-inner,
|
|
2426
|
+
[type=submit]::-moz-focus-inner {
|
|
2426
2427
|
border-style: none;
|
|
2427
2428
|
padding: 0;
|
|
2428
2429
|
}
|
|
2429
2430
|
|
|
2430
|
-
/**
|
|
2431
|
-
* Restore the focus styles unset by the previous rule.
|
|
2431
|
+
/**
|
|
2432
|
+
* Restore the focus styles unset by the previous rule.
|
|
2432
2433
|
*/
|
|
2433
2434
|
button:-moz-focusring,
|
|
2434
|
-
[type=
|
|
2435
|
-
[type=
|
|
2436
|
-
[type=
|
|
2435
|
+
[type=button]:-moz-focusring,
|
|
2436
|
+
[type=reset]:-moz-focusring,
|
|
2437
|
+
[type=submit]:-moz-focusring {
|
|
2437
2438
|
outline: 1px dotted ButtonText;
|
|
2438
2439
|
}
|
|
2439
2440
|
|
|
2440
|
-
/**
|
|
2441
|
-
* Correct the padding in Firefox.
|
|
2441
|
+
/**
|
|
2442
|
+
* Correct the padding in Firefox.
|
|
2442
2443
|
*/
|
|
2443
2444
|
fieldset {
|
|
2444
2445
|
padding: 0.35em 0.75em 0.625em;
|
|
2445
2446
|
}
|
|
2446
2447
|
|
|
2447
|
-
/**
|
|
2448
|
-
* 1. Correct the text wrapping in Edge and IE.
|
|
2449
|
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
2450
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
|
2451
|
-
* `fieldset` elements in all browsers.
|
|
2448
|
+
/**
|
|
2449
|
+
* 1. Correct the text wrapping in Edge and IE.
|
|
2450
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
2451
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
|
2452
|
+
* `fieldset` elements in all browsers.
|
|
2452
2453
|
*/
|
|
2453
2454
|
legend {
|
|
2454
2455
|
-webkit-box-sizing: border-box;
|
|
@@ -2466,9 +2467,9 @@ legend {
|
|
|
2466
2467
|
/* 1 */
|
|
2467
2468
|
}
|
|
2468
2469
|
|
|
2469
|
-
/**
|
|
2470
|
-
* 1. Add the correct display in IE 9-.
|
|
2471
|
-
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
2470
|
+
/**
|
|
2471
|
+
* 1. Add the correct display in IE 9-.
|
|
2472
|
+
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
2472
2473
|
*/
|
|
2473
2474
|
progress {
|
|
2474
2475
|
display: inline-block;
|
|
@@ -2477,19 +2478,19 @@ progress {
|
|
|
2477
2478
|
/* 2 */
|
|
2478
2479
|
}
|
|
2479
2480
|
|
|
2480
|
-
/**
|
|
2481
|
-
* Remove the default vertical scrollbar in IE.
|
|
2481
|
+
/**
|
|
2482
|
+
* Remove the default vertical scrollbar in IE.
|
|
2482
2483
|
*/
|
|
2483
2484
|
textarea {
|
|
2484
2485
|
overflow: auto;
|
|
2485
2486
|
}
|
|
2486
2487
|
|
|
2487
|
-
/**
|
|
2488
|
-
* 1. Add the correct box sizing in IE 10-.
|
|
2489
|
-
* 2. Remove the padding in IE 10-.
|
|
2488
|
+
/**
|
|
2489
|
+
* 1. Add the correct box sizing in IE 10-.
|
|
2490
|
+
* 2. Remove the padding in IE 10-.
|
|
2490
2491
|
*/
|
|
2491
|
-
[type=
|
|
2492
|
-
[type=
|
|
2492
|
+
[type=checkbox],
|
|
2493
|
+
[type=radio] {
|
|
2493
2494
|
-webkit-box-sizing: border-box;
|
|
2494
2495
|
box-sizing: border-box;
|
|
2495
2496
|
/* 1 */
|
|
@@ -2497,36 +2498,36 @@ textarea {
|
|
|
2497
2498
|
/* 2 */
|
|
2498
2499
|
}
|
|
2499
2500
|
|
|
2500
|
-
/**
|
|
2501
|
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
2501
|
+
/**
|
|
2502
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
2502
2503
|
*/
|
|
2503
|
-
[type=
|
|
2504
|
-
[type=
|
|
2504
|
+
[type=number]::-webkit-inner-spin-button,
|
|
2505
|
+
[type=number]::-webkit-outer-spin-button {
|
|
2505
2506
|
height: auto;
|
|
2506
2507
|
}
|
|
2507
2508
|
|
|
2508
|
-
/**
|
|
2509
|
-
* 1. Correct the odd appearance in Chrome and Safari.
|
|
2510
|
-
* 2. Correct the outline style in Safari.
|
|
2509
|
+
/**
|
|
2510
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
|
2511
|
+
* 2. Correct the outline style in Safari.
|
|
2511
2512
|
*/
|
|
2512
|
-
[type=
|
|
2513
|
+
[type=search] {
|
|
2513
2514
|
-webkit-appearance: textfield;
|
|
2514
2515
|
/* 1 */
|
|
2515
2516
|
outline-offset: -2px;
|
|
2516
2517
|
/* 2 */
|
|
2517
2518
|
}
|
|
2518
2519
|
|
|
2519
|
-
/**
|
|
2520
|
-
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
|
2520
|
+
/**
|
|
2521
|
+
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
|
2521
2522
|
*/
|
|
2522
|
-
[type=
|
|
2523
|
-
[type=
|
|
2523
|
+
[type=search]::-webkit-search-cancel-button,
|
|
2524
|
+
[type=search]::-webkit-search-decoration {
|
|
2524
2525
|
-webkit-appearance: none;
|
|
2525
2526
|
}
|
|
2526
2527
|
|
|
2527
|
-
/**
|
|
2528
|
-
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
2529
|
-
* 2. Change font properties to `inherit` in Safari.
|
|
2528
|
+
/**
|
|
2529
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
2530
|
+
* 2. Change font properties to `inherit` in Safari.
|
|
2530
2531
|
*/
|
|
2531
2532
|
::-webkit-file-upload-button {
|
|
2532
2533
|
-webkit-appearance: button;
|
|
@@ -2535,44 +2536,44 @@ textarea {
|
|
|
2535
2536
|
/* 2 */
|
|
2536
2537
|
}
|
|
2537
2538
|
|
|
2538
|
-
/* Interactive
|
|
2539
|
+
/* Interactive
|
|
2539
2540
|
========================================================================== */
|
|
2540
|
-
/*
|
|
2541
|
-
* Add the correct display in IE 9-.
|
|
2542
|
-
* 1. Add the correct display in Edge, IE, and Firefox.
|
|
2541
|
+
/*
|
|
2542
|
+
* Add the correct display in IE 9-.
|
|
2543
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
|
2543
2544
|
*/
|
|
2544
2545
|
details,
|
|
2545
2546
|
menu {
|
|
2546
2547
|
display: block;
|
|
2547
2548
|
}
|
|
2548
2549
|
|
|
2549
|
-
/*
|
|
2550
|
-
* Add the correct display in all browsers.
|
|
2550
|
+
/*
|
|
2551
|
+
* Add the correct display in all browsers.
|
|
2551
2552
|
*/
|
|
2552
2553
|
summary {
|
|
2553
2554
|
display: list-item;
|
|
2554
2555
|
}
|
|
2555
2556
|
|
|
2556
|
-
/* Scripting
|
|
2557
|
+
/* Scripting
|
|
2557
2558
|
========================================================================== */
|
|
2558
|
-
/**
|
|
2559
|
-
* Add the correct display in IE 9-.
|
|
2559
|
+
/**
|
|
2560
|
+
* Add the correct display in IE 9-.
|
|
2560
2561
|
*/
|
|
2561
2562
|
canvas {
|
|
2562
2563
|
display: inline-block;
|
|
2563
2564
|
}
|
|
2564
2565
|
|
|
2565
|
-
/**
|
|
2566
|
-
* Add the correct display in IE.
|
|
2566
|
+
/**
|
|
2567
|
+
* Add the correct display in IE.
|
|
2567
2568
|
*/
|
|
2568
2569
|
template {
|
|
2569
2570
|
display: none;
|
|
2570
2571
|
}
|
|
2571
2572
|
|
|
2572
|
-
/* Hidden
|
|
2573
|
+
/* Hidden
|
|
2573
2574
|
========================================================================== */
|
|
2574
|
-
/**
|
|
2575
|
-
* Add the correct display in IE 10-.
|
|
2575
|
+
/**
|
|
2576
|
+
* Add the correct display in IE 10-.
|
|
2576
2577
|
*/
|
|
2577
2578
|
[hidden] {
|
|
2578
2579
|
display: none;
|
|
@@ -2600,7 +2601,6 @@ ul:not(.browser-default) {
|
|
|
2600
2601
|
padding-left: 0;
|
|
2601
2602
|
list-style-type: none;
|
|
2602
2603
|
}
|
|
2603
|
-
|
|
2604
2604
|
ul:not(.browser-default) > li {
|
|
2605
2605
|
list-style-type: none;
|
|
2606
2606
|
}
|
|
@@ -2632,12 +2632,12 @@ a {
|
|
|
2632
2632
|
}
|
|
2633
2633
|
|
|
2634
2634
|
/* 2dp elevation modified*/
|
|
2635
|
-
.z-depth-1,
|
|
2635
|
+
.z-depth-1, .sidenav, .collapsible, .dropdown-content, .btn-floating, .btn, .btn-small, .btn-large, .toast, .card, .card-panel, nav {
|
|
2636
2636
|
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
|
2637
2637
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
|
2638
2638
|
}
|
|
2639
2639
|
|
|
2640
|
-
.z-depth-1-half, .btn:hover, .btn
|
|
2640
|
+
.z-depth-1-half, .btn-floating:hover, .btn:hover, .btn-small:hover, .btn-large:hover {
|
|
2641
2641
|
-webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
|
|
2642
2642
|
box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
|
|
2643
2643
|
}
|
|
@@ -2667,12 +2667,11 @@ a {
|
|
|
2667
2667
|
}
|
|
2668
2668
|
|
|
2669
2669
|
.hoverable {
|
|
2670
|
-
-webkit-transition: -webkit-box-shadow .25s;
|
|
2671
|
-
transition: -webkit-box-shadow .25s;
|
|
2672
|
-
transition: box-shadow .25s;
|
|
2673
|
-
transition: box-shadow .25s, -webkit-box-shadow .25s;
|
|
2670
|
+
-webkit-transition: -webkit-box-shadow 0.25s;
|
|
2671
|
+
transition: -webkit-box-shadow 0.25s;
|
|
2672
|
+
transition: box-shadow 0.25s;
|
|
2673
|
+
transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
|
|
2674
2674
|
}
|
|
2675
|
-
|
|
2676
2675
|
.hoverable:hover {
|
|
2677
2676
|
-webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
2678
2677
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
@@ -2693,29 +2692,23 @@ blockquote {
|
|
|
2693
2692
|
i {
|
|
2694
2693
|
line-height: inherit;
|
|
2695
2694
|
}
|
|
2696
|
-
|
|
2697
2695
|
i.left {
|
|
2698
2696
|
float: left;
|
|
2699
2697
|
margin-right: 15px;
|
|
2700
2698
|
}
|
|
2701
|
-
|
|
2702
2699
|
i.right {
|
|
2703
2700
|
float: right;
|
|
2704
2701
|
margin-left: 15px;
|
|
2705
2702
|
}
|
|
2706
|
-
|
|
2707
2703
|
i.tiny {
|
|
2708
2704
|
font-size: 1rem;
|
|
2709
2705
|
}
|
|
2710
|
-
|
|
2711
2706
|
i.small {
|
|
2712
2707
|
font-size: 2rem;
|
|
2713
2708
|
}
|
|
2714
|
-
|
|
2715
2709
|
i.medium {
|
|
2716
2710
|
font-size: 4rem;
|
|
2717
2711
|
}
|
|
2718
|
-
|
|
2719
2712
|
i.large {
|
|
2720
2713
|
font-size: 6rem;
|
|
2721
2714
|
}
|
|
@@ -2733,7 +2726,6 @@ video.responsive-video {
|
|
|
2733
2726
|
vertical-align: top;
|
|
2734
2727
|
height: 30px;
|
|
2735
2728
|
}
|
|
2736
|
-
|
|
2737
2729
|
.pagination li a {
|
|
2738
2730
|
color: #444;
|
|
2739
2731
|
display: inline-block;
|
|
@@ -2741,35 +2733,30 @@ video.responsive-video {
|
|
|
2741
2733
|
padding: 0 10px;
|
|
2742
2734
|
line-height: 30px;
|
|
2743
2735
|
}
|
|
2744
|
-
|
|
2745
2736
|
.pagination li.active a {
|
|
2746
2737
|
color: #fff;
|
|
2747
2738
|
}
|
|
2748
|
-
|
|
2749
2739
|
.pagination li.active {
|
|
2750
2740
|
background-color: #ee6e73;
|
|
2751
2741
|
}
|
|
2752
|
-
|
|
2753
2742
|
.pagination li.disabled a {
|
|
2754
2743
|
cursor: default;
|
|
2755
2744
|
color: #999;
|
|
2756
2745
|
}
|
|
2757
|
-
|
|
2758
2746
|
.pagination li i {
|
|
2759
2747
|
font-size: 2rem;
|
|
2760
2748
|
}
|
|
2761
|
-
|
|
2762
2749
|
.pagination li.pages ul li {
|
|
2763
2750
|
display: inline-block;
|
|
2764
2751
|
float: none;
|
|
2765
2752
|
}
|
|
2766
2753
|
|
|
2767
|
-
@media only screen and (max-width: 992.99px) {
|
|
2754
|
+
@media only screen and (max-width : 992.99px) {
|
|
2768
2755
|
.pagination {
|
|
2769
2756
|
width: 100%;
|
|
2770
2757
|
}
|
|
2771
2758
|
.pagination li.prev,
|
|
2772
|
-
|
|
2759
|
+
.pagination li.next {
|
|
2773
2760
|
width: 10%;
|
|
2774
2761
|
}
|
|
2775
2762
|
.pagination li.pages {
|
|
@@ -2778,27 +2765,24 @@ video.responsive-video {
|
|
|
2778
2765
|
white-space: nowrap;
|
|
2779
2766
|
}
|
|
2780
2767
|
}
|
|
2781
|
-
|
|
2782
2768
|
.breadcrumb {
|
|
2783
2769
|
display: inline-block;
|
|
2784
2770
|
font-size: 18px;
|
|
2785
2771
|
color: rgba(255, 255, 255, 0.7);
|
|
2786
2772
|
}
|
|
2787
|
-
|
|
2788
2773
|
.breadcrumb i,
|
|
2789
|
-
.breadcrumb [class^=
|
|
2774
|
+
.breadcrumb [class^=mdi-], .breadcrumb [class*=mdi-],
|
|
2790
2775
|
.breadcrumb i.material-icons {
|
|
2791
2776
|
display: inline-block;
|
|
2792
2777
|
float: left;
|
|
2793
2778
|
font-size: 24px;
|
|
2794
2779
|
}
|
|
2795
|
-
|
|
2796
2780
|
.breadcrumb:before {
|
|
2797
|
-
content:
|
|
2781
|
+
content: "";
|
|
2798
2782
|
color: rgba(255, 255, 255, 0.7);
|
|
2799
2783
|
vertical-align: top;
|
|
2800
2784
|
display: inline-block;
|
|
2801
|
-
font-family:
|
|
2785
|
+
font-family: "Material Icons";
|
|
2802
2786
|
font-weight: normal;
|
|
2803
2787
|
font-style: normal;
|
|
2804
2788
|
font-size: 25px;
|
|
@@ -2806,11 +2790,9 @@ video.responsive-video {
|
|
|
2806
2790
|
-webkit-font-smoothing: antialiased;
|
|
2807
2791
|
float: left;
|
|
2808
2792
|
}
|
|
2809
|
-
|
|
2810
2793
|
.breadcrumb:first-child:before {
|
|
2811
2794
|
display: none;
|
|
2812
2795
|
}
|
|
2813
|
-
|
|
2814
2796
|
.breadcrumb:last-child {
|
|
2815
2797
|
color: #fff;
|
|
2816
2798
|
}
|
|
@@ -2820,7 +2802,6 @@ video.responsive-video {
|
|
|
2820
2802
|
overflow: hidden;
|
|
2821
2803
|
height: 500px;
|
|
2822
2804
|
}
|
|
2823
|
-
|
|
2824
2805
|
.parallax-container .parallax {
|
|
2825
2806
|
position: absolute;
|
|
2826
2807
|
top: 0;
|
|
@@ -2829,7 +2810,6 @@ video.responsive-video {
|
|
|
2829
2810
|
bottom: 0;
|
|
2830
2811
|
z-index: -1;
|
|
2831
2812
|
}
|
|
2832
|
-
|
|
2833
2813
|
.parallax-container .parallax img {
|
|
2834
2814
|
opacity: 0;
|
|
2835
2815
|
position: absolute;
|
|
@@ -2851,8 +2831,8 @@ video.responsive-video {
|
|
|
2851
2831
|
position: fixed !important;
|
|
2852
2832
|
}
|
|
2853
2833
|
|
|
2854
|
-
/*********************
|
|
2855
|
-
Transition Classes
|
|
2834
|
+
/*********************
|
|
2835
|
+
Transition Classes
|
|
2856
2836
|
**********************/
|
|
2857
2837
|
ul.staggered-list li {
|
|
2858
2838
|
opacity: 0;
|
|
@@ -2864,22 +2844,22 @@ ul.staggered-list li {
|
|
|
2864
2844
|
transform-origin: 0 50%;
|
|
2865
2845
|
}
|
|
2866
2846
|
|
|
2867
|
-
/*********************
|
|
2868
|
-
Media Query Classes
|
|
2847
|
+
/*********************
|
|
2848
|
+
Media Query Classes
|
|
2869
2849
|
**********************/
|
|
2870
|
-
@media only screen and (max-width: 600.99px) {
|
|
2850
|
+
@media only screen and (max-width : 600.99px) {
|
|
2871
2851
|
.hide-on-small-only, .hide-on-small-and-down {
|
|
2872
2852
|
display: none !important;
|
|
2873
2853
|
}
|
|
2874
2854
|
}
|
|
2875
2855
|
|
|
2876
|
-
@media only screen and (max-width: 992.99px) {
|
|
2856
|
+
@media only screen and (max-width : 992.99px) {
|
|
2877
2857
|
.hide-on-med-and-down {
|
|
2878
2858
|
display: none !important;
|
|
2879
2859
|
}
|
|
2880
2860
|
}
|
|
2881
2861
|
|
|
2882
|
-
@media only screen and (min-width: 601px) {
|
|
2862
|
+
@media only screen and (min-width : 601px) {
|
|
2883
2863
|
.hide-on-med-and-up {
|
|
2884
2864
|
display: none !important;
|
|
2885
2865
|
}
|
|
@@ -2891,25 +2871,25 @@ ul.staggered-list li {
|
|
|
2891
2871
|
}
|
|
2892
2872
|
}
|
|
2893
2873
|
|
|
2894
|
-
@media only screen and (min-width: 993px) {
|
|
2874
|
+
@media only screen and (min-width : 993px) {
|
|
2895
2875
|
.hide-on-large-only {
|
|
2896
2876
|
display: none !important;
|
|
2897
2877
|
}
|
|
2898
2878
|
}
|
|
2899
2879
|
|
|
2900
|
-
@media only screen and (min-width: 1201px) {
|
|
2880
|
+
@media only screen and (min-width : 1201px) {
|
|
2901
2881
|
.hide-on-extra-large-only {
|
|
2902
2882
|
display: none !important;
|
|
2903
2883
|
}
|
|
2904
2884
|
}
|
|
2905
2885
|
|
|
2906
|
-
@media only screen and (min-width: 1201px) {
|
|
2886
|
+
@media only screen and (min-width : 1201px) {
|
|
2907
2887
|
.show-on-extra-large {
|
|
2908
2888
|
display: block !important;
|
|
2909
2889
|
}
|
|
2910
2890
|
}
|
|
2911
2891
|
|
|
2912
|
-
@media only screen and (min-width: 993px) {
|
|
2892
|
+
@media only screen and (min-width : 993px) {
|
|
2913
2893
|
.show-on-large {
|
|
2914
2894
|
display: block !important;
|
|
2915
2895
|
}
|
|
@@ -2921,25 +2901,25 @@ ul.staggered-list li {
|
|
|
2921
2901
|
}
|
|
2922
2902
|
}
|
|
2923
2903
|
|
|
2924
|
-
@media only screen and (max-width: 600.99px) {
|
|
2904
|
+
@media only screen and (max-width : 600.99px) {
|
|
2925
2905
|
.show-on-small {
|
|
2926
2906
|
display: block !important;
|
|
2927
2907
|
}
|
|
2928
2908
|
}
|
|
2929
2909
|
|
|
2930
|
-
@media only screen and (min-width: 601px) {
|
|
2910
|
+
@media only screen and (min-width : 601px) {
|
|
2931
2911
|
.show-on-medium-and-up {
|
|
2932
2912
|
display: block !important;
|
|
2933
2913
|
}
|
|
2934
2914
|
}
|
|
2935
2915
|
|
|
2936
|
-
@media only screen and (max-width: 992.99px) {
|
|
2916
|
+
@media only screen and (max-width : 992.99px) {
|
|
2937
2917
|
.show-on-medium-and-down {
|
|
2938
2918
|
display: block !important;
|
|
2939
2919
|
}
|
|
2940
2920
|
}
|
|
2941
2921
|
|
|
2942
|
-
@media only screen and (max-width: 600.99px) {
|
|
2922
|
+
@media only screen and (max-width : 600.99px) {
|
|
2943
2923
|
.center-on-small-only {
|
|
2944
2924
|
text-align: center;
|
|
2945
2925
|
}
|
|
@@ -2950,7 +2930,6 @@ ul.staggered-list li {
|
|
|
2950
2930
|
color: #fff;
|
|
2951
2931
|
background-color: #ee6e73;
|
|
2952
2932
|
}
|
|
2953
|
-
|
|
2954
2933
|
.page-footer .footer-copyright {
|
|
2955
2934
|
overflow: hidden;
|
|
2956
2935
|
min-height: 50px;
|
|
@@ -2981,28 +2960,19 @@ table {
|
|
|
2981
2960
|
border-collapse: collapse;
|
|
2982
2961
|
border-spacing: 0;
|
|
2983
2962
|
}
|
|
2984
|
-
|
|
2985
2963
|
table.striped tr {
|
|
2986
2964
|
border-bottom: none;
|
|
2987
2965
|
}
|
|
2988
|
-
|
|
2989
2966
|
table.striped > tbody > tr:nth-child(odd) {
|
|
2990
2967
|
background-color: rgba(242, 242, 242, 0.5);
|
|
2991
2968
|
}
|
|
2992
|
-
|
|
2993
|
-
table.striped > tbody > tr > td {
|
|
2994
|
-
border-radius: 0;
|
|
2995
|
-
}
|
|
2996
|
-
|
|
2997
2969
|
table.highlight > tbody > tr {
|
|
2998
|
-
-webkit-transition: background-color .25s ease;
|
|
2999
|
-
transition: background-color .25s ease;
|
|
2970
|
+
-webkit-transition: background-color 0.25s ease;
|
|
2971
|
+
transition: background-color 0.25s ease;
|
|
3000
2972
|
}
|
|
3001
|
-
|
|
3002
2973
|
table.highlight > tbody > tr:hover {
|
|
3003
2974
|
background-color: rgba(242, 242, 242, 0.5);
|
|
3004
2975
|
}
|
|
3005
|
-
|
|
3006
2976
|
table.centered thead tr th, table.centered tbody tr td {
|
|
3007
2977
|
text-align: center;
|
|
3008
2978
|
}
|
|
@@ -3016,10 +2986,10 @@ td, th {
|
|
|
3016
2986
|
display: table-cell;
|
|
3017
2987
|
text-align: left;
|
|
3018
2988
|
vertical-align: middle;
|
|
3019
|
-
border-radius:
|
|
2989
|
+
border-radius: 0;
|
|
3020
2990
|
}
|
|
3021
2991
|
|
|
3022
|
-
@media only screen and (max-width: 992.99px) {
|
|
2992
|
+
@media only screen and (max-width : 992.99px) {
|
|
3023
2993
|
table.responsive-table {
|
|
3024
2994
|
width: 100%;
|
|
3025
2995
|
border-collapse: collapse;
|
|
@@ -3029,10 +2999,10 @@ td, th {
|
|
|
3029
2999
|
/* sort out borders */
|
|
3030
3000
|
}
|
|
3031
3001
|
table.responsive-table td:empty:before {
|
|
3032
|
-
content:
|
|
3002
|
+
content: " ";
|
|
3033
3003
|
}
|
|
3034
3004
|
table.responsive-table th,
|
|
3035
|
-
|
|
3005
|
+
table.responsive-table td {
|
|
3036
3006
|
margin: 0;
|
|
3037
3007
|
vertical-align: top;
|
|
3038
3008
|
}
|
|
@@ -3048,7 +3018,7 @@ td, th {
|
|
|
3048
3018
|
padding: 0 10px 0 0;
|
|
3049
3019
|
}
|
|
3050
3020
|
table.responsive-table thead tr th::before {
|
|
3051
|
-
content: "
|
|
3021
|
+
content: " ";
|
|
3052
3022
|
}
|
|
3053
3023
|
table.responsive-table tbody {
|
|
3054
3024
|
display: block;
|
|
@@ -3079,117 +3049,12 @@ td, th {
|
|
|
3079
3049
|
border-right: 1px solid rgba(0, 0, 0, 0.12);
|
|
3080
3050
|
}
|
|
3081
3051
|
}
|
|
3082
|
-
|
|
3083
|
-
.collection {
|
|
3084
|
-
margin: 0.5rem 0 1rem 0;
|
|
3085
|
-
border: 1px solid #e0e0e0;
|
|
3086
|
-
border-radius: 2px;
|
|
3087
|
-
overflow: hidden;
|
|
3088
|
-
position: relative;
|
|
3089
|
-
}
|
|
3090
|
-
|
|
3091
|
-
.collection .collection-item {
|
|
3092
|
-
background-color: #fff;
|
|
3093
|
-
line-height: 1.5rem;
|
|
3094
|
-
padding: 10px 20px;
|
|
3095
|
-
margin: 0;
|
|
3096
|
-
border-bottom: 1px solid #e0e0e0;
|
|
3097
|
-
}
|
|
3098
|
-
|
|
3099
|
-
.collection .collection-item.avatar {
|
|
3100
|
-
min-height: 84px;
|
|
3101
|
-
padding-left: 72px;
|
|
3102
|
-
position: relative;
|
|
3103
|
-
}
|
|
3104
|
-
|
|
3105
|
-
.collection .collection-item.avatar:not(.circle-clipper) > .circle,
|
|
3106
|
-
.collection .collection-item.avatar :not(.circle-clipper) > .circle {
|
|
3107
|
-
position: absolute;
|
|
3108
|
-
width: 42px;
|
|
3109
|
-
height: 42px;
|
|
3110
|
-
overflow: hidden;
|
|
3111
|
-
left: 15px;
|
|
3112
|
-
display: inline-block;
|
|
3113
|
-
vertical-align: middle;
|
|
3114
|
-
}
|
|
3115
|
-
|
|
3116
|
-
.collection .collection-item.avatar i.circle {
|
|
3117
|
-
font-size: 18px;
|
|
3118
|
-
line-height: 42px;
|
|
3119
|
-
color: #fff;
|
|
3120
|
-
background-color: #999;
|
|
3121
|
-
text-align: center;
|
|
3122
|
-
}
|
|
3123
|
-
|
|
3124
|
-
.collection .collection-item.avatar .title {
|
|
3125
|
-
font-size: 16px;
|
|
3126
|
-
}
|
|
3127
|
-
|
|
3128
|
-
.collection .collection-item.avatar p {
|
|
3129
|
-
margin: 0;
|
|
3130
|
-
}
|
|
3131
|
-
|
|
3132
|
-
.collection .collection-item.avatar .secondary-content {
|
|
3133
|
-
position: absolute;
|
|
3134
|
-
top: 16px;
|
|
3135
|
-
right: 16px;
|
|
3136
|
-
}
|
|
3137
|
-
|
|
3138
|
-
.collection .collection-item:last-child {
|
|
3139
|
-
border-bottom: none;
|
|
3140
|
-
}
|
|
3141
|
-
|
|
3142
|
-
.collection .collection-item.active {
|
|
3143
|
-
background-color: #26a69a;
|
|
3144
|
-
color: #eafaf9;
|
|
3145
|
-
}
|
|
3146
|
-
|
|
3147
|
-
.collection .collection-item.active .secondary-content {
|
|
3148
|
-
color: #fff;
|
|
3149
|
-
}
|
|
3150
|
-
|
|
3151
|
-
.collection a.collection-item {
|
|
3152
|
-
display: block;
|
|
3153
|
-
-webkit-transition: .25s;
|
|
3154
|
-
transition: .25s;
|
|
3155
|
-
color: #26a69a;
|
|
3156
|
-
}
|
|
3157
|
-
|
|
3158
|
-
.collection a.collection-item:not(.active):hover {
|
|
3159
|
-
background-color: #ddd;
|
|
3160
|
-
}
|
|
3161
|
-
|
|
3162
|
-
.collection.with-header .collection-header {
|
|
3163
|
-
background-color: #fff;
|
|
3164
|
-
border-bottom: 1px solid #e0e0e0;
|
|
3165
|
-
padding: 10px 20px;
|
|
3166
|
-
}
|
|
3167
|
-
|
|
3168
|
-
.collection.with-header .collection-item {
|
|
3169
|
-
padding-left: 30px;
|
|
3170
|
-
}
|
|
3171
|
-
|
|
3172
|
-
.collection.with-header .collection-item.avatar {
|
|
3173
|
-
padding-left: 72px;
|
|
3174
|
-
}
|
|
3175
|
-
|
|
3176
|
-
.secondary-content {
|
|
3177
|
-
float: right;
|
|
3178
|
-
color: #26a69a;
|
|
3179
|
-
}
|
|
3180
|
-
|
|
3181
|
-
.collapsible .collection {
|
|
3182
|
-
margin: 0;
|
|
3183
|
-
border: none;
|
|
3184
|
-
}
|
|
3185
|
-
|
|
3186
3052
|
.video-container {
|
|
3187
3053
|
position: relative;
|
|
3188
3054
|
padding-bottom: 56.25%;
|
|
3189
3055
|
height: 0;
|
|
3190
3056
|
overflow: hidden;
|
|
3191
3057
|
}
|
|
3192
|
-
|
|
3193
3058
|
.video-container iframe, .video-container object, .video-container embed {
|
|
3194
3059
|
position: absolute;
|
|
3195
3060
|
top: 0;
|
|
@@ -3208,23 +3073,20 @@ td, th {
|
|
|
3208
3073
|
margin: 0.5rem 0 1rem 0;
|
|
3209
3074
|
overflow: hidden;
|
|
3210
3075
|
}
|
|
3211
|
-
|
|
3212
3076
|
.progress .determinate {
|
|
3213
3077
|
position: absolute;
|
|
3214
3078
|
top: 0;
|
|
3215
3079
|
left: 0;
|
|
3216
3080
|
bottom: 0;
|
|
3217
3081
|
background-color: #26a69a;
|
|
3218
|
-
-webkit-transition: width .3s linear;
|
|
3219
|
-
transition: width .3s linear;
|
|
3082
|
+
-webkit-transition: width 0.3s linear;
|
|
3083
|
+
transition: width 0.3s linear;
|
|
3220
3084
|
}
|
|
3221
|
-
|
|
3222
3085
|
.progress .indeterminate {
|
|
3223
3086
|
background-color: #26a69a;
|
|
3224
3087
|
}
|
|
3225
|
-
|
|
3226
3088
|
.progress .indeterminate:before {
|
|
3227
|
-
content:
|
|
3089
|
+
content: "";
|
|
3228
3090
|
position: absolute;
|
|
3229
3091
|
background-color: inherit;
|
|
3230
3092
|
top: 0;
|
|
@@ -3234,9 +3096,8 @@ td, th {
|
|
|
3234
3096
|
-webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
|
|
3235
3097
|
animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
|
|
3236
3098
|
}
|
|
3237
|
-
|
|
3238
3099
|
.progress .indeterminate:after {
|
|
3239
|
-
content:
|
|
3100
|
+
content: "";
|
|
3240
3101
|
position: absolute;
|
|
3241
3102
|
background-color: inherit;
|
|
3242
3103
|
top: 0;
|
|
@@ -3278,7 +3139,6 @@ td, th {
|
|
|
3278
3139
|
right: -90%;
|
|
3279
3140
|
}
|
|
3280
3141
|
}
|
|
3281
|
-
|
|
3282
3142
|
@-webkit-keyframes indeterminate-short {
|
|
3283
3143
|
0% {
|
|
3284
3144
|
left: -200%;
|
|
@@ -3293,7 +3153,6 @@ td, th {
|
|
|
3293
3153
|
right: -8%;
|
|
3294
3154
|
}
|
|
3295
3155
|
}
|
|
3296
|
-
|
|
3297
3156
|
@keyframes indeterminate-short {
|
|
3298
3157
|
0% {
|
|
3299
3158
|
left: -200%;
|
|
@@ -3308,9 +3167,8 @@ td, th {
|
|
|
3308
3167
|
right: -8%;
|
|
3309
3168
|
}
|
|
3310
3169
|
}
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
Utility Classes
|
|
3170
|
+
/*******************
|
|
3171
|
+
Utility Classes
|
|
3314
3172
|
*******************/
|
|
3315
3173
|
.hide {
|
|
3316
3174
|
display: none !important;
|
|
@@ -3365,6 +3223,94 @@ input[type=range] + .thumb {
|
|
|
3365
3223
|
padding: 0 !important;
|
|
3366
3224
|
}
|
|
3367
3225
|
|
|
3226
|
+
.collection {
|
|
3227
|
+
margin: 0.5rem 0 1rem 0;
|
|
3228
|
+
border: 1px solid #e0e0e0;
|
|
3229
|
+
border-radius: 2px;
|
|
3230
|
+
overflow: hidden;
|
|
3231
|
+
position: relative;
|
|
3232
|
+
}
|
|
3233
|
+
.collection .collection-item {
|
|
3234
|
+
background-color: #fff;
|
|
3235
|
+
line-height: 1.5rem;
|
|
3236
|
+
padding: 10px 20px;
|
|
3237
|
+
margin: 0;
|
|
3238
|
+
border-bottom: 1px solid #e0e0e0;
|
|
3239
|
+
}
|
|
3240
|
+
.collection .collection-item.avatar {
|
|
3241
|
+
min-height: 84px;
|
|
3242
|
+
padding-left: 72px;
|
|
3243
|
+
position: relative;
|
|
3244
|
+
}
|
|
3245
|
+
.collection .collection-item.avatar:not(.circle-clipper) > .circle,
|
|
3246
|
+
.collection .collection-item.avatar :not(.circle-clipper) > .circle {
|
|
3247
|
+
position: absolute;
|
|
3248
|
+
width: 42px;
|
|
3249
|
+
height: 42px;
|
|
3250
|
+
overflow: hidden;
|
|
3251
|
+
left: 15px;
|
|
3252
|
+
display: inline-block;
|
|
3253
|
+
vertical-align: middle;
|
|
3254
|
+
}
|
|
3255
|
+
.collection .collection-item.avatar i.circle {
|
|
3256
|
+
font-size: 18px;
|
|
3257
|
+
line-height: 42px;
|
|
3258
|
+
color: #fff;
|
|
3259
|
+
background-color: #999;
|
|
3260
|
+
text-align: center;
|
|
3261
|
+
}
|
|
3262
|
+
.collection .collection-item.avatar .title {
|
|
3263
|
+
font-size: 16px;
|
|
3264
|
+
}
|
|
3265
|
+
.collection .collection-item.avatar p {
|
|
3266
|
+
margin: 0;
|
|
3267
|
+
}
|
|
3268
|
+
.collection .collection-item.avatar .secondary-content {
|
|
3269
|
+
position: absolute;
|
|
3270
|
+
top: 16px;
|
|
3271
|
+
right: 16px;
|
|
3272
|
+
}
|
|
3273
|
+
.collection .collection-item:last-child {
|
|
3274
|
+
border-bottom: none;
|
|
3275
|
+
}
|
|
3276
|
+
.collection .collection-item.active {
|
|
3277
|
+
background-color: #26a69a;
|
|
3278
|
+
color: #eafaf9;
|
|
3279
|
+
}
|
|
3280
|
+
.collection .collection-item.active .secondary-content {
|
|
3281
|
+
color: #fff;
|
|
3282
|
+
}
|
|
3283
|
+
.collection a.collection-item {
|
|
3284
|
+
display: block;
|
|
3285
|
+
-webkit-transition: 0.25s;
|
|
3286
|
+
transition: 0.25s;
|
|
3287
|
+
color: #26a69a;
|
|
3288
|
+
}
|
|
3289
|
+
.collection a.collection-item:not(.active):hover {
|
|
3290
|
+
background-color: #ddd;
|
|
3291
|
+
}
|
|
3292
|
+
.collection.with-header .collection-header {
|
|
3293
|
+
background-color: #fff;
|
|
3294
|
+
border-bottom: 1px solid #e0e0e0;
|
|
3295
|
+
padding: 10px 20px;
|
|
3296
|
+
}
|
|
3297
|
+
.collection.with-header .collection-item {
|
|
3298
|
+
padding-left: 30px;
|
|
3299
|
+
}
|
|
3300
|
+
.collection.with-header .collection-item.avatar {
|
|
3301
|
+
padding-left: 72px;
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
.secondary-content {
|
|
3305
|
+
float: right;
|
|
3306
|
+
color: #26a69a;
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
.collapsible .collection {
|
|
3310
|
+
margin: 0;
|
|
3311
|
+
border: none;
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3368
3314
|
span.badge {
|
|
3369
3315
|
min-width: 3rem;
|
|
3370
3316
|
padding: 0 6px;
|
|
@@ -3378,7 +3324,6 @@ span.badge {
|
|
|
3378
3324
|
-webkit-box-sizing: border-box;
|
|
3379
3325
|
box-sizing: border-box;
|
|
3380
3326
|
}
|
|
3381
|
-
|
|
3382
3327
|
span.badge.new {
|
|
3383
3328
|
font-weight: 300;
|
|
3384
3329
|
font-size: 0.8rem;
|
|
@@ -3386,11 +3331,9 @@ span.badge.new {
|
|
|
3386
3331
|
background-color: #26a69a;
|
|
3387
3332
|
border-radius: 2px;
|
|
3388
3333
|
}
|
|
3389
|
-
|
|
3390
3334
|
span.badge.new:after {
|
|
3391
3335
|
content: " new";
|
|
3392
3336
|
}
|
|
3393
|
-
|
|
3394
3337
|
span.badge[data-badge-caption]::after {
|
|
3395
3338
|
content: " " attr(data-badge-caption);
|
|
3396
3339
|
}
|
|
@@ -3425,9 +3368,9 @@ table span.badge {
|
|
|
3425
3368
|
/* This is needed for some mobile phones to display the Google Icon font properly */
|
|
3426
3369
|
.material-icons {
|
|
3427
3370
|
text-rendering: optimizeLegibility;
|
|
3428
|
-
-webkit-font-feature-settings:
|
|
3429
|
-
-moz-font-feature-settings:
|
|
3430
|
-
font-feature-settings:
|
|
3371
|
+
-webkit-font-feature-settings: "liga";
|
|
3372
|
+
-moz-font-feature-settings: "liga";
|
|
3373
|
+
font-feature-settings: "liga";
|
|
3431
3374
|
}
|
|
3432
3375
|
|
|
3433
3376
|
.container {
|
|
@@ -3436,18 +3379,16 @@ table span.badge {
|
|
|
3436
3379
|
width: 90%;
|
|
3437
3380
|
}
|
|
3438
3381
|
|
|
3439
|
-
@media only screen and (min-width: 601px) {
|
|
3382
|
+
@media only screen and (min-width : 601px) {
|
|
3440
3383
|
.container {
|
|
3441
3384
|
width: 85%;
|
|
3442
3385
|
}
|
|
3443
3386
|
}
|
|
3444
|
-
|
|
3445
|
-
@media only screen and (min-width: 993px) {
|
|
3387
|
+
@media only screen and (min-width : 993px) {
|
|
3446
3388
|
.container {
|
|
3447
3389
|
width: 70%;
|
|
3448
3390
|
}
|
|
3449
3391
|
}
|
|
3450
|
-
|
|
3451
3392
|
.col .row {
|
|
3452
3393
|
margin-left: -0.75rem;
|
|
3453
3394
|
margin-right: -0.75rem;
|
|
@@ -3457,15 +3398,12 @@ table span.badge {
|
|
|
3457
3398
|
padding-top: 1rem;
|
|
3458
3399
|
padding-bottom: 1rem;
|
|
3459
3400
|
}
|
|
3460
|
-
|
|
3461
3401
|
.section.no-pad {
|
|
3462
3402
|
padding: 0;
|
|
3463
3403
|
}
|
|
3464
|
-
|
|
3465
3404
|
.section.no-pad-bot {
|
|
3466
3405
|
padding-bottom: 0;
|
|
3467
3406
|
}
|
|
3468
|
-
|
|
3469
3407
|
.section.no-pad-top {
|
|
3470
3408
|
padding-top: 0;
|
|
3471
3409
|
}
|
|
@@ -3475,13 +3413,11 @@ table span.badge {
|
|
|
3475
3413
|
margin-right: auto;
|
|
3476
3414
|
margin-bottom: 20px;
|
|
3477
3415
|
}
|
|
3478
|
-
|
|
3479
3416
|
.row:after {
|
|
3480
3417
|
content: "";
|
|
3481
3418
|
display: table;
|
|
3482
3419
|
clear: both;
|
|
3483
3420
|
}
|
|
3484
|
-
|
|
3485
3421
|
.row .col {
|
|
3486
3422
|
float: left;
|
|
3487
3423
|
-webkit-box-sizing: border-box;
|
|
@@ -3489,240 +3425,190 @@ table span.badge {
|
|
|
3489
3425
|
padding: 0 0.75rem;
|
|
3490
3426
|
min-height: 1px;
|
|
3491
3427
|
}
|
|
3492
|
-
|
|
3493
|
-
.row .col[class*="push-"], .row .col[class*="pull-"] {
|
|
3428
|
+
.row .col[class*=push-], .row .col[class*=pull-] {
|
|
3494
3429
|
position: relative;
|
|
3495
3430
|
}
|
|
3496
|
-
|
|
3497
3431
|
.row .col.s1 {
|
|
3498
3432
|
width: 8.3333333333%;
|
|
3499
3433
|
margin-left: auto;
|
|
3500
3434
|
left: auto;
|
|
3501
3435
|
right: auto;
|
|
3502
3436
|
}
|
|
3503
|
-
|
|
3504
3437
|
.row .col.s2 {
|
|
3505
3438
|
width: 16.6666666667%;
|
|
3506
3439
|
margin-left: auto;
|
|
3507
3440
|
left: auto;
|
|
3508
3441
|
right: auto;
|
|
3509
3442
|
}
|
|
3510
|
-
|
|
3511
3443
|
.row .col.s3 {
|
|
3512
3444
|
width: 25%;
|
|
3513
3445
|
margin-left: auto;
|
|
3514
3446
|
left: auto;
|
|
3515
3447
|
right: auto;
|
|
3516
3448
|
}
|
|
3517
|
-
|
|
3518
3449
|
.row .col.s4 {
|
|
3519
3450
|
width: 33.3333333333%;
|
|
3520
3451
|
margin-left: auto;
|
|
3521
3452
|
left: auto;
|
|
3522
3453
|
right: auto;
|
|
3523
3454
|
}
|
|
3524
|
-
|
|
3525
3455
|
.row .col.s5 {
|
|
3526
3456
|
width: 41.6666666667%;
|
|
3527
3457
|
margin-left: auto;
|
|
3528
3458
|
left: auto;
|
|
3529
3459
|
right: auto;
|
|
3530
3460
|
}
|
|
3531
|
-
|
|
3532
3461
|
.row .col.s6 {
|
|
3533
3462
|
width: 50%;
|
|
3534
3463
|
margin-left: auto;
|
|
3535
3464
|
left: auto;
|
|
3536
3465
|
right: auto;
|
|
3537
3466
|
}
|
|
3538
|
-
|
|
3539
3467
|
.row .col.s7 {
|
|
3540
3468
|
width: 58.3333333333%;
|
|
3541
3469
|
margin-left: auto;
|
|
3542
3470
|
left: auto;
|
|
3543
3471
|
right: auto;
|
|
3544
3472
|
}
|
|
3545
|
-
|
|
3546
3473
|
.row .col.s8 {
|
|
3547
3474
|
width: 66.6666666667%;
|
|
3548
3475
|
margin-left: auto;
|
|
3549
3476
|
left: auto;
|
|
3550
3477
|
right: auto;
|
|
3551
3478
|
}
|
|
3552
|
-
|
|
3553
3479
|
.row .col.s9 {
|
|
3554
3480
|
width: 75%;
|
|
3555
3481
|
margin-left: auto;
|
|
3556
3482
|
left: auto;
|
|
3557
3483
|
right: auto;
|
|
3558
3484
|
}
|
|
3559
|
-
|
|
3560
3485
|
.row .col.s10 {
|
|
3561
3486
|
width: 83.3333333333%;
|
|
3562
3487
|
margin-left: auto;
|
|
3563
3488
|
left: auto;
|
|
3564
3489
|
right: auto;
|
|
3565
3490
|
}
|
|
3566
|
-
|
|
3567
3491
|
.row .col.s11 {
|
|
3568
3492
|
width: 91.6666666667%;
|
|
3569
3493
|
margin-left: auto;
|
|
3570
3494
|
left: auto;
|
|
3571
3495
|
right: auto;
|
|
3572
3496
|
}
|
|
3573
|
-
|
|
3574
3497
|
.row .col.s12 {
|
|
3575
3498
|
width: 100%;
|
|
3576
3499
|
margin-left: auto;
|
|
3577
3500
|
left: auto;
|
|
3578
3501
|
right: auto;
|
|
3579
3502
|
}
|
|
3580
|
-
|
|
3581
3503
|
.row .col.offset-s1 {
|
|
3582
3504
|
margin-left: 8.3333333333%;
|
|
3583
3505
|
}
|
|
3584
|
-
|
|
3585
3506
|
.row .col.pull-s1 {
|
|
3586
3507
|
right: 8.3333333333%;
|
|
3587
3508
|
}
|
|
3588
|
-
|
|
3589
3509
|
.row .col.push-s1 {
|
|
3590
3510
|
left: 8.3333333333%;
|
|
3591
3511
|
}
|
|
3592
|
-
|
|
3593
3512
|
.row .col.offset-s2 {
|
|
3594
3513
|
margin-left: 16.6666666667%;
|
|
3595
3514
|
}
|
|
3596
|
-
|
|
3597
3515
|
.row .col.pull-s2 {
|
|
3598
3516
|
right: 16.6666666667%;
|
|
3599
3517
|
}
|
|
3600
|
-
|
|
3601
3518
|
.row .col.push-s2 {
|
|
3602
3519
|
left: 16.6666666667%;
|
|
3603
3520
|
}
|
|
3604
|
-
|
|
3605
3521
|
.row .col.offset-s3 {
|
|
3606
3522
|
margin-left: 25%;
|
|
3607
3523
|
}
|
|
3608
|
-
|
|
3609
3524
|
.row .col.pull-s3 {
|
|
3610
3525
|
right: 25%;
|
|
3611
3526
|
}
|
|
3612
|
-
|
|
3613
3527
|
.row .col.push-s3 {
|
|
3614
3528
|
left: 25%;
|
|
3615
3529
|
}
|
|
3616
|
-
|
|
3617
3530
|
.row .col.offset-s4 {
|
|
3618
3531
|
margin-left: 33.3333333333%;
|
|
3619
3532
|
}
|
|
3620
|
-
|
|
3621
3533
|
.row .col.pull-s4 {
|
|
3622
3534
|
right: 33.3333333333%;
|
|
3623
3535
|
}
|
|
3624
|
-
|
|
3625
3536
|
.row .col.push-s4 {
|
|
3626
3537
|
left: 33.3333333333%;
|
|
3627
3538
|
}
|
|
3628
|
-
|
|
3629
3539
|
.row .col.offset-s5 {
|
|
3630
3540
|
margin-left: 41.6666666667%;
|
|
3631
3541
|
}
|
|
3632
|
-
|
|
3633
3542
|
.row .col.pull-s5 {
|
|
3634
3543
|
right: 41.6666666667%;
|
|
3635
3544
|
}
|
|
3636
|
-
|
|
3637
3545
|
.row .col.push-s5 {
|
|
3638
3546
|
left: 41.6666666667%;
|
|
3639
3547
|
}
|
|
3640
|
-
|
|
3641
3548
|
.row .col.offset-s6 {
|
|
3642
3549
|
margin-left: 50%;
|
|
3643
3550
|
}
|
|
3644
|
-
|
|
3645
3551
|
.row .col.pull-s6 {
|
|
3646
3552
|
right: 50%;
|
|
3647
3553
|
}
|
|
3648
|
-
|
|
3649
3554
|
.row .col.push-s6 {
|
|
3650
3555
|
left: 50%;
|
|
3651
3556
|
}
|
|
3652
|
-
|
|
3653
3557
|
.row .col.offset-s7 {
|
|
3654
3558
|
margin-left: 58.3333333333%;
|
|
3655
3559
|
}
|
|
3656
|
-
|
|
3657
3560
|
.row .col.pull-s7 {
|
|
3658
3561
|
right: 58.3333333333%;
|
|
3659
3562
|
}
|
|
3660
|
-
|
|
3661
3563
|
.row .col.push-s7 {
|
|
3662
3564
|
left: 58.3333333333%;
|
|
3663
3565
|
}
|
|
3664
|
-
|
|
3665
3566
|
.row .col.offset-s8 {
|
|
3666
3567
|
margin-left: 66.6666666667%;
|
|
3667
3568
|
}
|
|
3668
|
-
|
|
3669
3569
|
.row .col.pull-s8 {
|
|
3670
3570
|
right: 66.6666666667%;
|
|
3671
3571
|
}
|
|
3672
|
-
|
|
3673
3572
|
.row .col.push-s8 {
|
|
3674
3573
|
left: 66.6666666667%;
|
|
3675
3574
|
}
|
|
3676
|
-
|
|
3677
3575
|
.row .col.offset-s9 {
|
|
3678
3576
|
margin-left: 75%;
|
|
3679
3577
|
}
|
|
3680
|
-
|
|
3681
3578
|
.row .col.pull-s9 {
|
|
3682
3579
|
right: 75%;
|
|
3683
3580
|
}
|
|
3684
|
-
|
|
3685
3581
|
.row .col.push-s9 {
|
|
3686
3582
|
left: 75%;
|
|
3687
3583
|
}
|
|
3688
|
-
|
|
3689
3584
|
.row .col.offset-s10 {
|
|
3690
3585
|
margin-left: 83.3333333333%;
|
|
3691
3586
|
}
|
|
3692
|
-
|
|
3693
3587
|
.row .col.pull-s10 {
|
|
3694
3588
|
right: 83.3333333333%;
|
|
3695
3589
|
}
|
|
3696
|
-
|
|
3697
3590
|
.row .col.push-s10 {
|
|
3698
3591
|
left: 83.3333333333%;
|
|
3699
3592
|
}
|
|
3700
|
-
|
|
3701
3593
|
.row .col.offset-s11 {
|
|
3702
3594
|
margin-left: 91.6666666667%;
|
|
3703
3595
|
}
|
|
3704
|
-
|
|
3705
3596
|
.row .col.pull-s11 {
|
|
3706
3597
|
right: 91.6666666667%;
|
|
3707
3598
|
}
|
|
3708
|
-
|
|
3709
3599
|
.row .col.push-s11 {
|
|
3710
3600
|
left: 91.6666666667%;
|
|
3711
3601
|
}
|
|
3712
|
-
|
|
3713
3602
|
.row .col.offset-s12 {
|
|
3714
3603
|
margin-left: 100%;
|
|
3715
3604
|
}
|
|
3716
|
-
|
|
3717
3605
|
.row .col.pull-s12 {
|
|
3718
3606
|
right: 100%;
|
|
3719
3607
|
}
|
|
3720
|
-
|
|
3721
3608
|
.row .col.push-s12 {
|
|
3722
3609
|
left: 100%;
|
|
3723
3610
|
}
|
|
3724
|
-
|
|
3725
|
-
@media only screen and (min-width: 601px) {
|
|
3611
|
+
@media only screen and (min-width : 601px) {
|
|
3726
3612
|
.row .col.m1 {
|
|
3727
3613
|
width: 8.3333333333%;
|
|
3728
3614
|
margin-left: auto;
|
|
@@ -3904,8 +3790,7 @@ table span.badge {
|
|
|
3904
3790
|
left: 100%;
|
|
3905
3791
|
}
|
|
3906
3792
|
}
|
|
3907
|
-
|
|
3908
|
-
@media only screen and (min-width: 993px) {
|
|
3793
|
+
@media only screen and (min-width : 993px) {
|
|
3909
3794
|
.row .col.l1 {
|
|
3910
3795
|
width: 8.3333333333%;
|
|
3911
3796
|
margin-left: auto;
|
|
@@ -4087,8 +3972,7 @@ table span.badge {
|
|
|
4087
3972
|
left: 100%;
|
|
4088
3973
|
}
|
|
4089
3974
|
}
|
|
4090
|
-
|
|
4091
|
-
@media only screen and (min-width: 1201px) {
|
|
3975
|
+
@media only screen and (min-width : 1201px) {
|
|
4092
3976
|
.row .col.xl1 {
|
|
4093
3977
|
width: 8.3333333333%;
|
|
4094
3978
|
margin-left: auto;
|
|
@@ -4278,45 +4162,37 @@ nav {
|
|
|
4278
4162
|
height: 56px;
|
|
4279
4163
|
line-height: 56px;
|
|
4280
4164
|
}
|
|
4281
|
-
|
|
4282
4165
|
nav.nav-extended {
|
|
4283
4166
|
height: auto;
|
|
4284
4167
|
}
|
|
4285
|
-
|
|
4286
4168
|
nav.nav-extended .nav-wrapper {
|
|
4287
4169
|
min-height: 56px;
|
|
4288
4170
|
height: auto;
|
|
4289
4171
|
}
|
|
4290
|
-
|
|
4291
4172
|
nav.nav-extended .nav-content {
|
|
4292
4173
|
position: relative;
|
|
4293
4174
|
line-height: normal;
|
|
4294
4175
|
}
|
|
4295
|
-
|
|
4296
4176
|
nav a {
|
|
4297
4177
|
color: #fff;
|
|
4298
4178
|
}
|
|
4299
|
-
|
|
4300
4179
|
nav i,
|
|
4301
|
-
nav [class^=
|
|
4180
|
+
nav [class^=mdi-], nav [class*=mdi-],
|
|
4302
4181
|
nav i.material-icons {
|
|
4303
4182
|
display: block;
|
|
4304
4183
|
font-size: 24px;
|
|
4305
4184
|
height: 56px;
|
|
4306
4185
|
line-height: 56px;
|
|
4307
4186
|
}
|
|
4308
|
-
|
|
4309
4187
|
nav .nav-wrapper {
|
|
4310
4188
|
position: relative;
|
|
4311
4189
|
height: 100%;
|
|
4312
4190
|
}
|
|
4313
|
-
|
|
4314
|
-
@media only screen and (min-width: 993px) {
|
|
4191
|
+
@media only screen and (min-width : 993px) {
|
|
4315
4192
|
nav a.sidenav-trigger {
|
|
4316
4193
|
display: none;
|
|
4317
4194
|
}
|
|
4318
4195
|
}
|
|
4319
|
-
|
|
4320
4196
|
nav .sidenav-trigger {
|
|
4321
4197
|
float: left;
|
|
4322
4198
|
position: relative;
|
|
@@ -4324,12 +4200,10 @@ nav .sidenav-trigger {
|
|
|
4324
4200
|
height: 56px;
|
|
4325
4201
|
margin: 0 18px;
|
|
4326
4202
|
}
|
|
4327
|
-
|
|
4328
4203
|
nav .sidenav-trigger i {
|
|
4329
4204
|
height: 56px;
|
|
4330
4205
|
line-height: 56px;
|
|
4331
4206
|
}
|
|
4332
|
-
|
|
4333
4207
|
nav .brand-logo {
|
|
4334
4208
|
position: absolute;
|
|
4335
4209
|
color: #fff;
|
|
@@ -4337,14 +4211,12 @@ nav .brand-logo {
|
|
|
4337
4211
|
font-size: 2.1rem;
|
|
4338
4212
|
padding: 0;
|
|
4339
4213
|
}
|
|
4340
|
-
|
|
4341
4214
|
nav .brand-logo.center {
|
|
4342
4215
|
left: 50%;
|
|
4343
4216
|
-webkit-transform: translateX(-50%);
|
|
4344
4217
|
transform: translateX(-50%);
|
|
4345
4218
|
}
|
|
4346
|
-
|
|
4347
|
-
@media only screen and (max-width: 992.99px) {
|
|
4219
|
+
@media only screen and (max-width : 992.99px) {
|
|
4348
4220
|
nav .brand-logo {
|
|
4349
4221
|
left: 50%;
|
|
4350
4222
|
-webkit-transform: translateX(-50%);
|
|
@@ -4363,102 +4235,84 @@ nav .brand-logo.center {
|
|
|
4363
4235
|
left: auto;
|
|
4364
4236
|
}
|
|
4365
4237
|
}
|
|
4366
|
-
|
|
4367
4238
|
nav .brand-logo.right {
|
|
4368
4239
|
right: 0.5rem;
|
|
4369
4240
|
padding: 0;
|
|
4370
4241
|
}
|
|
4371
|
-
|
|
4372
4242
|
nav .brand-logo i,
|
|
4373
|
-
nav .brand-logo [class^=
|
|
4243
|
+
nav .brand-logo [class^=mdi-], nav .brand-logo [class*=mdi-],
|
|
4374
4244
|
nav .brand-logo i.material-icons {
|
|
4375
4245
|
float: left;
|
|
4376
4246
|
margin-right: 15px;
|
|
4377
4247
|
}
|
|
4378
|
-
|
|
4379
4248
|
nav .nav-title {
|
|
4380
4249
|
display: inline-block;
|
|
4381
4250
|
font-size: 32px;
|
|
4382
4251
|
padding: 28px 0;
|
|
4383
4252
|
}
|
|
4384
|
-
|
|
4385
4253
|
nav ul {
|
|
4386
4254
|
margin: 0;
|
|
4387
4255
|
}
|
|
4388
|
-
|
|
4389
4256
|
nav ul li {
|
|
4390
|
-
-webkit-transition: background-color .3s;
|
|
4391
|
-
transition: background-color .3s;
|
|
4257
|
+
-webkit-transition: background-color 0.3s;
|
|
4258
|
+
transition: background-color 0.3s;
|
|
4392
4259
|
float: left;
|
|
4393
4260
|
padding: 0;
|
|
4394
4261
|
}
|
|
4395
|
-
|
|
4396
4262
|
nav ul li.active {
|
|
4397
4263
|
background-color: rgba(0, 0, 0, 0.1);
|
|
4398
4264
|
}
|
|
4399
|
-
|
|
4400
4265
|
nav ul a {
|
|
4401
|
-
-webkit-transition: background-color .3s;
|
|
4402
|
-
transition: background-color .3s;
|
|
4266
|
+
-webkit-transition: background-color 0.3s;
|
|
4267
|
+
transition: background-color 0.3s;
|
|
4403
4268
|
font-size: 1rem;
|
|
4404
4269
|
color: #fff;
|
|
4405
4270
|
display: block;
|
|
4406
4271
|
padding: 0 15px;
|
|
4407
4272
|
cursor: pointer;
|
|
4408
4273
|
}
|
|
4409
|
-
|
|
4410
|
-
nav ul a.btn, nav ul a.btn-large, nav ul a.btn-small, nav ul a.btn-large, nav ul a.btn-flat, nav ul a.btn-floating {
|
|
4274
|
+
nav ul a.btn, nav ul a.btn-small, nav ul a.btn-large, nav ul a.btn-flat, nav ul a.btn-floating {
|
|
4411
4275
|
margin-top: -2px;
|
|
4412
4276
|
margin-left: 15px;
|
|
4413
4277
|
margin-right: 15px;
|
|
4414
4278
|
}
|
|
4415
|
-
|
|
4416
|
-
nav ul a.btn > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-small > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-flat > .material-icons, nav ul a.btn-floating > .material-icons {
|
|
4279
|
+
nav ul a.btn > .material-icons, nav ul a.btn-small > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-flat > .material-icons, nav ul a.btn-floating > .material-icons {
|
|
4417
4280
|
height: inherit;
|
|
4418
4281
|
line-height: inherit;
|
|
4419
4282
|
}
|
|
4420
|
-
|
|
4421
4283
|
nav ul a:hover {
|
|
4422
4284
|
background-color: rgba(0, 0, 0, 0.1);
|
|
4423
4285
|
}
|
|
4424
|
-
|
|
4425
4286
|
nav ul.left {
|
|
4426
4287
|
float: left;
|
|
4427
4288
|
}
|
|
4428
|
-
|
|
4429
4289
|
nav form {
|
|
4430
4290
|
height: 100%;
|
|
4431
4291
|
}
|
|
4432
|
-
|
|
4433
4292
|
nav .input-field {
|
|
4434
4293
|
margin: 0;
|
|
4435
4294
|
height: 100%;
|
|
4436
4295
|
}
|
|
4437
|
-
|
|
4438
4296
|
nav .input-field input {
|
|
4439
4297
|
height: 100%;
|
|
4440
4298
|
font-size: 1.2rem;
|
|
4441
4299
|
border: none;
|
|
4442
4300
|
padding-left: 2rem;
|
|
4443
4301
|
}
|
|
4444
|
-
|
|
4445
4302
|
nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
|
|
4446
4303
|
border: none;
|
|
4447
4304
|
-webkit-box-shadow: none;
|
|
4448
4305
|
box-shadow: none;
|
|
4449
4306
|
}
|
|
4450
|
-
|
|
4451
4307
|
nav .input-field label {
|
|
4452
4308
|
top: 0;
|
|
4453
4309
|
left: 0;
|
|
4454
4310
|
}
|
|
4455
|
-
|
|
4456
4311
|
nav .input-field label i {
|
|
4457
4312
|
color: rgba(255, 255, 255, 0.7);
|
|
4458
|
-
-webkit-transition: color .3s;
|
|
4459
|
-
transition: color .3s;
|
|
4313
|
+
-webkit-transition: color 0.3s;
|
|
4314
|
+
transition: color 0.3s;
|
|
4460
4315
|
}
|
|
4461
|
-
|
|
4462
4316
|
nav .input-field label.active i {
|
|
4463
4317
|
color: #fff;
|
|
4464
4318
|
}
|
|
@@ -4468,24 +4322,24 @@ nav .input-field label.active i {
|
|
|
4468
4322
|
height: 56px;
|
|
4469
4323
|
z-index: 997;
|
|
4470
4324
|
}
|
|
4471
|
-
|
|
4472
4325
|
.navbar-fixed nav {
|
|
4473
4326
|
position: fixed;
|
|
4474
4327
|
}
|
|
4475
4328
|
|
|
4476
|
-
@media only screen and (min-width: 601px) {
|
|
4329
|
+
@media only screen and (min-width : 601px) {
|
|
4477
4330
|
nav.nav-extended .nav-wrapper {
|
|
4478
4331
|
min-height: 64px;
|
|
4479
4332
|
}
|
|
4333
|
+
|
|
4480
4334
|
nav, nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i {
|
|
4481
4335
|
height: 64px;
|
|
4482
4336
|
line-height: 64px;
|
|
4483
4337
|
}
|
|
4338
|
+
|
|
4484
4339
|
.navbar-fixed {
|
|
4485
4340
|
height: 64px;
|
|
4486
4341
|
}
|
|
4487
4342
|
}
|
|
4488
|
-
|
|
4489
4343
|
a {
|
|
4490
4344
|
text-decoration: none;
|
|
4491
4345
|
}
|
|
@@ -4496,19 +4350,16 @@ html {
|
|
|
4496
4350
|
font-weight: normal;
|
|
4497
4351
|
color: rgba(0, 0, 0, 0.87);
|
|
4498
4352
|
}
|
|
4499
|
-
|
|
4500
4353
|
@media only screen and (min-width: 0) {
|
|
4501
4354
|
html {
|
|
4502
4355
|
font-size: 14px;
|
|
4503
4356
|
}
|
|
4504
4357
|
}
|
|
4505
|
-
|
|
4506
4358
|
@media only screen and (min-width: 993px) {
|
|
4507
4359
|
html {
|
|
4508
4360
|
font-size: 14.5px;
|
|
4509
4361
|
}
|
|
4510
4362
|
}
|
|
4511
|
-
|
|
4512
4363
|
@media only screen and (min-width: 1201px) {
|
|
4513
4364
|
html {
|
|
4514
4365
|
font-size: 15px;
|
|
@@ -4585,127 +4436,106 @@ small {
|
|
|
4585
4436
|
font-size: 1.2rem;
|
|
4586
4437
|
}
|
|
4587
4438
|
}
|
|
4588
|
-
|
|
4589
4439
|
@media only screen and (min-width: 390px) {
|
|
4590
4440
|
.flow-text {
|
|
4591
4441
|
font-size: 1.224rem;
|
|
4592
4442
|
}
|
|
4593
4443
|
}
|
|
4594
|
-
|
|
4595
4444
|
@media only screen and (min-width: 420px) {
|
|
4596
4445
|
.flow-text {
|
|
4597
4446
|
font-size: 1.248rem;
|
|
4598
4447
|
}
|
|
4599
4448
|
}
|
|
4600
|
-
|
|
4601
4449
|
@media only screen and (min-width: 450px) {
|
|
4602
4450
|
.flow-text {
|
|
4603
4451
|
font-size: 1.272rem;
|
|
4604
4452
|
}
|
|
4605
4453
|
}
|
|
4606
|
-
|
|
4607
4454
|
@media only screen and (min-width: 480px) {
|
|
4608
4455
|
.flow-text {
|
|
4609
4456
|
font-size: 1.296rem;
|
|
4610
4457
|
}
|
|
4611
4458
|
}
|
|
4612
|
-
|
|
4613
4459
|
@media only screen and (min-width: 510px) {
|
|
4614
4460
|
.flow-text {
|
|
4615
4461
|
font-size: 1.32rem;
|
|
4616
4462
|
}
|
|
4617
4463
|
}
|
|
4618
|
-
|
|
4619
4464
|
@media only screen and (min-width: 540px) {
|
|
4620
4465
|
.flow-text {
|
|
4621
4466
|
font-size: 1.344rem;
|
|
4622
4467
|
}
|
|
4623
4468
|
}
|
|
4624
|
-
|
|
4625
4469
|
@media only screen and (min-width: 570px) {
|
|
4626
4470
|
.flow-text {
|
|
4627
4471
|
font-size: 1.368rem;
|
|
4628
4472
|
}
|
|
4629
4473
|
}
|
|
4630
|
-
|
|
4631
4474
|
@media only screen and (min-width: 600px) {
|
|
4632
4475
|
.flow-text {
|
|
4633
4476
|
font-size: 1.392rem;
|
|
4634
4477
|
}
|
|
4635
4478
|
}
|
|
4636
|
-
|
|
4637
4479
|
@media only screen and (min-width: 630px) {
|
|
4638
4480
|
.flow-text {
|
|
4639
4481
|
font-size: 1.416rem;
|
|
4640
4482
|
}
|
|
4641
4483
|
}
|
|
4642
|
-
|
|
4643
4484
|
@media only screen and (min-width: 660px) {
|
|
4644
4485
|
.flow-text {
|
|
4645
4486
|
font-size: 1.44rem;
|
|
4646
4487
|
}
|
|
4647
4488
|
}
|
|
4648
|
-
|
|
4649
4489
|
@media only screen and (min-width: 690px) {
|
|
4650
4490
|
.flow-text {
|
|
4651
4491
|
font-size: 1.464rem;
|
|
4652
4492
|
}
|
|
4653
4493
|
}
|
|
4654
|
-
|
|
4655
4494
|
@media only screen and (min-width: 720px) {
|
|
4656
4495
|
.flow-text {
|
|
4657
4496
|
font-size: 1.488rem;
|
|
4658
4497
|
}
|
|
4659
4498
|
}
|
|
4660
|
-
|
|
4661
4499
|
@media only screen and (min-width: 750px) {
|
|
4662
4500
|
.flow-text {
|
|
4663
4501
|
font-size: 1.512rem;
|
|
4664
4502
|
}
|
|
4665
4503
|
}
|
|
4666
|
-
|
|
4667
4504
|
@media only screen and (min-width: 780px) {
|
|
4668
4505
|
.flow-text {
|
|
4669
4506
|
font-size: 1.536rem;
|
|
4670
4507
|
}
|
|
4671
4508
|
}
|
|
4672
|
-
|
|
4673
4509
|
@media only screen and (min-width: 810px) {
|
|
4674
4510
|
.flow-text {
|
|
4675
4511
|
font-size: 1.56rem;
|
|
4676
4512
|
}
|
|
4677
4513
|
}
|
|
4678
|
-
|
|
4679
4514
|
@media only screen and (min-width: 840px) {
|
|
4680
4515
|
.flow-text {
|
|
4681
4516
|
font-size: 1.584rem;
|
|
4682
4517
|
}
|
|
4683
4518
|
}
|
|
4684
|
-
|
|
4685
4519
|
@media only screen and (min-width: 870px) {
|
|
4686
4520
|
.flow-text {
|
|
4687
4521
|
font-size: 1.608rem;
|
|
4688
4522
|
}
|
|
4689
4523
|
}
|
|
4690
|
-
|
|
4691
4524
|
@media only screen and (min-width: 900px) {
|
|
4692
4525
|
.flow-text {
|
|
4693
4526
|
font-size: 1.632rem;
|
|
4694
4527
|
}
|
|
4695
4528
|
}
|
|
4696
|
-
|
|
4697
4529
|
@media only screen and (min-width: 930px) {
|
|
4698
4530
|
.flow-text {
|
|
4699
4531
|
font-size: 1.656rem;
|
|
4700
4532
|
}
|
|
4701
4533
|
}
|
|
4702
|
-
|
|
4703
4534
|
@media only screen and (min-width: 960px) {
|
|
4704
4535
|
.flow-text {
|
|
4705
4536
|
font-size: 1.68rem;
|
|
4706
4537
|
}
|
|
4707
4538
|
}
|
|
4708
|
-
|
|
4709
4539
|
@media only screen and (max-width: 360px) {
|
|
4710
4540
|
.flow-text {
|
|
4711
4541
|
font-size: 1.2rem;
|
|
@@ -4718,26 +4548,24 @@ small {
|
|
|
4718
4548
|
transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
|
|
4719
4549
|
transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63), -webkit-transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
|
|
4720
4550
|
}
|
|
4721
|
-
|
|
4722
4551
|
.scale-transition.scale-out {
|
|
4723
4552
|
-webkit-transform: scale(0);
|
|
4724
4553
|
transform: scale(0);
|
|
4725
|
-
-webkit-transition: -webkit-transform .2s !important;
|
|
4726
|
-
transition: -webkit-transform .2s !important;
|
|
4727
|
-
transition: transform .2s !important;
|
|
4728
|
-
transition: transform .2s, -webkit-transform .2s !important;
|
|
4554
|
+
-webkit-transition: -webkit-transform 0.2s !important;
|
|
4555
|
+
transition: -webkit-transform 0.2s !important;
|
|
4556
|
+
transition: transform 0.2s !important;
|
|
4557
|
+
transition: transform 0.2s, -webkit-transform 0.2s !important;
|
|
4729
4558
|
}
|
|
4730
|
-
|
|
4731
4559
|
.scale-transition.scale-in {
|
|
4732
4560
|
-webkit-transform: scale(1);
|
|
4733
4561
|
transform: scale(1);
|
|
4734
4562
|
}
|
|
4735
4563
|
|
|
4736
4564
|
.card-panel {
|
|
4737
|
-
-webkit-transition: -webkit-box-shadow .25s;
|
|
4738
|
-
transition: -webkit-box-shadow .25s;
|
|
4739
|
-
transition: box-shadow .25s;
|
|
4740
|
-
transition: box-shadow .25s, -webkit-box-shadow .25s;
|
|
4565
|
+
-webkit-transition: -webkit-box-shadow 0.25s;
|
|
4566
|
+
transition: -webkit-box-shadow 0.25s;
|
|
4567
|
+
transition: box-shadow 0.25s;
|
|
4568
|
+
transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
|
|
4741
4569
|
padding: 24px;
|
|
4742
4570
|
margin: 0.5rem 0 1rem 0;
|
|
4743
4571
|
border-radius: 2px;
|
|
@@ -4748,86 +4576,70 @@ small {
|
|
|
4748
4576
|
position: relative;
|
|
4749
4577
|
margin: 0.5rem 0 1rem 0;
|
|
4750
4578
|
background-color: #fff;
|
|
4751
|
-
-webkit-transition: -webkit-box-shadow .25s;
|
|
4752
|
-
transition: -webkit-box-shadow .25s;
|
|
4753
|
-
transition: box-shadow .25s;
|
|
4754
|
-
transition: box-shadow .25s, -webkit-box-shadow .25s;
|
|
4579
|
+
-webkit-transition: -webkit-box-shadow 0.25s;
|
|
4580
|
+
transition: -webkit-box-shadow 0.25s;
|
|
4581
|
+
transition: box-shadow 0.25s;
|
|
4582
|
+
transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
|
|
4755
4583
|
border-radius: 2px;
|
|
4756
4584
|
}
|
|
4757
|
-
|
|
4758
4585
|
.card .card-title {
|
|
4759
4586
|
font-size: 24px;
|
|
4760
4587
|
font-weight: 300;
|
|
4761
4588
|
}
|
|
4762
|
-
|
|
4763
4589
|
.card .card-title.activator {
|
|
4764
4590
|
cursor: pointer;
|
|
4765
4591
|
}
|
|
4766
|
-
|
|
4767
4592
|
.card.small, .card.medium, .card.large {
|
|
4768
4593
|
position: relative;
|
|
4769
4594
|
}
|
|
4770
|
-
|
|
4771
4595
|
.card.small .card-image, .card.medium .card-image, .card.large .card-image {
|
|
4772
4596
|
max-height: 60%;
|
|
4773
4597
|
overflow: hidden;
|
|
4774
4598
|
}
|
|
4775
|
-
|
|
4776
4599
|
.card.small .card-image + .card-content, .card.medium .card-image + .card-content, .card.large .card-image + .card-content {
|
|
4777
4600
|
max-height: 40%;
|
|
4778
4601
|
}
|
|
4779
|
-
|
|
4780
4602
|
.card.small .card-content, .card.medium .card-content, .card.large .card-content {
|
|
4781
4603
|
max-height: 100%;
|
|
4782
4604
|
overflow: hidden;
|
|
4783
4605
|
}
|
|
4784
|
-
|
|
4785
4606
|
.card.small .card-action, .card.medium .card-action, .card.large .card-action {
|
|
4786
4607
|
position: absolute;
|
|
4787
4608
|
bottom: 0;
|
|
4788
4609
|
left: 0;
|
|
4789
4610
|
right: 0;
|
|
4790
4611
|
}
|
|
4791
|
-
|
|
4792
4612
|
.card.small {
|
|
4793
4613
|
height: 300px;
|
|
4794
4614
|
}
|
|
4795
|
-
|
|
4796
4615
|
.card.medium {
|
|
4797
4616
|
height: 400px;
|
|
4798
4617
|
}
|
|
4799
|
-
|
|
4800
4618
|
.card.large {
|
|
4801
4619
|
height: 500px;
|
|
4802
4620
|
}
|
|
4803
|
-
|
|
4804
4621
|
.card.horizontal {
|
|
4805
4622
|
display: -webkit-box;
|
|
4806
4623
|
display: -webkit-flex;
|
|
4807
4624
|
display: -ms-flexbox;
|
|
4808
4625
|
display: flex;
|
|
4809
4626
|
}
|
|
4810
|
-
|
|
4811
4627
|
.card.horizontal.small .card-image, .card.horizontal.medium .card-image, .card.horizontal.large .card-image {
|
|
4812
4628
|
height: 100%;
|
|
4813
4629
|
max-height: none;
|
|
4814
4630
|
overflow: visible;
|
|
4815
4631
|
}
|
|
4816
|
-
|
|
4817
4632
|
.card.horizontal.small .card-image img, .card.horizontal.medium .card-image img, .card.horizontal.large .card-image img {
|
|
4818
4633
|
height: 100%;
|
|
4819
4634
|
}
|
|
4820
|
-
|
|
4821
4635
|
.card.horizontal .card-image {
|
|
4822
4636
|
max-width: 50%;
|
|
4823
4637
|
}
|
|
4824
|
-
|
|
4825
4638
|
.card.horizontal .card-image img {
|
|
4826
4639
|
border-radius: 2px 0 0 2px;
|
|
4827
4640
|
max-width: 100%;
|
|
4828
4641
|
width: auto;
|
|
4829
4642
|
}
|
|
4830
|
-
|
|
4831
4643
|
.card.horizontal .card-stacked {
|
|
4832
4644
|
display: -webkit-box;
|
|
4833
4645
|
display: -webkit-flex;
|
|
@@ -4844,27 +4656,22 @@ small {
|
|
|
4844
4656
|
flex: 1;
|
|
4845
4657
|
position: relative;
|
|
4846
4658
|
}
|
|
4847
|
-
|
|
4848
4659
|
.card.horizontal .card-stacked .card-content {
|
|
4849
4660
|
-webkit-box-flex: 1;
|
|
4850
4661
|
-webkit-flex-grow: 1;
|
|
4851
4662
|
-ms-flex-positive: 1;
|
|
4852
4663
|
flex-grow: 1;
|
|
4853
4664
|
}
|
|
4854
|
-
|
|
4855
4665
|
.card.sticky-action .card-action {
|
|
4856
4666
|
z-index: 2;
|
|
4857
4667
|
}
|
|
4858
|
-
|
|
4859
4668
|
.card.sticky-action .card-reveal {
|
|
4860
4669
|
z-index: 1;
|
|
4861
4670
|
padding-bottom: 64px;
|
|
4862
4671
|
}
|
|
4863
|
-
|
|
4864
4672
|
.card .card-image {
|
|
4865
4673
|
position: relative;
|
|
4866
4674
|
}
|
|
4867
|
-
|
|
4868
4675
|
.card .card-image img {
|
|
4869
4676
|
display: block;
|
|
4870
4677
|
border-radius: 2px 2px 0 0;
|
|
@@ -4875,7 +4682,6 @@ small {
|
|
|
4875
4682
|
bottom: 0;
|
|
4876
4683
|
width: 100%;
|
|
4877
4684
|
}
|
|
4878
|
-
|
|
4879
4685
|
.card .card-image .card-title {
|
|
4880
4686
|
color: #fff;
|
|
4881
4687
|
position: absolute;
|
|
@@ -4884,49 +4690,40 @@ small {
|
|
|
4884
4690
|
max-width: 100%;
|
|
4885
4691
|
padding: 24px;
|
|
4886
4692
|
}
|
|
4887
|
-
|
|
4888
4693
|
.card .card-content {
|
|
4889
4694
|
padding: 24px;
|
|
4890
4695
|
border-radius: 0 0 2px 2px;
|
|
4891
4696
|
}
|
|
4892
|
-
|
|
4893
4697
|
.card .card-content p {
|
|
4894
4698
|
margin: 0;
|
|
4895
4699
|
}
|
|
4896
|
-
|
|
4897
4700
|
.card .card-content .card-title {
|
|
4898
4701
|
display: block;
|
|
4899
4702
|
line-height: 32px;
|
|
4900
4703
|
margin-bottom: 8px;
|
|
4901
4704
|
}
|
|
4902
|
-
|
|
4903
4705
|
.card .card-content .card-title i {
|
|
4904
4706
|
line-height: 32px;
|
|
4905
4707
|
}
|
|
4906
|
-
|
|
4907
4708
|
.card .card-action {
|
|
4908
4709
|
background-color: inherit;
|
|
4909
4710
|
border-top: 1px solid rgba(160, 160, 160, 0.2);
|
|
4910
4711
|
position: relative;
|
|
4911
4712
|
padding: 16px 24px;
|
|
4912
4713
|
}
|
|
4913
|
-
|
|
4914
4714
|
.card .card-action:last-child {
|
|
4915
4715
|
border-radius: 0 0 2px 2px;
|
|
4916
4716
|
}
|
|
4917
|
-
|
|
4918
|
-
.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
|
|
4717
|
+
.card .card-action a:not(.btn):not(.btn-small):not(.btn-large):not(.btn-large):not(.btn-floating) {
|
|
4919
4718
|
color: #ffab40;
|
|
4920
4719
|
margin-right: 24px;
|
|
4921
|
-
-webkit-transition: color .3s ease;
|
|
4922
|
-
transition: color .3s ease;
|
|
4720
|
+
-webkit-transition: color 0.3s ease;
|
|
4721
|
+
transition: color 0.3s ease;
|
|
4923
4722
|
text-transform: uppercase;
|
|
4924
4723
|
}
|
|
4925
|
-
|
|
4926
|
-
.card .card-action a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating):hover {
|
|
4724
|
+
.card .card-action a:not(.btn):not(.btn-small):not(.btn-large):not(.btn-large):not(.btn-floating):hover {
|
|
4927
4725
|
color: #ffd8a6;
|
|
4928
4726
|
}
|
|
4929
|
-
|
|
4930
4727
|
.card .card-reveal {
|
|
4931
4728
|
padding: 24px;
|
|
4932
4729
|
position: absolute;
|
|
@@ -4939,7 +4736,6 @@ small {
|
|
|
4939
4736
|
z-index: 3;
|
|
4940
4737
|
display: none;
|
|
4941
4738
|
}
|
|
4942
|
-
|
|
4943
4739
|
.card .card-reveal .card-title {
|
|
4944
4740
|
cursor: pointer;
|
|
4945
4741
|
display: block;
|
|
@@ -4950,23 +4746,20 @@ small {
|
|
|
4950
4746
|
position: fixed;
|
|
4951
4747
|
z-index: 10000;
|
|
4952
4748
|
}
|
|
4953
|
-
|
|
4954
|
-
@media only screen and (max-width: 600.99px) {
|
|
4749
|
+
@media only screen and (max-width : 600.99px) {
|
|
4955
4750
|
#toast-container {
|
|
4956
4751
|
min-width: 100%;
|
|
4957
4752
|
bottom: 0%;
|
|
4958
4753
|
}
|
|
4959
4754
|
}
|
|
4960
|
-
|
|
4961
|
-
@media only screen and (min-width: 601px) and (max-width: 992.99px) {
|
|
4755
|
+
@media only screen and (min-width : 601px) and (max-width : 992.99px) {
|
|
4962
4756
|
#toast-container {
|
|
4963
4757
|
left: 5%;
|
|
4964
4758
|
bottom: 7%;
|
|
4965
4759
|
max-width: 90%;
|
|
4966
4760
|
}
|
|
4967
4761
|
}
|
|
4968
|
-
|
|
4969
|
-
@media only screen and (min-width: 993px) {
|
|
4762
|
+
@media only screen and (min-width : 993px) {
|
|
4970
4763
|
#toast-container {
|
|
4971
4764
|
top: 10%;
|
|
4972
4765
|
right: 7%;
|
|
@@ -5003,19 +4796,16 @@ small {
|
|
|
5003
4796
|
justify-content: space-between;
|
|
5004
4797
|
cursor: default;
|
|
5005
4798
|
}
|
|
5006
|
-
|
|
5007
4799
|
.toast .toast-action {
|
|
5008
4800
|
color: #eeff41;
|
|
5009
4801
|
font-weight: 500;
|
|
5010
4802
|
margin-right: -25px;
|
|
5011
4803
|
margin-left: 3rem;
|
|
5012
4804
|
}
|
|
5013
|
-
|
|
5014
4805
|
.toast.rounded {
|
|
5015
4806
|
border-radius: 24px;
|
|
5016
4807
|
}
|
|
5017
|
-
|
|
5018
|
-
@media only screen and (max-width: 600.99px) {
|
|
4808
|
+
@media only screen and (max-width : 600.99px) {
|
|
5019
4809
|
.toast {
|
|
5020
4810
|
width: 100%;
|
|
5021
4811
|
border-radius: 0;
|
|
@@ -5032,40 +4822,33 @@ small {
|
|
|
5032
4822
|
margin: 0 auto;
|
|
5033
4823
|
white-space: nowrap;
|
|
5034
4824
|
}
|
|
5035
|
-
|
|
5036
4825
|
.tabs.tabs-transparent {
|
|
5037
4826
|
background-color: transparent;
|
|
5038
4827
|
}
|
|
5039
|
-
|
|
5040
4828
|
.tabs.tabs-transparent .tab a,
|
|
5041
4829
|
.tabs.tabs-transparent .tab.disabled a,
|
|
5042
4830
|
.tabs.tabs-transparent .tab.disabled a:hover {
|
|
5043
4831
|
color: rgba(255, 255, 255, 0.7);
|
|
5044
4832
|
}
|
|
5045
|
-
|
|
5046
4833
|
.tabs.tabs-transparent .tab a:hover,
|
|
5047
4834
|
.tabs.tabs-transparent .tab a.active {
|
|
5048
4835
|
color: #fff;
|
|
5049
4836
|
}
|
|
5050
|
-
|
|
5051
4837
|
.tabs.tabs-transparent .indicator {
|
|
5052
4838
|
background-color: #fff;
|
|
5053
4839
|
}
|
|
5054
|
-
|
|
5055
4840
|
.tabs.tabs-fixed-width {
|
|
5056
4841
|
display: -webkit-box;
|
|
5057
4842
|
display: -webkit-flex;
|
|
5058
4843
|
display: -ms-flexbox;
|
|
5059
4844
|
display: flex;
|
|
5060
4845
|
}
|
|
5061
|
-
|
|
5062
4846
|
.tabs.tabs-fixed-width .tab {
|
|
5063
4847
|
-webkit-box-flex: 1;
|
|
5064
4848
|
-webkit-flex-grow: 1;
|
|
5065
4849
|
-ms-flex-positive: 1;
|
|
5066
4850
|
flex-grow: 1;
|
|
5067
4851
|
}
|
|
5068
|
-
|
|
5069
4852
|
.tabs .tab {
|
|
5070
4853
|
display: inline-block;
|
|
5071
4854
|
text-align: center;
|
|
@@ -5075,7 +4858,6 @@ small {
|
|
|
5075
4858
|
margin: 0;
|
|
5076
4859
|
text-transform: uppercase;
|
|
5077
4860
|
}
|
|
5078
|
-
|
|
5079
4861
|
.tabs .tab a {
|
|
5080
4862
|
color: rgba(238, 110, 115, 0.7);
|
|
5081
4863
|
display: block;
|
|
@@ -5085,26 +4867,21 @@ small {
|
|
|
5085
4867
|
font-size: 14px;
|
|
5086
4868
|
text-overflow: ellipsis;
|
|
5087
4869
|
overflow: hidden;
|
|
5088
|
-
-webkit-transition: color .28s ease, background-color .28s ease;
|
|
5089
|
-
transition: color .28s ease, background-color .28s ease;
|
|
4870
|
+
-webkit-transition: color 0.28s ease, background-color 0.28s ease;
|
|
4871
|
+
transition: color 0.28s ease, background-color 0.28s ease;
|
|
5090
4872
|
}
|
|
5091
|
-
|
|
5092
4873
|
.tabs .tab a:focus, .tabs .tab a:focus.active {
|
|
5093
4874
|
background-color: rgba(246, 178, 181, 0.2);
|
|
5094
4875
|
outline: none;
|
|
5095
4876
|
}
|
|
5096
|
-
|
|
5097
4877
|
.tabs .tab a:hover, .tabs .tab a.active {
|
|
5098
4878
|
background-color: transparent;
|
|
5099
4879
|
color: #ee6e73;
|
|
5100
4880
|
}
|
|
5101
|
-
|
|
5102
|
-
.tabs .tab.disabled a,
|
|
5103
|
-
.tabs .tab.disabled a:hover {
|
|
4881
|
+
.tabs .tab.disabled a, .tabs .tab.disabled a:hover {
|
|
5104
4882
|
color: rgba(238, 110, 115, 0.4);
|
|
5105
4883
|
cursor: default;
|
|
5106
4884
|
}
|
|
5107
|
-
|
|
5108
4885
|
.tabs .indicator {
|
|
5109
4886
|
position: absolute;
|
|
5110
4887
|
bottom: 0;
|
|
@@ -5113,7 +4890,7 @@ small {
|
|
|
5113
4890
|
will-change: left, right;
|
|
5114
4891
|
}
|
|
5115
4892
|
|
|
5116
|
-
@media only screen and (max-width: 992.99px) {
|
|
4893
|
+
@media only screen and (max-width : 992.99px) {
|
|
5117
4894
|
.tabs {
|
|
5118
4895
|
display: -webkit-box;
|
|
5119
4896
|
display: -webkit-flex;
|
|
@@ -5130,7 +4907,6 @@ small {
|
|
|
5130
4907
|
padding: 0 12px;
|
|
5131
4908
|
}
|
|
5132
4909
|
}
|
|
5133
|
-
|
|
5134
4910
|
.material-tooltip {
|
|
5135
4911
|
padding: 10px 8px;
|
|
5136
4912
|
font-size: 1rem;
|
|
@@ -5165,7 +4941,7 @@ small {
|
|
|
5165
4941
|
visibility: hidden;
|
|
5166
4942
|
}
|
|
5167
4943
|
|
|
5168
|
-
.btn, .btn-
|
|
4944
|
+
.btn, .btn-small, .btn-large,
|
|
5169
4945
|
.btn-flat {
|
|
5170
4946
|
border: none;
|
|
5171
4947
|
border-radius: 2px;
|
|
@@ -5178,21 +4954,17 @@ small {
|
|
|
5178
4954
|
-webkit-tap-highlight-color: transparent;
|
|
5179
4955
|
}
|
|
5180
4956
|
|
|
5181
|
-
.btn.disabled,
|
|
4957
|
+
.btn.disabled,
|
|
5182
4958
|
.btn-floating.disabled,
|
|
5183
4959
|
.btn-large.disabled,
|
|
5184
4960
|
.btn-small.disabled,
|
|
5185
4961
|
.btn-flat.disabled,
|
|
5186
4962
|
.btn:disabled,
|
|
5187
|
-
.btn-large:disabled,
|
|
5188
|
-
.btn-small:disabled,
|
|
5189
4963
|
.btn-floating:disabled,
|
|
5190
4964
|
.btn-large:disabled,
|
|
5191
4965
|
.btn-small:disabled,
|
|
5192
4966
|
.btn-flat:disabled,
|
|
5193
4967
|
.btn[disabled],
|
|
5194
|
-
.btn-large[disabled],
|
|
5195
|
-
.btn-small[disabled],
|
|
5196
4968
|
.btn-floating[disabled],
|
|
5197
4969
|
.btn-large[disabled],
|
|
5198
4970
|
.btn-small[disabled],
|
|
@@ -5204,22 +4976,17 @@ small {
|
|
|
5204
4976
|
color: #9F9F9F !important;
|
|
5205
4977
|
cursor: default;
|
|
5206
4978
|
}
|
|
5207
|
-
|
|
5208
|
-
.btn.disabled:hover, .disabled.btn-large:hover, .disabled.btn-small:hover,
|
|
4979
|
+
.btn.disabled:hover,
|
|
5209
4980
|
.btn-floating.disabled:hover,
|
|
5210
4981
|
.btn-large.disabled:hover,
|
|
5211
4982
|
.btn-small.disabled:hover,
|
|
5212
4983
|
.btn-flat.disabled:hover,
|
|
5213
4984
|
.btn:disabled:hover,
|
|
5214
|
-
.btn-large:disabled:hover,
|
|
5215
|
-
.btn-small:disabled:hover,
|
|
5216
4985
|
.btn-floating:disabled:hover,
|
|
5217
4986
|
.btn-large:disabled:hover,
|
|
5218
4987
|
.btn-small:disabled:hover,
|
|
5219
4988
|
.btn-flat:disabled:hover,
|
|
5220
4989
|
.btn[disabled]:hover,
|
|
5221
|
-
.btn-large[disabled]:hover,
|
|
5222
|
-
.btn-small[disabled]:hover,
|
|
5223
4990
|
.btn-floating[disabled]:hover,
|
|
5224
4991
|
.btn-large[disabled]:hover,
|
|
5225
4992
|
.btn-small[disabled]:hover,
|
|
@@ -5228,7 +4995,7 @@ small {
|
|
|
5228
4995
|
color: #9F9F9F !important;
|
|
5229
4996
|
}
|
|
5230
4997
|
|
|
5231
|
-
.btn,
|
|
4998
|
+
.btn,
|
|
5232
4999
|
.btn-floating,
|
|
5233
5000
|
.btn-large,
|
|
5234
5001
|
.btn-small,
|
|
@@ -5236,8 +5003,7 @@ small {
|
|
|
5236
5003
|
font-size: 14px;
|
|
5237
5004
|
outline: 0;
|
|
5238
5005
|
}
|
|
5239
|
-
|
|
5240
|
-
.btn i, .btn-large i, .btn-small i,
|
|
5006
|
+
.btn i,
|
|
5241
5007
|
.btn-floating i,
|
|
5242
5008
|
.btn-large i,
|
|
5243
5009
|
.btn-small i,
|
|
@@ -5246,23 +5012,22 @@ small {
|
|
|
5246
5012
|
line-height: inherit;
|
|
5247
5013
|
}
|
|
5248
5014
|
|
|
5249
|
-
.btn:focus, .btn-
|
|
5015
|
+
.btn:focus, .btn-small:focus, .btn-large:focus,
|
|
5250
5016
|
.btn-floating:focus {
|
|
5251
5017
|
background-color: #1d7d74;
|
|
5252
5018
|
}
|
|
5253
5019
|
|
|
5254
|
-
.btn, .btn-
|
|
5020
|
+
.btn, .btn-small, .btn-large {
|
|
5255
5021
|
text-decoration: none;
|
|
5256
5022
|
color: #fff;
|
|
5257
5023
|
background-color: #26a69a;
|
|
5258
5024
|
text-align: center;
|
|
5259
|
-
letter-spacing: .5px;
|
|
5260
|
-
-webkit-transition: background-color .2s ease-out;
|
|
5261
|
-
transition: background-color .2s ease-out;
|
|
5025
|
+
letter-spacing: 0.5px;
|
|
5026
|
+
-webkit-transition: background-color 0.2s ease-out;
|
|
5027
|
+
transition: background-color 0.2s ease-out;
|
|
5262
5028
|
cursor: pointer;
|
|
5263
5029
|
}
|
|
5264
|
-
|
|
5265
|
-
.btn:hover, .btn-large:hover, .btn-small:hover {
|
|
5030
|
+
.btn:hover, .btn-small:hover, .btn-large:hover {
|
|
5266
5031
|
background-color: #2bbbad;
|
|
5267
5032
|
}
|
|
5268
5033
|
|
|
@@ -5278,58 +5043,47 @@ small {
|
|
|
5278
5043
|
padding: 0;
|
|
5279
5044
|
background-color: #26a69a;
|
|
5280
5045
|
border-radius: 50%;
|
|
5281
|
-
-webkit-transition: background-color .3s;
|
|
5282
|
-
transition: background-color .3s;
|
|
5046
|
+
-webkit-transition: background-color 0.3s;
|
|
5047
|
+
transition: background-color 0.3s;
|
|
5283
5048
|
cursor: pointer;
|
|
5284
5049
|
vertical-align: middle;
|
|
5285
5050
|
}
|
|
5286
|
-
|
|
5287
5051
|
.btn-floating:hover {
|
|
5288
5052
|
background-color: #26a69a;
|
|
5289
5053
|
}
|
|
5290
|
-
|
|
5291
5054
|
.btn-floating:before {
|
|
5292
5055
|
border-radius: 0;
|
|
5293
5056
|
}
|
|
5294
|
-
|
|
5295
5057
|
.btn-floating.btn-large {
|
|
5296
5058
|
width: 56px;
|
|
5297
5059
|
height: 56px;
|
|
5298
5060
|
padding: 0;
|
|
5299
5061
|
}
|
|
5300
|
-
|
|
5301
5062
|
.btn-floating.btn-large.halfway-fab {
|
|
5302
5063
|
bottom: -28px;
|
|
5303
5064
|
}
|
|
5304
|
-
|
|
5305
5065
|
.btn-floating.btn-large i {
|
|
5306
5066
|
line-height: 56px;
|
|
5307
5067
|
}
|
|
5308
|
-
|
|
5309
5068
|
.btn-floating.btn-small {
|
|
5310
5069
|
width: 32.4px;
|
|
5311
5070
|
height: 32.4px;
|
|
5312
5071
|
}
|
|
5313
|
-
|
|
5314
5072
|
.btn-floating.btn-small.halfway-fab {
|
|
5315
5073
|
bottom: -16.2px;
|
|
5316
5074
|
}
|
|
5317
|
-
|
|
5318
5075
|
.btn-floating.btn-small i {
|
|
5319
5076
|
line-height: 32.4px;
|
|
5320
5077
|
}
|
|
5321
|
-
|
|
5322
5078
|
.btn-floating.halfway-fab {
|
|
5323
5079
|
position: absolute;
|
|
5324
5080
|
right: 24px;
|
|
5325
5081
|
bottom: -20px;
|
|
5326
5082
|
}
|
|
5327
|
-
|
|
5328
5083
|
.btn-floating.halfway-fab.left {
|
|
5329
5084
|
right: auto;
|
|
5330
5085
|
left: 24px;
|
|
5331
5086
|
}
|
|
5332
|
-
|
|
5333
5087
|
.btn-floating i {
|
|
5334
5088
|
width: inherit;
|
|
5335
5089
|
display: inline-block;
|
|
@@ -5351,15 +5105,12 @@ button.btn-floating {
|
|
|
5351
5105
|
margin-bottom: 0;
|
|
5352
5106
|
z-index: 997;
|
|
5353
5107
|
}
|
|
5354
|
-
|
|
5355
5108
|
.fixed-action-btn.active ul {
|
|
5356
5109
|
visibility: visible;
|
|
5357
5110
|
}
|
|
5358
|
-
|
|
5359
5111
|
.fixed-action-btn.direction-left, .fixed-action-btn.direction-right {
|
|
5360
5112
|
padding: 0 0 0 15px;
|
|
5361
5113
|
}
|
|
5362
|
-
|
|
5363
5114
|
.fixed-action-btn.direction-left ul, .fixed-action-btn.direction-right ul {
|
|
5364
5115
|
text-align: right;
|
|
5365
5116
|
right: 64px;
|
|
@@ -5371,31 +5122,25 @@ button.btn-floating {
|
|
|
5371
5122
|
/*width 100% only goes to width of button container */
|
|
5372
5123
|
width: 500px;
|
|
5373
5124
|
}
|
|
5374
|
-
|
|
5375
5125
|
.fixed-action-btn.direction-left ul li, .fixed-action-btn.direction-right ul li {
|
|
5376
5126
|
display: inline-block;
|
|
5377
5127
|
margin: 7.5px 15px 0 0;
|
|
5378
5128
|
}
|
|
5379
|
-
|
|
5380
5129
|
.fixed-action-btn.direction-right {
|
|
5381
5130
|
padding: 0 15px 0 0;
|
|
5382
5131
|
}
|
|
5383
|
-
|
|
5384
5132
|
.fixed-action-btn.direction-right ul {
|
|
5385
5133
|
text-align: left;
|
|
5386
5134
|
direction: rtl;
|
|
5387
5135
|
left: 64px;
|
|
5388
5136
|
right: auto;
|
|
5389
5137
|
}
|
|
5390
|
-
|
|
5391
5138
|
.fixed-action-btn.direction-right ul li {
|
|
5392
5139
|
margin: 7.5px 0 0 15px;
|
|
5393
5140
|
}
|
|
5394
|
-
|
|
5395
5141
|
.fixed-action-btn.direction-bottom {
|
|
5396
5142
|
padding: 0 0 15px 0;
|
|
5397
5143
|
}
|
|
5398
|
-
|
|
5399
5144
|
.fixed-action-btn.direction-bottom ul {
|
|
5400
5145
|
top: 64px;
|
|
5401
5146
|
bottom: auto;
|
|
@@ -5409,20 +5154,16 @@ button.btn-floating {
|
|
|
5409
5154
|
-ms-flex-direction: column-reverse;
|
|
5410
5155
|
flex-direction: column-reverse;
|
|
5411
5156
|
}
|
|
5412
|
-
|
|
5413
5157
|
.fixed-action-btn.direction-bottom ul li {
|
|
5414
5158
|
margin: 15px 0 0 0;
|
|
5415
5159
|
}
|
|
5416
|
-
|
|
5417
5160
|
.fixed-action-btn.toolbar {
|
|
5418
5161
|
padding: 0;
|
|
5419
5162
|
height: 56px;
|
|
5420
5163
|
}
|
|
5421
|
-
|
|
5422
5164
|
.fixed-action-btn.toolbar.active > a i {
|
|
5423
5165
|
opacity: 0;
|
|
5424
5166
|
}
|
|
5425
|
-
|
|
5426
5167
|
.fixed-action-btn.toolbar ul {
|
|
5427
5168
|
display: -webkit-box;
|
|
5428
5169
|
display: -webkit-flex;
|
|
@@ -5432,7 +5173,6 @@ button.btn-floating {
|
|
|
5432
5173
|
bottom: 0;
|
|
5433
5174
|
z-index: 1;
|
|
5434
5175
|
}
|
|
5435
|
-
|
|
5436
5176
|
.fixed-action-btn.toolbar ul li {
|
|
5437
5177
|
-webkit-box-flex: 1;
|
|
5438
5178
|
-webkit-flex: 1;
|
|
@@ -5444,7 +5184,6 @@ button.btn-floating {
|
|
|
5444
5184
|
-webkit-transition: none;
|
|
5445
5185
|
transition: none;
|
|
5446
5186
|
}
|
|
5447
|
-
|
|
5448
5187
|
.fixed-action-btn.toolbar ul li a {
|
|
5449
5188
|
display: block;
|
|
5450
5189
|
overflow: hidden;
|
|
@@ -5458,11 +5197,9 @@ button.btn-floating {
|
|
|
5458
5197
|
line-height: 56px;
|
|
5459
5198
|
z-index: 1;
|
|
5460
5199
|
}
|
|
5461
|
-
|
|
5462
5200
|
.fixed-action-btn.toolbar ul li a i {
|
|
5463
5201
|
line-height: inherit;
|
|
5464
5202
|
}
|
|
5465
|
-
|
|
5466
5203
|
.fixed-action-btn ul {
|
|
5467
5204
|
left: 0;
|
|
5468
5205
|
right: 0;
|
|
@@ -5472,15 +5209,12 @@ button.btn-floating {
|
|
|
5472
5209
|
margin: 0;
|
|
5473
5210
|
visibility: hidden;
|
|
5474
5211
|
}
|
|
5475
|
-
|
|
5476
5212
|
.fixed-action-btn ul li {
|
|
5477
5213
|
margin-bottom: 15px;
|
|
5478
5214
|
}
|
|
5479
|
-
|
|
5480
5215
|
.fixed-action-btn ul a.btn-floating {
|
|
5481
5216
|
opacity: 0;
|
|
5482
5217
|
}
|
|
5483
|
-
|
|
5484
5218
|
.fixed-action-btn .fab-backdrop {
|
|
5485
5219
|
position: absolute;
|
|
5486
5220
|
top: 0;
|
|
@@ -5500,22 +5234,19 @@ button.btn-floating {
|
|
|
5500
5234
|
background-color: transparent;
|
|
5501
5235
|
color: #343434;
|
|
5502
5236
|
cursor: pointer;
|
|
5503
|
-
-webkit-transition: background-color .2s;
|
|
5504
|
-
transition: background-color .2s;
|
|
5237
|
+
-webkit-transition: background-color 0.2s;
|
|
5238
|
+
transition: background-color 0.2s;
|
|
5505
5239
|
}
|
|
5506
|
-
|
|
5507
5240
|
.btn-flat:focus, .btn-flat:hover {
|
|
5508
5241
|
-webkit-box-shadow: none;
|
|
5509
5242
|
box-shadow: none;
|
|
5510
5243
|
}
|
|
5511
|
-
|
|
5512
5244
|
.btn-flat:focus {
|
|
5513
5245
|
background-color: rgba(0, 0, 0, 0.1);
|
|
5514
5246
|
}
|
|
5515
|
-
|
|
5516
5247
|
.btn-flat.disabled, .btn-flat.btn-flat[disabled] {
|
|
5517
5248
|
background-color: transparent !important;
|
|
5518
|
-
color: #
|
|
5249
|
+
color: #b3b3b3 !important;
|
|
5519
5250
|
cursor: default;
|
|
5520
5251
|
}
|
|
5521
5252
|
|
|
@@ -5525,7 +5256,6 @@ button.btn-floating {
|
|
|
5525
5256
|
font-size: 15px;
|
|
5526
5257
|
padding: 0 28px;
|
|
5527
5258
|
}
|
|
5528
|
-
|
|
5529
5259
|
.btn-large i {
|
|
5530
5260
|
font-size: 1.6rem;
|
|
5531
5261
|
}
|
|
@@ -5535,7 +5265,6 @@ button.btn-floating {
|
|
|
5535
5265
|
line-height: 32.4px;
|
|
5536
5266
|
font-size: 13px;
|
|
5537
5267
|
}
|
|
5538
|
-
|
|
5539
5268
|
.btn-small i {
|
|
5540
5269
|
font-size: 1.2rem;
|
|
5541
5270
|
}
|
|
@@ -5558,11 +5287,9 @@ button.btn-floating {
|
|
|
5558
5287
|
-webkit-transform-origin: 0 0;
|
|
5559
5288
|
transform-origin: 0 0;
|
|
5560
5289
|
}
|
|
5561
|
-
|
|
5562
5290
|
.dropdown-content:focus {
|
|
5563
5291
|
outline: 0;
|
|
5564
5292
|
}
|
|
5565
|
-
|
|
5566
5293
|
.dropdown-content li {
|
|
5567
5294
|
clear: both;
|
|
5568
5295
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -5572,20 +5299,16 @@ button.btn-floating {
|
|
|
5572
5299
|
width: 100%;
|
|
5573
5300
|
text-align: left;
|
|
5574
5301
|
}
|
|
5575
|
-
|
|
5576
5302
|
.dropdown-content li:hover, .dropdown-content li.active {
|
|
5577
5303
|
background-color: #eee;
|
|
5578
5304
|
}
|
|
5579
|
-
|
|
5580
5305
|
.dropdown-content li:focus {
|
|
5581
5306
|
outline: none;
|
|
5582
5307
|
}
|
|
5583
|
-
|
|
5584
5308
|
.dropdown-content li.divider {
|
|
5585
5309
|
min-height: 0;
|
|
5586
5310
|
height: 1px;
|
|
5587
5311
|
}
|
|
5588
|
-
|
|
5589
5312
|
.dropdown-content li > a, .dropdown-content li > span {
|
|
5590
5313
|
font-size: 16px;
|
|
5591
5314
|
color: #26a69a;
|
|
@@ -5593,13 +5316,11 @@ button.btn-floating {
|
|
|
5593
5316
|
line-height: 22px;
|
|
5594
5317
|
padding: 14px 16px;
|
|
5595
5318
|
}
|
|
5596
|
-
|
|
5597
5319
|
.dropdown-content li > span > label {
|
|
5598
5320
|
top: 1px;
|
|
5599
5321
|
left: 0;
|
|
5600
5322
|
height: 18px;
|
|
5601
5323
|
}
|
|
5602
|
-
|
|
5603
5324
|
.dropdown-content li > a > i {
|
|
5604
5325
|
height: inherit;
|
|
5605
5326
|
line-height: inherit;
|
|
@@ -5612,7 +5333,7 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5612
5333
|
background-color: #dadada;
|
|
5613
5334
|
}
|
|
5614
5335
|
|
|
5615
|
-
.input-field.col .dropdown-content [type=
|
|
5336
|
+
.input-field.col .dropdown-content [type=checkbox] + label {
|
|
5616
5337
|
top: 1px;
|
|
5617
5338
|
left: 0;
|
|
5618
5339
|
height: 18px;
|
|
@@ -5624,12 +5345,12 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5624
5345
|
cursor: pointer;
|
|
5625
5346
|
}
|
|
5626
5347
|
|
|
5627
|
-
/*!
|
|
5628
|
-
* Waves v0.7.6
|
|
5629
|
-
* http://fian.my.id/Waves
|
|
5630
|
-
*
|
|
5631
|
-
* Copyright 2014-2018 Alfiana E. Sibuea and other contributors
|
|
5632
|
-
* Released under the MIT license
|
|
5348
|
+
/*!
|
|
5349
|
+
* Waves v0.7.6
|
|
5350
|
+
* http://fian.my.id/Waves
|
|
5351
|
+
*
|
|
5352
|
+
* Copyright 2014-2018 Alfiana E. Sibuea and other contributors
|
|
5353
|
+
* Released under the MIT license
|
|
5633
5354
|
* https://github.com/fians/Waves/blob/master/LICENSE */
|
|
5634
5355
|
.waves-effect {
|
|
5635
5356
|
position: relative;
|
|
@@ -5642,7 +5363,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5642
5363
|
user-select: none;
|
|
5643
5364
|
-webkit-tap-highlight-color: transparent;
|
|
5644
5365
|
}
|
|
5645
|
-
|
|
5646
5366
|
.waves-effect .waves-ripple {
|
|
5647
5367
|
position: absolute;
|
|
5648
5368
|
border-radius: 50%;
|
|
@@ -5664,49 +5384,38 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5664
5384
|
transform: scale(0) translate(0, 0);
|
|
5665
5385
|
pointer-events: none;
|
|
5666
5386
|
}
|
|
5667
|
-
|
|
5668
5387
|
.waves-effect.waves-light .waves-ripple {
|
|
5669
5388
|
background: rgba(255, 255, 255, 0.4);
|
|
5670
5389
|
background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
|
|
5671
5390
|
}
|
|
5672
|
-
|
|
5673
5391
|
.waves-effect.waves-classic .waves-ripple {
|
|
5674
5392
|
background: rgba(0, 0, 0, 0.2);
|
|
5675
5393
|
}
|
|
5676
|
-
|
|
5677
5394
|
.waves-effect.waves-classic.waves-light .waves-ripple {
|
|
5678
5395
|
background: rgba(255, 255, 255, 0.4);
|
|
5679
5396
|
}
|
|
5680
|
-
|
|
5681
5397
|
.waves-effect.waves-light .waves-ripple {
|
|
5682
5398
|
background-color: rgba(255, 255, 255, 0.45);
|
|
5683
5399
|
}
|
|
5684
|
-
|
|
5685
5400
|
.waves-effect.waves-red .waves-ripple {
|
|
5686
5401
|
background-color: rgba(244, 67, 54, 0.7);
|
|
5687
5402
|
}
|
|
5688
|
-
|
|
5689
5403
|
.waves-effect.waves-yellow .waves-ripple {
|
|
5690
5404
|
background-color: rgba(255, 235, 59, 0.7);
|
|
5691
5405
|
}
|
|
5692
|
-
|
|
5693
5406
|
.waves-effect.waves-orange .waves-ripple {
|
|
5694
5407
|
background-color: rgba(255, 152, 0, 0.7);
|
|
5695
5408
|
}
|
|
5696
|
-
|
|
5697
5409
|
.waves-effect.waves-purple .waves-ripple {
|
|
5698
5410
|
background-color: rgba(156, 39, 176, 0.7);
|
|
5699
5411
|
}
|
|
5700
|
-
|
|
5701
5412
|
.waves-effect.waves-green .waves-ripple {
|
|
5702
5413
|
background-color: rgba(76, 175, 80, 0.7);
|
|
5703
5414
|
}
|
|
5704
|
-
|
|
5705
5415
|
.waves-effect.waves-teal .waves-ripple {
|
|
5706
5416
|
background-color: rgba(0, 150, 136, 0.7);
|
|
5707
5417
|
}
|
|
5708
|
-
|
|
5709
|
-
.waves-effect input[type="button"], .waves-effect input[type="reset"], .waves-effect input[type="submit"] {
|
|
5418
|
+
.waves-effect input[type=button], .waves-effect input[type=reset], .waves-effect input[type=submit] {
|
|
5710
5419
|
border: 0;
|
|
5711
5420
|
font-style: normal;
|
|
5712
5421
|
font-size: inherit;
|
|
@@ -5758,11 +5467,9 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5758
5467
|
border-radius: 0.2em;
|
|
5759
5468
|
vertical-align: bottom;
|
|
5760
5469
|
}
|
|
5761
|
-
|
|
5762
5470
|
.waves-input-wrapper.waves-button {
|
|
5763
5471
|
padding: 0;
|
|
5764
5472
|
}
|
|
5765
|
-
|
|
5766
5473
|
.waves-input-wrapper .waves-button-input {
|
|
5767
5474
|
position: relative;
|
|
5768
5475
|
top: 0;
|
|
@@ -5785,7 +5492,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5785
5492
|
-webkit-transition: all 300ms;
|
|
5786
5493
|
transition: all 300ms;
|
|
5787
5494
|
}
|
|
5788
|
-
|
|
5789
5495
|
.waves-float:active {
|
|
5790
5496
|
-webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
|
|
5791
5497
|
box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
|
|
@@ -5809,30 +5515,24 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5809
5515
|
border-radius: 2px;
|
|
5810
5516
|
will-change: top, opacity;
|
|
5811
5517
|
}
|
|
5812
|
-
|
|
5813
5518
|
.modal:focus {
|
|
5814
5519
|
outline: none;
|
|
5815
5520
|
}
|
|
5816
|
-
|
|
5817
|
-
@media only screen and (max-width: 992.99px) {
|
|
5521
|
+
@media only screen and (max-width : 992.99px) {
|
|
5818
5522
|
.modal {
|
|
5819
5523
|
width: 80%;
|
|
5820
5524
|
}
|
|
5821
5525
|
}
|
|
5822
|
-
|
|
5823
5526
|
.modal h1, .modal h2, .modal h3, .modal h4 {
|
|
5824
5527
|
margin-top: 0;
|
|
5825
5528
|
}
|
|
5826
|
-
|
|
5827
5529
|
.modal .modal-content {
|
|
5828
5530
|
padding: 24px;
|
|
5829
5531
|
overflow-y: hidden;
|
|
5830
5532
|
}
|
|
5831
|
-
|
|
5832
5533
|
.modal .modal-close {
|
|
5833
5534
|
cursor: pointer;
|
|
5834
5535
|
}
|
|
5835
|
-
|
|
5836
5536
|
.modal .modal-footer {
|
|
5837
5537
|
border-radius: 0 0 2px 2px;
|
|
5838
5538
|
background-color: #fafafa;
|
|
@@ -5841,7 +5541,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5841
5541
|
width: 100%;
|
|
5842
5542
|
text-align: right;
|
|
5843
5543
|
}
|
|
5844
|
-
|
|
5845
5544
|
.modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-small, .modal .modal-footer .btn-flat {
|
|
5846
5545
|
margin: 6px 0;
|
|
5847
5546
|
}
|
|
@@ -5864,7 +5563,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5864
5563
|
padding: 0;
|
|
5865
5564
|
height: 70%;
|
|
5866
5565
|
}
|
|
5867
|
-
|
|
5868
5566
|
.modal.modal-fixed-footer .modal-content {
|
|
5869
5567
|
position: absolute;
|
|
5870
5568
|
height: calc(100% - 56px);
|
|
@@ -5872,7 +5570,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5872
5570
|
width: 100%;
|
|
5873
5571
|
overflow-y: auto;
|
|
5874
5572
|
}
|
|
5875
|
-
|
|
5876
5573
|
.modal.modal-fixed-footer .modal-footer {
|
|
5877
5574
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
5878
5575
|
position: absolute;
|
|
@@ -5908,11 +5605,9 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5908
5605
|
background-color: #fff;
|
|
5909
5606
|
border-bottom: 1px solid #ddd;
|
|
5910
5607
|
}
|
|
5911
|
-
|
|
5912
5608
|
.collapsible-header:focus {
|
|
5913
5609
|
outline: 0;
|
|
5914
5610
|
}
|
|
5915
|
-
|
|
5916
5611
|
.collapsible-header i {
|
|
5917
5612
|
width: 2rem;
|
|
5918
5613
|
font-size: 1.6rem;
|
|
@@ -5939,12 +5634,10 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5939
5634
|
-webkit-box-shadow: none;
|
|
5940
5635
|
box-shadow: none;
|
|
5941
5636
|
}
|
|
5942
|
-
|
|
5943
5637
|
.sidenav .collapsible li,
|
|
5944
5638
|
.sidenav.sidenav-fixed .collapsible li {
|
|
5945
5639
|
padding: 0;
|
|
5946
5640
|
}
|
|
5947
|
-
|
|
5948
5641
|
.sidenav .collapsible-header,
|
|
5949
5642
|
.sidenav.sidenav-fixed .collapsible-header {
|
|
5950
5643
|
background-color: transparent;
|
|
@@ -5953,23 +5646,19 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5953
5646
|
height: inherit;
|
|
5954
5647
|
padding: 0 16px;
|
|
5955
5648
|
}
|
|
5956
|
-
|
|
5957
5649
|
.sidenav .collapsible-header:hover,
|
|
5958
5650
|
.sidenav.sidenav-fixed .collapsible-header:hover {
|
|
5959
5651
|
background-color: rgba(0, 0, 0, 0.05);
|
|
5960
5652
|
}
|
|
5961
|
-
|
|
5962
5653
|
.sidenav .collapsible-header i,
|
|
5963
5654
|
.sidenav.sidenav-fixed .collapsible-header i {
|
|
5964
5655
|
line-height: inherit;
|
|
5965
5656
|
}
|
|
5966
|
-
|
|
5967
5657
|
.sidenav .collapsible-body,
|
|
5968
5658
|
.sidenav.sidenav-fixed .collapsible-body {
|
|
5969
5659
|
border: 0;
|
|
5970
5660
|
background-color: #fff;
|
|
5971
5661
|
}
|
|
5972
|
-
|
|
5973
5662
|
.sidenav .collapsible-body li a,
|
|
5974
5663
|
.sidenav.sidenav-fixed .collapsible-body li a {
|
|
5975
5664
|
padding: 0 23.5px 0 31px;
|
|
@@ -5980,7 +5669,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5980
5669
|
-webkit-box-shadow: none;
|
|
5981
5670
|
box-shadow: none;
|
|
5982
5671
|
}
|
|
5983
|
-
|
|
5984
5672
|
.collapsible.popout > li {
|
|
5985
5673
|
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
5986
5674
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
@@ -5988,7 +5676,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5988
5676
|
-webkit-transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
5989
5677
|
transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
5990
5678
|
}
|
|
5991
|
-
|
|
5992
5679
|
.collapsible.popout > li.active {
|
|
5993
5680
|
-webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
|
|
5994
5681
|
box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
|
|
@@ -6008,13 +5695,11 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
6008
5695
|
margin-bottom: 5px;
|
|
6009
5696
|
margin-right: 5px;
|
|
6010
5697
|
}
|
|
6011
|
-
|
|
6012
5698
|
.chip:focus {
|
|
6013
5699
|
outline: none;
|
|
6014
5700
|
background-color: #26a69a;
|
|
6015
5701
|
color: #fff;
|
|
6016
5702
|
}
|
|
6017
|
-
|
|
6018
5703
|
.chip > img {
|
|
6019
5704
|
float: left;
|
|
6020
5705
|
margin: 0 8px 0 -12px;
|
|
@@ -6022,7 +5707,6 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
6022
5707
|
width: 32px;
|
|
6023
5708
|
border-radius: 50%;
|
|
6024
5709
|
}
|
|
6025
|
-
|
|
6026
5710
|
.chip .close {
|
|
6027
5711
|
cursor: pointer;
|
|
6028
5712
|
float: right;
|
|
@@ -6039,20 +5723,17 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
6039
5723
|
margin: 0 0 8px 0;
|
|
6040
5724
|
min-height: 45px;
|
|
6041
5725
|
outline: none;
|
|
6042
|
-
-webkit-transition: all .3s;
|
|
6043
|
-
transition: all .3s;
|
|
5726
|
+
-webkit-transition: all 0.3s;
|
|
5727
|
+
transition: all 0.3s;
|
|
6044
5728
|
}
|
|
6045
|
-
|
|
6046
5729
|
.chips.focus {
|
|
6047
5730
|
border-bottom: 1px solid #26a69a;
|
|
6048
5731
|
-webkit-box-shadow: 0 1px 0 0 #26a69a;
|
|
6049
5732
|
box-shadow: 0 1px 0 0 #26a69a;
|
|
6050
5733
|
}
|
|
6051
|
-
|
|
6052
5734
|
.chips:hover {
|
|
6053
5735
|
cursor: text;
|
|
6054
5736
|
}
|
|
6055
|
-
|
|
6056
5737
|
.chips input:not([type]):not(.browser-default).input {
|
|
6057
5738
|
background: none;
|
|
6058
5739
|
border: 0;
|
|
@@ -6066,13 +5747,11 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
6066
5747
|
padding: 0;
|
|
6067
5748
|
width: 120px;
|
|
6068
5749
|
}
|
|
6069
|
-
|
|
6070
5750
|
.chips input:not([type]):not(.browser-default).input:focus {
|
|
6071
5751
|
border: 0;
|
|
6072
5752
|
-webkit-box-shadow: none;
|
|
6073
5753
|
box-shadow: none;
|
|
6074
5754
|
}
|
|
6075
|
-
|
|
6076
5755
|
.chips .autocomplete-content {
|
|
6077
5756
|
margin-top: 0;
|
|
6078
5757
|
margin-bottom: 0;
|
|
@@ -6101,15 +5780,13 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
6101
5780
|
cursor: -webkit-zoom-in;
|
|
6102
5781
|
cursor: zoom-in;
|
|
6103
5782
|
position: relative;
|
|
6104
|
-
-webkit-transition: opacity .4s;
|
|
6105
|
-
transition: opacity .4s;
|
|
5783
|
+
-webkit-transition: opacity 0.4s;
|
|
5784
|
+
transition: opacity 0.4s;
|
|
6106
5785
|
-webkit-backface-visibility: hidden;
|
|
6107
5786
|
}
|
|
6108
|
-
|
|
6109
5787
|
.materialboxed:hover:not(.active) {
|
|
6110
|
-
opacity: .8;
|
|
5788
|
+
opacity: 0.8;
|
|
6111
5789
|
}
|
|
6112
|
-
|
|
6113
5790
|
.materialboxed.active {
|
|
6114
5791
|
cursor: -webkit-zoom-out;
|
|
6115
5792
|
cursor: zoom-out;
|
|
@@ -6155,7 +5832,7 @@ label {
|
|
|
6155
5832
|
color: #9e9e9e;
|
|
6156
5833
|
}
|
|
6157
5834
|
|
|
6158
|
-
/* Text Inputs + Textarea
|
|
5835
|
+
/* Text Inputs + Textarea
|
|
6159
5836
|
========================================================================== */
|
|
6160
5837
|
/* Style Placeholders */
|
|
6161
5838
|
::-webkit-input-placeholder {
|
|
@@ -6181,6 +5858,7 @@ input[type=time]:not(.browser-default),
|
|
|
6181
5858
|
input[type=date]:not(.browser-default),
|
|
6182
5859
|
input[type=datetime]:not(.browser-default),
|
|
6183
5860
|
input[type=datetime-local]:not(.browser-default),
|
|
5861
|
+
input[type=month]:not(.browser-default),
|
|
6184
5862
|
input[type=tel]:not(.browser-default),
|
|
6185
5863
|
input[type=number]:not(.browser-default),
|
|
6186
5864
|
input[type=search]:not(.browser-default),
|
|
@@ -6199,70 +5877,70 @@ textarea.materialize-textarea {
|
|
|
6199
5877
|
box-shadow: none;
|
|
6200
5878
|
-webkit-box-sizing: content-box;
|
|
6201
5879
|
box-sizing: content-box;
|
|
6202
|
-
-webkit-transition: border .3s, -webkit-box-shadow .3s;
|
|
6203
|
-
transition: border .3s, -webkit-box-shadow .3s;
|
|
6204
|
-
transition: box-shadow .3s, border .3s;
|
|
6205
|
-
transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;
|
|
5880
|
+
-webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
|
|
5881
|
+
transition: border 0.3s, -webkit-box-shadow 0.3s;
|
|
5882
|
+
transition: box-shadow 0.3s, border 0.3s;
|
|
5883
|
+
transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
|
|
6206
5884
|
}
|
|
6207
|
-
|
|
6208
|
-
input:not([type]):not(.browser-default):disabled, input:not([type]):not(.browser-default)[readonly="readonly"],
|
|
5885
|
+
input:not([type]):not(.browser-default):disabled, input:not([type]):not(.browser-default)[readonly=readonly],
|
|
6209
5886
|
input[type=text]:not(.browser-default):disabled,
|
|
6210
|
-
input[type=text]:not(.browser-default)[readonly=
|
|
5887
|
+
input[type=text]:not(.browser-default)[readonly=readonly],
|
|
6211
5888
|
input[type=password]:not(.browser-default):disabled,
|
|
6212
|
-
input[type=password]:not(.browser-default)[readonly=
|
|
5889
|
+
input[type=password]:not(.browser-default)[readonly=readonly],
|
|
6213
5890
|
input[type=email]:not(.browser-default):disabled,
|
|
6214
|
-
input[type=email]:not(.browser-default)[readonly=
|
|
5891
|
+
input[type=email]:not(.browser-default)[readonly=readonly],
|
|
6215
5892
|
input[type=url]:not(.browser-default):disabled,
|
|
6216
|
-
input[type=url]:not(.browser-default)[readonly=
|
|
5893
|
+
input[type=url]:not(.browser-default)[readonly=readonly],
|
|
6217
5894
|
input[type=time]:not(.browser-default):disabled,
|
|
6218
|
-
input[type=time]:not(.browser-default)[readonly=
|
|
5895
|
+
input[type=time]:not(.browser-default)[readonly=readonly],
|
|
6219
5896
|
input[type=date]:not(.browser-default):disabled,
|
|
6220
|
-
input[type=date]:not(.browser-default)[readonly=
|
|
5897
|
+
input[type=date]:not(.browser-default)[readonly=readonly],
|
|
6221
5898
|
input[type=datetime]:not(.browser-default):disabled,
|
|
6222
|
-
input[type=datetime]:not(.browser-default)[readonly=
|
|
5899
|
+
input[type=datetime]:not(.browser-default)[readonly=readonly],
|
|
6223
5900
|
input[type=datetime-local]:not(.browser-default):disabled,
|
|
6224
|
-
input[type=datetime-local]:not(.browser-default)[readonly=
|
|
5901
|
+
input[type=datetime-local]:not(.browser-default)[readonly=readonly],
|
|
5902
|
+
input[type=month]:not(.browser-default):disabled,
|
|
5903
|
+
input[type=month]:not(.browser-default)[readonly=readonly],
|
|
6225
5904
|
input[type=tel]:not(.browser-default):disabled,
|
|
6226
|
-
input[type=tel]:not(.browser-default)[readonly=
|
|
5905
|
+
input[type=tel]:not(.browser-default)[readonly=readonly],
|
|
6227
5906
|
input[type=number]:not(.browser-default):disabled,
|
|
6228
|
-
input[type=number]:not(.browser-default)[readonly=
|
|
5907
|
+
input[type=number]:not(.browser-default)[readonly=readonly],
|
|
6229
5908
|
input[type=search]:not(.browser-default):disabled,
|
|
6230
|
-
input[type=search]:not(.browser-default)[readonly=
|
|
5909
|
+
input[type=search]:not(.browser-default)[readonly=readonly],
|
|
6231
5910
|
textarea.materialize-textarea:disabled,
|
|
6232
|
-
textarea.materialize-textarea[readonly=
|
|
5911
|
+
textarea.materialize-textarea[readonly=readonly] {
|
|
6233
5912
|
color: rgba(0, 0, 0, 0.42);
|
|
6234
5913
|
border-bottom: 1px dotted rgba(0, 0, 0, 0.42);
|
|
6235
5914
|
}
|
|
6236
|
-
|
|
6237
|
-
input:not([type]):not(.browser-default):disabled + label,
|
|
6238
|
-
input:not([type]):not(.browser-default)[readonly="readonly"] + label,
|
|
5915
|
+
input:not([type]):not(.browser-default):disabled + label, input:not([type]):not(.browser-default)[readonly=readonly] + label,
|
|
6239
5916
|
input[type=text]:not(.browser-default):disabled + label,
|
|
6240
|
-
input[type=text]:not(.browser-default)[readonly=
|
|
5917
|
+
input[type=text]:not(.browser-default)[readonly=readonly] + label,
|
|
6241
5918
|
input[type=password]:not(.browser-default):disabled + label,
|
|
6242
|
-
input[type=password]:not(.browser-default)[readonly=
|
|
5919
|
+
input[type=password]:not(.browser-default)[readonly=readonly] + label,
|
|
6243
5920
|
input[type=email]:not(.browser-default):disabled + label,
|
|
6244
|
-
input[type=email]:not(.browser-default)[readonly=
|
|
5921
|
+
input[type=email]:not(.browser-default)[readonly=readonly] + label,
|
|
6245
5922
|
input[type=url]:not(.browser-default):disabled + label,
|
|
6246
|
-
input[type=url]:not(.browser-default)[readonly=
|
|
5923
|
+
input[type=url]:not(.browser-default)[readonly=readonly] + label,
|
|
6247
5924
|
input[type=time]:not(.browser-default):disabled + label,
|
|
6248
|
-
input[type=time]:not(.browser-default)[readonly=
|
|
5925
|
+
input[type=time]:not(.browser-default)[readonly=readonly] + label,
|
|
6249
5926
|
input[type=date]:not(.browser-default):disabled + label,
|
|
6250
|
-
input[type=date]:not(.browser-default)[readonly=
|
|
5927
|
+
input[type=date]:not(.browser-default)[readonly=readonly] + label,
|
|
6251
5928
|
input[type=datetime]:not(.browser-default):disabled + label,
|
|
6252
|
-
input[type=datetime]:not(.browser-default)[readonly=
|
|
5929
|
+
input[type=datetime]:not(.browser-default)[readonly=readonly] + label,
|
|
6253
5930
|
input[type=datetime-local]:not(.browser-default):disabled + label,
|
|
6254
|
-
input[type=datetime-local]:not(.browser-default)[readonly=
|
|
5931
|
+
input[type=datetime-local]:not(.browser-default)[readonly=readonly] + label,
|
|
5932
|
+
input[type=month]:not(.browser-default):disabled + label,
|
|
5933
|
+
input[type=month]:not(.browser-default)[readonly=readonly] + label,
|
|
6255
5934
|
input[type=tel]:not(.browser-default):disabled + label,
|
|
6256
|
-
input[type=tel]:not(.browser-default)[readonly=
|
|
5935
|
+
input[type=tel]:not(.browser-default)[readonly=readonly] + label,
|
|
6257
5936
|
input[type=number]:not(.browser-default):disabled + label,
|
|
6258
|
-
input[type=number]:not(.browser-default)[readonly=
|
|
5937
|
+
input[type=number]:not(.browser-default)[readonly=readonly] + label,
|
|
6259
5938
|
input[type=search]:not(.browser-default):disabled + label,
|
|
6260
|
-
input[type=search]:not(.browser-default)[readonly=
|
|
5939
|
+
input[type=search]:not(.browser-default)[readonly=readonly] + label,
|
|
6261
5940
|
textarea.materialize-textarea:disabled + label,
|
|
6262
|
-
textarea.materialize-textarea[readonly=
|
|
5941
|
+
textarea.materialize-textarea[readonly=readonly] + label {
|
|
6263
5942
|
color: rgba(0, 0, 0, 0.42);
|
|
6264
5943
|
}
|
|
6265
|
-
|
|
6266
5944
|
input:not([type]):not(.browser-default):focus:not([readonly]),
|
|
6267
5945
|
input[type=text]:not(.browser-default):focus:not([readonly]),
|
|
6268
5946
|
input[type=password]:not(.browser-default):focus:not([readonly]),
|
|
@@ -6272,6 +5950,7 @@ input[type=time]:not(.browser-default):focus:not([readonly]),
|
|
|
6272
5950
|
input[type=date]:not(.browser-default):focus:not([readonly]),
|
|
6273
5951
|
input[type=datetime]:not(.browser-default):focus:not([readonly]),
|
|
6274
5952
|
input[type=datetime-local]:not(.browser-default):focus:not([readonly]),
|
|
5953
|
+
input[type=month]:not(.browser-default):focus:not([readonly]),
|
|
6275
5954
|
input[type=tel]:not(.browser-default):focus:not([readonly]),
|
|
6276
5955
|
input[type=number]:not(.browser-default):focus:not([readonly]),
|
|
6277
5956
|
input[type=search]:not(.browser-default):focus:not([readonly]),
|
|
@@ -6280,7 +5959,6 @@ textarea.materialize-textarea:focus:not([readonly]) {
|
|
|
6280
5959
|
-webkit-box-shadow: 0 1px 0 0 #26a69a;
|
|
6281
5960
|
box-shadow: 0 1px 0 0 #26a69a;
|
|
6282
5961
|
}
|
|
6283
|
-
|
|
6284
5962
|
input:not([type]):not(.browser-default):focus:not([readonly]) + label,
|
|
6285
5963
|
input[type=text]:not(.browser-default):focus:not([readonly]) + label,
|
|
6286
5964
|
input[type=password]:not(.browser-default):focus:not([readonly]) + label,
|
|
@@ -6290,13 +5968,13 @@ input[type=time]:not(.browser-default):focus:not([readonly]) + label,
|
|
|
6290
5968
|
input[type=date]:not(.browser-default):focus:not([readonly]) + label,
|
|
6291
5969
|
input[type=datetime]:not(.browser-default):focus:not([readonly]) + label,
|
|
6292
5970
|
input[type=datetime-local]:not(.browser-default):focus:not([readonly]) + label,
|
|
5971
|
+
input[type=month]:not(.browser-default):focus:not([readonly]) + label,
|
|
6293
5972
|
input[type=tel]:not(.browser-default):focus:not([readonly]) + label,
|
|
6294
5973
|
input[type=number]:not(.browser-default):focus:not([readonly]) + label,
|
|
6295
5974
|
input[type=search]:not(.browser-default):focus:not([readonly]) + label,
|
|
6296
5975
|
textarea.materialize-textarea:focus:not([readonly]) + label {
|
|
6297
5976
|
color: #26a69a;
|
|
6298
5977
|
}
|
|
6299
|
-
|
|
6300
5978
|
input:not([type]):not(.browser-default):focus.valid ~ label,
|
|
6301
5979
|
input[type=text]:not(.browser-default):focus.valid ~ label,
|
|
6302
5980
|
input[type=password]:not(.browser-default):focus.valid ~ label,
|
|
@@ -6306,13 +5984,13 @@ input[type=time]:not(.browser-default):focus.valid ~ label,
|
|
|
6306
5984
|
input[type=date]:not(.browser-default):focus.valid ~ label,
|
|
6307
5985
|
input[type=datetime]:not(.browser-default):focus.valid ~ label,
|
|
6308
5986
|
input[type=datetime-local]:not(.browser-default):focus.valid ~ label,
|
|
5987
|
+
input[type=month]:not(.browser-default):focus.valid ~ label,
|
|
6309
5988
|
input[type=tel]:not(.browser-default):focus.valid ~ label,
|
|
6310
5989
|
input[type=number]:not(.browser-default):focus.valid ~ label,
|
|
6311
5990
|
input[type=search]:not(.browser-default):focus.valid ~ label,
|
|
6312
5991
|
textarea.materialize-textarea:focus.valid ~ label {
|
|
6313
5992
|
color: #4CAF50;
|
|
6314
5993
|
}
|
|
6315
|
-
|
|
6316
5994
|
input:not([type]):not(.browser-default):focus.invalid ~ label,
|
|
6317
5995
|
input[type=text]:not(.browser-default):focus.invalid ~ label,
|
|
6318
5996
|
input[type=password]:not(.browser-default):focus.invalid ~ label,
|
|
@@ -6322,13 +6000,13 @@ input[type=time]:not(.browser-default):focus.invalid ~ label,
|
|
|
6322
6000
|
input[type=date]:not(.browser-default):focus.invalid ~ label,
|
|
6323
6001
|
input[type=datetime]:not(.browser-default):focus.invalid ~ label,
|
|
6324
6002
|
input[type=datetime-local]:not(.browser-default):focus.invalid ~ label,
|
|
6003
|
+
input[type=month]:not(.browser-default):focus.invalid ~ label,
|
|
6325
6004
|
input[type=tel]:not(.browser-default):focus.invalid ~ label,
|
|
6326
6005
|
input[type=number]:not(.browser-default):focus.invalid ~ label,
|
|
6327
6006
|
input[type=search]:not(.browser-default):focus.invalid ~ label,
|
|
6328
6007
|
textarea.materialize-textarea:focus.invalid ~ label {
|
|
6329
6008
|
color: #F44336;
|
|
6330
6009
|
}
|
|
6331
|
-
|
|
6332
6010
|
input:not([type]):not(.browser-default).validate + label,
|
|
6333
6011
|
input[type=text]:not(.browser-default).validate + label,
|
|
6334
6012
|
input[type=password]:not(.browser-default).validate + label,
|
|
@@ -6338,79 +6016,79 @@ input[type=time]:not(.browser-default).validate + label,
|
|
|
6338
6016
|
input[type=date]:not(.browser-default).validate + label,
|
|
6339
6017
|
input[type=datetime]:not(.browser-default).validate + label,
|
|
6340
6018
|
input[type=datetime-local]:not(.browser-default).validate + label,
|
|
6019
|
+
input[type=month]:not(.browser-default).validate + label,
|
|
6341
6020
|
input[type=tel]:not(.browser-default).validate + label,
|
|
6342
6021
|
input[type=number]:not(.browser-default).validate + label,
|
|
6343
6022
|
input[type=search]:not(.browser-default).validate + label,
|
|
6344
6023
|
textarea.materialize-textarea.validate + label {
|
|
6345
6024
|
width: 100%;
|
|
6346
6025
|
}
|
|
6347
|
-
|
|
6348
6026
|
/* Validation Sass Placeholders */
|
|
6349
|
-
input.
|
|
6350
|
-
input
|
|
6351
|
-
input
|
|
6352
|
-
input
|
|
6353
|
-
input
|
|
6354
|
-
input
|
|
6355
|
-
input
|
|
6356
|
-
input
|
|
6357
|
-
input
|
|
6358
|
-
input
|
|
6359
|
-
input
|
|
6360
|
-
input
|
|
6361
|
-
input
|
|
6362
|
-
input
|
|
6363
|
-
input
|
|
6364
|
-
input
|
|
6365
|
-
input
|
|
6366
|
-
input
|
|
6367
|
-
input
|
|
6368
|
-
input
|
|
6369
|
-
input
|
|
6370
|
-
input
|
|
6371
|
-
input
|
|
6027
|
+
.select-wrapper.valid > input.select-dropdown, input:not([type]):not(.browser-default).valid, input:not([type]):not(.browser-default):focus.valid,
|
|
6028
|
+
input[type=text]:not(.browser-default).valid,
|
|
6029
|
+
input[type=text]:not(.browser-default):focus.valid,
|
|
6030
|
+
input[type=password]:not(.browser-default).valid,
|
|
6031
|
+
input[type=password]:not(.browser-default):focus.valid,
|
|
6032
|
+
input[type=email]:not(.browser-default).valid,
|
|
6033
|
+
input[type=email]:not(.browser-default):focus.valid,
|
|
6034
|
+
input[type=url]:not(.browser-default).valid,
|
|
6035
|
+
input[type=url]:not(.browser-default):focus.valid,
|
|
6036
|
+
input[type=time]:not(.browser-default).valid,
|
|
6037
|
+
input[type=time]:not(.browser-default):focus.valid,
|
|
6038
|
+
input[type=date]:not(.browser-default).valid,
|
|
6039
|
+
input[type=date]:not(.browser-default):focus.valid,
|
|
6040
|
+
input[type=datetime]:not(.browser-default).valid,
|
|
6041
|
+
input[type=datetime]:not(.browser-default):focus.valid,
|
|
6042
|
+
input[type=datetime-local]:not(.browser-default).valid,
|
|
6043
|
+
input[type=datetime-local]:not(.browser-default):focus.valid,
|
|
6044
|
+
input[type=month]:not(.browser-default).valid,
|
|
6045
|
+
input[type=month]:not(.browser-default):focus.valid,
|
|
6046
|
+
input[type=tel]:not(.browser-default).valid,
|
|
6047
|
+
input[type=tel]:not(.browser-default):focus.valid,
|
|
6048
|
+
input[type=number]:not(.browser-default).valid,
|
|
6049
|
+
input[type=number]:not(.browser-default):focus.valid,
|
|
6050
|
+
input[type=search]:not(.browser-default).valid,
|
|
6051
|
+
input[type=search]:not(.browser-default):focus.valid,
|
|
6372
6052
|
textarea.materialize-textarea.valid,
|
|
6373
|
-
textarea.materialize-textarea
|
|
6053
|
+
textarea.materialize-textarea:focus.valid {
|
|
6374
6054
|
border-bottom: 1px solid #4CAF50;
|
|
6375
6055
|
-webkit-box-shadow: 0 1px 0 0 #4CAF50;
|
|
6376
6056
|
box-shadow: 0 1px 0 0 #4CAF50;
|
|
6377
6057
|
}
|
|
6378
6058
|
|
|
6379
|
-
input.invalid:not([type]):not(.browser-default), input
|
|
6380
|
-
input
|
|
6381
|
-
input
|
|
6382
|
-
input
|
|
6383
|
-
input
|
|
6384
|
-
input
|
|
6385
|
-
input
|
|
6386
|
-
input
|
|
6387
|
-
input
|
|
6388
|
-
input
|
|
6389
|
-
input
|
|
6390
|
-
input
|
|
6391
|
-
input
|
|
6392
|
-
input
|
|
6393
|
-
input
|
|
6394
|
-
input
|
|
6395
|
-
input
|
|
6396
|
-
input
|
|
6397
|
-
input
|
|
6398
|
-
input
|
|
6399
|
-
input
|
|
6400
|
-
input
|
|
6401
|
-
input
|
|
6059
|
+
.select-wrapper.invalid > input.select-dropdown, .select-wrapper.invalid > input.select-dropdown:focus, input:not([type]):not(.browser-default).invalid, input:not([type]):not(.browser-default):focus.invalid,
|
|
6060
|
+
input[type=text]:not(.browser-default).invalid,
|
|
6061
|
+
input[type=text]:not(.browser-default):focus.invalid,
|
|
6062
|
+
input[type=password]:not(.browser-default).invalid,
|
|
6063
|
+
input[type=password]:not(.browser-default):focus.invalid,
|
|
6064
|
+
input[type=email]:not(.browser-default).invalid,
|
|
6065
|
+
input[type=email]:not(.browser-default):focus.invalid,
|
|
6066
|
+
input[type=url]:not(.browser-default).invalid,
|
|
6067
|
+
input[type=url]:not(.browser-default):focus.invalid,
|
|
6068
|
+
input[type=time]:not(.browser-default).invalid,
|
|
6069
|
+
input[type=time]:not(.browser-default):focus.invalid,
|
|
6070
|
+
input[type=date]:not(.browser-default).invalid,
|
|
6071
|
+
input[type=date]:not(.browser-default):focus.invalid,
|
|
6072
|
+
input[type=datetime]:not(.browser-default).invalid,
|
|
6073
|
+
input[type=datetime]:not(.browser-default):focus.invalid,
|
|
6074
|
+
input[type=datetime-local]:not(.browser-default).invalid,
|
|
6075
|
+
input[type=datetime-local]:not(.browser-default):focus.invalid,
|
|
6076
|
+
input[type=month]:not(.browser-default).invalid,
|
|
6077
|
+
input[type=month]:not(.browser-default):focus.invalid,
|
|
6078
|
+
input[type=tel]:not(.browser-default).invalid,
|
|
6079
|
+
input[type=tel]:not(.browser-default):focus.invalid,
|
|
6080
|
+
input[type=number]:not(.browser-default).invalid,
|
|
6081
|
+
input[type=number]:not(.browser-default):focus.invalid,
|
|
6082
|
+
input[type=search]:not(.browser-default).invalid,
|
|
6083
|
+
input[type=search]:not(.browser-default):focus.invalid,
|
|
6402
6084
|
textarea.materialize-textarea.invalid,
|
|
6403
|
-
textarea.materialize-textarea
|
|
6404
|
-
.select-wrapper.invalid > input.select-dropdown:focus {
|
|
6085
|
+
textarea.materialize-textarea:focus.invalid {
|
|
6405
6086
|
border-bottom: 1px solid #F44336;
|
|
6406
6087
|
-webkit-box-shadow: 0 1px 0 0 #F44336;
|
|
6407
6088
|
box-shadow: 0 1px 0 0 #F44336;
|
|
6408
6089
|
}
|
|
6409
6090
|
|
|
6410
|
-
input:not([type]):not(.browser-default).valid ~ .helper-text[data-success],
|
|
6411
|
-
input:not([type]):not(.browser-default):focus.valid ~ .helper-text[data-success],
|
|
6412
|
-
input:not([type]):not(.browser-default).invalid ~ .helper-text[data-error],
|
|
6413
|
-
input:not([type]):not(.browser-default):focus.invalid ~ .helper-text[data-error],
|
|
6091
|
+
.select-wrapper.valid .helper-text[data-success], .select-wrapper.invalid ~ .helper-text[data-error], input:not([type]):not(.browser-default).valid ~ .helper-text[data-success], input:not([type]):not(.browser-default):focus.valid ~ .helper-text[data-success], input:not([type]):not(.browser-default).invalid ~ .helper-text[data-error], input:not([type]):not(.browser-default):focus.invalid ~ .helper-text[data-error],
|
|
6414
6092
|
input[type=text]:not(.browser-default).valid ~ .helper-text[data-success],
|
|
6415
6093
|
input[type=text]:not(.browser-default):focus.valid ~ .helper-text[data-success],
|
|
6416
6094
|
input[type=text]:not(.browser-default).invalid ~ .helper-text[data-error],
|
|
@@ -6443,6 +6121,10 @@ input[type=datetime-local]:not(.browser-default).valid ~ .helper-text[data-succe
|
|
|
6443
6121
|
input[type=datetime-local]:not(.browser-default):focus.valid ~ .helper-text[data-success],
|
|
6444
6122
|
input[type=datetime-local]:not(.browser-default).invalid ~ .helper-text[data-error],
|
|
6445
6123
|
input[type=datetime-local]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
|
|
6124
|
+
input[type=month]:not(.browser-default).valid ~ .helper-text[data-success],
|
|
6125
|
+
input[type=month]:not(.browser-default):focus.valid ~ .helper-text[data-success],
|
|
6126
|
+
input[type=month]:not(.browser-default).invalid ~ .helper-text[data-error],
|
|
6127
|
+
input[type=month]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
|
|
6446
6128
|
input[type=tel]:not(.browser-default).valid ~ .helper-text[data-success],
|
|
6447
6129
|
input[type=tel]:not(.browser-default):focus.valid ~ .helper-text[data-success],
|
|
6448
6130
|
input[type=tel]:not(.browser-default).invalid ~ .helper-text[data-error],
|
|
@@ -6458,8 +6140,7 @@ input[type=search]:not(.browser-default):focus.invalid ~ .helper-text[data-error
|
|
|
6458
6140
|
textarea.materialize-textarea.valid ~ .helper-text[data-success],
|
|
6459
6141
|
textarea.materialize-textarea:focus.valid ~ .helper-text[data-success],
|
|
6460
6142
|
textarea.materialize-textarea.invalid ~ .helper-text[data-error],
|
|
6461
|
-
textarea.materialize-textarea:focus.invalid ~ .helper-text[data-error]
|
|
6462
|
-
.select-wrapper.invalid ~ .helper-text[data-error] {
|
|
6143
|
+
textarea.materialize-textarea:focus.invalid ~ .helper-text[data-error] {
|
|
6463
6144
|
color: transparent;
|
|
6464
6145
|
-webkit-user-select: none;
|
|
6465
6146
|
-moz-user-select: none;
|
|
@@ -6468,8 +6149,7 @@ textarea.materialize-textarea:focus.invalid ~ .helper-text[data-error], .select-
|
|
|
6468
6149
|
pointer-events: none;
|
|
6469
6150
|
}
|
|
6470
6151
|
|
|
6471
|
-
input:not([type]):not(.browser-default).valid ~ .helper-text:after,
|
|
6472
|
-
input:not([type]):not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6152
|
+
.select-wrapper.valid ~ .helper-text:after, input:not([type]):not(.browser-default).valid ~ .helper-text:after, input:not([type]):not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6473
6153
|
input[type=text]:not(.browser-default).valid ~ .helper-text:after,
|
|
6474
6154
|
input[type=text]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6475
6155
|
input[type=password]:not(.browser-default).valid ~ .helper-text:after,
|
|
@@ -6486,6 +6166,8 @@ input[type=datetime]:not(.browser-default).valid ~ .helper-text:after,
|
|
|
6486
6166
|
input[type=datetime]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6487
6167
|
input[type=datetime-local]:not(.browser-default).valid ~ .helper-text:after,
|
|
6488
6168
|
input[type=datetime-local]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6169
|
+
input[type=month]:not(.browser-default).valid ~ .helper-text:after,
|
|
6170
|
+
input[type=month]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6489
6171
|
input[type=tel]:not(.browser-default).valid ~ .helper-text:after,
|
|
6490
6172
|
input[type=tel]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6491
6173
|
input[type=number]:not(.browser-default).valid ~ .helper-text:after,
|
|
@@ -6493,13 +6175,12 @@ input[type=number]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
|
6493
6175
|
input[type=search]:not(.browser-default).valid ~ .helper-text:after,
|
|
6494
6176
|
input[type=search]:not(.browser-default):focus.valid ~ .helper-text:after,
|
|
6495
6177
|
textarea.materialize-textarea.valid ~ .helper-text:after,
|
|
6496
|
-
textarea.materialize-textarea:focus.valid ~ .helper-text:after
|
|
6178
|
+
textarea.materialize-textarea:focus.valid ~ .helper-text:after {
|
|
6497
6179
|
content: attr(data-success);
|
|
6498
6180
|
color: #4CAF50;
|
|
6499
6181
|
}
|
|
6500
6182
|
|
|
6501
|
-
input:not([type]):not(.browser-default).invalid ~ .helper-text:after,
|
|
6502
|
-
input:not([type]):not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6183
|
+
.select-wrapper.invalid ~ .helper-text:after, input:not([type]):not(.browser-default).invalid ~ .helper-text:after, input:not([type]):not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6503
6184
|
input[type=text]:not(.browser-default).invalid ~ .helper-text:after,
|
|
6504
6185
|
input[type=text]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6505
6186
|
input[type=password]:not(.browser-default).invalid ~ .helper-text:after,
|
|
@@ -6516,6 +6197,8 @@ input[type=datetime]:not(.browser-default).invalid ~ .helper-text:after,
|
|
|
6516
6197
|
input[type=datetime]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6517
6198
|
input[type=datetime-local]:not(.browser-default).invalid ~ .helper-text:after,
|
|
6518
6199
|
input[type=datetime-local]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6200
|
+
input[type=month]:not(.browser-default).invalid ~ .helper-text:after,
|
|
6201
|
+
input[type=month]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6519
6202
|
input[type=tel]:not(.browser-default).invalid ~ .helper-text:after,
|
|
6520
6203
|
input[type=tel]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6521
6204
|
input[type=number]:not(.browser-default).invalid ~ .helper-text:after,
|
|
@@ -6523,12 +6206,12 @@ input[type=number]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
|
6523
6206
|
input[type=search]:not(.browser-default).invalid ~ .helper-text:after,
|
|
6524
6207
|
input[type=search]:not(.browser-default):focus.invalid ~ .helper-text:after,
|
|
6525
6208
|
textarea.materialize-textarea.invalid ~ .helper-text:after,
|
|
6526
|
-
textarea.materialize-textarea:focus.invalid ~ .helper-text:after
|
|
6209
|
+
textarea.materialize-textarea:focus.invalid ~ .helper-text:after {
|
|
6527
6210
|
content: attr(data-error);
|
|
6528
6211
|
color: #F44336;
|
|
6529
6212
|
}
|
|
6530
6213
|
|
|
6531
|
-
input:not([type]):not(.browser-default) + label:after,
|
|
6214
|
+
.select-wrapper + label:after, input:not([type]):not(.browser-default) + label:after,
|
|
6532
6215
|
input[type=text]:not(.browser-default) + label:after,
|
|
6533
6216
|
input[type=password]:not(.browser-default) + label:after,
|
|
6534
6217
|
input[type=email]:not(.browser-default) + label:after,
|
|
@@ -6537,18 +6220,19 @@ input[type=time]:not(.browser-default) + label:after,
|
|
|
6537
6220
|
input[type=date]:not(.browser-default) + label:after,
|
|
6538
6221
|
input[type=datetime]:not(.browser-default) + label:after,
|
|
6539
6222
|
input[type=datetime-local]:not(.browser-default) + label:after,
|
|
6223
|
+
input[type=month]:not(.browser-default) + label:after,
|
|
6540
6224
|
input[type=tel]:not(.browser-default) + label:after,
|
|
6541
6225
|
input[type=number]:not(.browser-default) + label:after,
|
|
6542
6226
|
input[type=search]:not(.browser-default) + label:after,
|
|
6543
|
-
textarea.materialize-textarea + label:after
|
|
6227
|
+
textarea.materialize-textarea + label:after {
|
|
6544
6228
|
display: block;
|
|
6545
6229
|
content: "";
|
|
6546
6230
|
position: absolute;
|
|
6547
6231
|
top: 100%;
|
|
6548
6232
|
left: 0;
|
|
6549
6233
|
opacity: 0;
|
|
6550
|
-
-webkit-transition: .2s opacity ease-out, .2s color ease-out;
|
|
6551
|
-
transition: .2s opacity ease-out, .2s color ease-out;
|
|
6234
|
+
-webkit-transition: 0.2s opacity ease-out, 0.2s color ease-out;
|
|
6235
|
+
transition: 0.2s opacity ease-out, 0.2s color ease-out;
|
|
6552
6236
|
}
|
|
6553
6237
|
|
|
6554
6238
|
.input-field {
|
|
@@ -6556,29 +6240,24 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6556
6240
|
margin-top: 1rem;
|
|
6557
6241
|
margin-bottom: 1rem;
|
|
6558
6242
|
}
|
|
6559
|
-
|
|
6560
6243
|
.input-field.inline {
|
|
6561
6244
|
display: inline-block;
|
|
6562
6245
|
vertical-align: middle;
|
|
6563
6246
|
margin-left: 5px;
|
|
6564
6247
|
}
|
|
6565
|
-
|
|
6566
6248
|
.input-field.inline input,
|
|
6567
6249
|
.input-field.inline .select-dropdown {
|
|
6568
6250
|
margin-bottom: 1rem;
|
|
6569
6251
|
}
|
|
6570
|
-
|
|
6571
6252
|
.input-field.col label {
|
|
6572
6253
|
left: 0.75rem;
|
|
6573
6254
|
}
|
|
6574
|
-
|
|
6575
6255
|
.input-field.col .prefix ~ label,
|
|
6576
6256
|
.input-field.col .prefix ~ .validate ~ label,
|
|
6577
6257
|
.input-field.col .suffix ~ label,
|
|
6578
6258
|
.input-field.col .suffix ~ .validate ~ label {
|
|
6579
6259
|
width: calc(100% - 3rem - 1.5rem);
|
|
6580
6260
|
}
|
|
6581
|
-
|
|
6582
6261
|
.input-field > label {
|
|
6583
6262
|
color: #9e9e9e;
|
|
6584
6263
|
position: absolute;
|
|
@@ -6586,33 +6265,31 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6586
6265
|
left: 0;
|
|
6587
6266
|
font-size: 1rem;
|
|
6588
6267
|
cursor: text;
|
|
6589
|
-
-webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
|
|
6590
|
-
transition: color .2s ease-out, -webkit-transform .2s ease-out;
|
|
6591
|
-
transition: transform .2s ease-out, color .2s ease-out;
|
|
6592
|
-
transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
|
|
6268
|
+
-webkit-transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
|
|
6269
|
+
transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
|
|
6270
|
+
transition: transform 0.2s ease-out, color 0.2s ease-out;
|
|
6271
|
+
transition: transform 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
|
|
6593
6272
|
-webkit-transform-origin: 0% 100%;
|
|
6594
6273
|
transform-origin: 0% 100%;
|
|
6595
6274
|
text-align: initial;
|
|
6596
6275
|
-webkit-transform: translateY(12px);
|
|
6597
6276
|
transform: translateY(12px);
|
|
6598
6277
|
}
|
|
6599
|
-
|
|
6600
6278
|
.input-field > label:not(.label-icon).active {
|
|
6601
6279
|
-webkit-transform: translateY(-14px) scale(0.8);
|
|
6602
6280
|
transform: translateY(-14px) scale(0.8);
|
|
6603
6281
|
-webkit-transform-origin: 0 0;
|
|
6604
6282
|
transform-origin: 0 0;
|
|
6605
6283
|
}
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
.input-field > input[type=time]:not(.browser-default) + label {
|
|
6284
|
+
.input-field > label:not(.active) + input[type=date], .input-field > label:not(.active) + input[type=datetime-local], .input-field > label:not(.active) + input[type=month], .input-field > label:not(.active) + input[type=time] {
|
|
6285
|
+
color: transparent;
|
|
6286
|
+
}
|
|
6287
|
+
.input-field > input[type]:-webkit-autofill:not(.browser-default):not([type=search]) + label, .input-field > input[type=date]:not(.browser-default) + label, .input-field > input[type=time]:not(.browser-default) + label {
|
|
6610
6288
|
-webkit-transform: translateY(-14px) scale(0.8);
|
|
6611
6289
|
transform: translateY(-14px) scale(0.8);
|
|
6612
6290
|
-webkit-transform-origin: 0 0;
|
|
6613
6291
|
transform-origin: 0 0;
|
|
6614
6292
|
}
|
|
6615
|
-
|
|
6616
6293
|
.input-field .helper-text {
|
|
6617
6294
|
position: relative;
|
|
6618
6295
|
min-height: 18px;
|
|
@@ -6620,27 +6297,23 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6620
6297
|
font-size: 12px;
|
|
6621
6298
|
color: rgba(0, 0, 0, 0.54);
|
|
6622
6299
|
}
|
|
6623
|
-
|
|
6624
6300
|
.input-field .helper-text::after {
|
|
6625
6301
|
opacity: 1;
|
|
6626
6302
|
position: absolute;
|
|
6627
6303
|
top: 0;
|
|
6628
6304
|
left: 0;
|
|
6629
6305
|
}
|
|
6630
|
-
|
|
6631
6306
|
.input-field .prefix, .input-field .suffix {
|
|
6632
6307
|
position: absolute;
|
|
6633
6308
|
width: 3rem;
|
|
6634
6309
|
font-size: 2rem;
|
|
6635
|
-
-webkit-transition: color .2s;
|
|
6636
|
-
transition: color .2s;
|
|
6310
|
+
-webkit-transition: color 0.2s;
|
|
6311
|
+
transition: color 0.2s;
|
|
6637
6312
|
top: 0.5rem;
|
|
6638
6313
|
}
|
|
6639
|
-
|
|
6640
6314
|
.input-field .prefix.active, .input-field .suffix.active {
|
|
6641
6315
|
color: #26a69a;
|
|
6642
6316
|
}
|
|
6643
|
-
|
|
6644
6317
|
.input-field .prefix ~ input,
|
|
6645
6318
|
.input-field .prefix ~ textarea,
|
|
6646
6319
|
.input-field .prefix ~ .select-wrapper,
|
|
@@ -6652,31 +6325,26 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6652
6325
|
width: 92%;
|
|
6653
6326
|
width: calc(100% - 3rem);
|
|
6654
6327
|
}
|
|
6655
|
-
|
|
6656
6328
|
.input-field .prefix ~ label {
|
|
6657
6329
|
margin-left: 3rem;
|
|
6658
6330
|
}
|
|
6659
|
-
|
|
6660
|
-
@media only screen and (max-width: 992.99px) {
|
|
6331
|
+
@media only screen and (max-width : 992.99px) {
|
|
6661
6332
|
.input-field .prefix ~ input,
|
|
6662
|
-
|
|
6333
|
+
.input-field .suffix ~ input {
|
|
6663
6334
|
width: 86%;
|
|
6664
6335
|
width: calc(100% - 3rem);
|
|
6665
6336
|
}
|
|
6666
6337
|
}
|
|
6667
|
-
|
|
6668
|
-
@media only screen and (max-width: 600.99px) {
|
|
6338
|
+
@media only screen and (max-width : 600.99px) {
|
|
6669
6339
|
.input-field .prefix ~ input,
|
|
6670
|
-
|
|
6340
|
+
.input-field .suffix ~ input {
|
|
6671
6341
|
width: 80%;
|
|
6672
6342
|
width: calc(100% - 3rem);
|
|
6673
6343
|
}
|
|
6674
6344
|
}
|
|
6675
|
-
|
|
6676
6345
|
.input-field .suffix {
|
|
6677
6346
|
right: 0;
|
|
6678
6347
|
}
|
|
6679
|
-
|
|
6680
6348
|
.input-field .suffix ~ input,
|
|
6681
6349
|
.input-field .suffix ~ textarea,
|
|
6682
6350
|
.input-field .suffix ~ .select-wrapper,
|
|
@@ -6688,7 +6356,6 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6688
6356
|
width: 92%;
|
|
6689
6357
|
width: calc(100% - 3rem);
|
|
6690
6358
|
}
|
|
6691
|
-
|
|
6692
6359
|
.input-field .suffix ~ label {
|
|
6693
6360
|
margin-right: 3rem;
|
|
6694
6361
|
}
|
|
@@ -6697,10 +6364,9 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6697
6364
|
.input-field input[type=search] {
|
|
6698
6365
|
display: block;
|
|
6699
6366
|
line-height: inherit;
|
|
6700
|
-
-webkit-transition: .3s background-color;
|
|
6701
|
-
transition: .3s background-color;
|
|
6367
|
+
-webkit-transition: 0.3s background-color;
|
|
6368
|
+
transition: 0.3s background-color;
|
|
6702
6369
|
}
|
|
6703
|
-
|
|
6704
6370
|
.nav-wrapper .input-field input[type=search] {
|
|
6705
6371
|
height: inherit;
|
|
6706
6372
|
padding-left: 4rem;
|
|
@@ -6709,7 +6375,6 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6709
6375
|
-webkit-box-shadow: none;
|
|
6710
6376
|
box-shadow: none;
|
|
6711
6377
|
}
|
|
6712
|
-
|
|
6713
6378
|
.input-field input[type=search]:focus:not(.browser-default) {
|
|
6714
6379
|
background-color: #fff;
|
|
6715
6380
|
border: 0;
|
|
@@ -6717,29 +6382,23 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
|
|
|
6717
6382
|
box-shadow: none;
|
|
6718
6383
|
color: #444;
|
|
6719
6384
|
}
|
|
6720
|
-
|
|
6721
|
-
.input-field input[type=search]:focus:not(.browser-default) + label i,
|
|
6722
|
-
.input-field input[type=search]:focus:not(.browser-default) ~ .mdi-navigation-close,
|
|
6723
|
-
.input-field input[type=search]:focus:not(.browser-default) ~ .material-icons {
|
|
6385
|
+
.input-field input[type=search]:focus:not(.browser-default) + label i, .input-field input[type=search]:focus:not(.browser-default) ~ .mdi-navigation-close, .input-field input[type=search]:focus:not(.browser-default) ~ .material-icons {
|
|
6724
6386
|
color: #444;
|
|
6725
6387
|
}
|
|
6726
|
-
|
|
6727
6388
|
.input-field input[type=search] + .label-icon {
|
|
6728
6389
|
-webkit-transform: none;
|
|
6729
6390
|
transform: none;
|
|
6730
6391
|
left: 1rem;
|
|
6731
6392
|
}
|
|
6732
|
-
|
|
6733
|
-
.input-field input[type=search] ~ .mdi-navigation-close,
|
|
6734
|
-
.input-field input[type=search] ~ .material-icons {
|
|
6393
|
+
.input-field input[type=search] ~ .mdi-navigation-close, .input-field input[type=search] ~ .material-icons {
|
|
6735
6394
|
position: absolute;
|
|
6736
6395
|
top: 0;
|
|
6737
6396
|
right: 1rem;
|
|
6738
6397
|
color: transparent;
|
|
6739
6398
|
cursor: pointer;
|
|
6740
6399
|
font-size: 2rem;
|
|
6741
|
-
-webkit-transition: .3s color;
|
|
6742
|
-
transition: .3s color;
|
|
6400
|
+
-webkit-transition: 0.3s color;
|
|
6401
|
+
transition: 0.3s color;
|
|
6743
6402
|
}
|
|
6744
6403
|
|
|
6745
6404
|
/* Textarea */
|
|
@@ -6748,12 +6407,11 @@ textarea {
|
|
|
6748
6407
|
height: 3rem;
|
|
6749
6408
|
background-color: transparent;
|
|
6750
6409
|
}
|
|
6751
|
-
|
|
6752
6410
|
textarea.materialize-textarea {
|
|
6753
6411
|
line-height: normal;
|
|
6754
6412
|
overflow-y: hidden;
|
|
6755
6413
|
/* prevents scroll bar flash */
|
|
6756
|
-
padding: .8rem 0 .8rem 0;
|
|
6414
|
+
padding: 0.8rem 0 0.8rem 0;
|
|
6757
6415
|
/* prevents text jump on Enter keypress */
|
|
6758
6416
|
resize: none;
|
|
6759
6417
|
min-height: 3rem;
|
|
@@ -6778,7 +6436,6 @@ textarea.materialize-textarea {
|
|
|
6778
6436
|
.autocomplete-content li .highlight {
|
|
6779
6437
|
color: #444;
|
|
6780
6438
|
}
|
|
6781
|
-
|
|
6782
6439
|
.autocomplete-content li img {
|
|
6783
6440
|
height: 40px;
|
|
6784
6441
|
width: 40px;
|
|
@@ -6790,17 +6447,17 @@ textarea.materialize-textarea {
|
|
|
6790
6447
|
min-height: 18px;
|
|
6791
6448
|
}
|
|
6792
6449
|
|
|
6793
|
-
/* Radio Buttons
|
|
6450
|
+
/* Radio Buttons
|
|
6794
6451
|
========================================================================== */
|
|
6795
|
-
[type=
|
|
6796
|
-
[type=
|
|
6452
|
+
[type=radio]:not(:checked),
|
|
6453
|
+
[type=radio]:checked {
|
|
6797
6454
|
position: absolute;
|
|
6798
6455
|
opacity: 0;
|
|
6799
6456
|
pointer-events: none;
|
|
6800
6457
|
}
|
|
6801
6458
|
|
|
6802
|
-
[type=
|
|
6803
|
-
[type=
|
|
6459
|
+
[type=radio]:not(:checked) + span,
|
|
6460
|
+
[type=radio]:checked + span {
|
|
6804
6461
|
position: relative;
|
|
6805
6462
|
padding-left: 35px;
|
|
6806
6463
|
cursor: pointer;
|
|
@@ -6808,17 +6465,17 @@ textarea.materialize-textarea {
|
|
|
6808
6465
|
height: 25px;
|
|
6809
6466
|
line-height: 25px;
|
|
6810
6467
|
font-size: 1rem;
|
|
6811
|
-
-webkit-transition: .28s ease;
|
|
6812
|
-
transition: .28s ease;
|
|
6468
|
+
-webkit-transition: 0.28s ease;
|
|
6469
|
+
transition: 0.28s ease;
|
|
6813
6470
|
-webkit-user-select: none;
|
|
6814
6471
|
-moz-user-select: none;
|
|
6815
6472
|
-ms-user-select: none;
|
|
6816
6473
|
user-select: none;
|
|
6817
6474
|
}
|
|
6818
6475
|
|
|
6819
|
-
[type=
|
|
6820
|
-
[type=
|
|
6821
|
-
content:
|
|
6476
|
+
[type=radio] + span:before,
|
|
6477
|
+
[type=radio] + span:after {
|
|
6478
|
+
content: "";
|
|
6822
6479
|
position: absolute;
|
|
6823
6480
|
left: 0;
|
|
6824
6481
|
top: 0;
|
|
@@ -6826,108 +6483,107 @@ textarea.materialize-textarea {
|
|
|
6826
6483
|
width: 16px;
|
|
6827
6484
|
height: 16px;
|
|
6828
6485
|
z-index: 0;
|
|
6829
|
-
-webkit-transition: .28s ease;
|
|
6830
|
-
transition: .28s ease;
|
|
6486
|
+
-webkit-transition: 0.28s ease;
|
|
6487
|
+
transition: 0.28s ease;
|
|
6831
6488
|
}
|
|
6832
6489
|
|
|
6833
6490
|
/* Unchecked styles */
|
|
6834
|
-
[type=
|
|
6835
|
-
[type=
|
|
6836
|
-
[type=
|
|
6837
|
-
[type=
|
|
6838
|
-
[type=
|
|
6839
|
-
[type=
|
|
6491
|
+
[type=radio]:not(:checked) + span:before,
|
|
6492
|
+
[type=radio]:not(:checked) + span:after,
|
|
6493
|
+
[type=radio]:checked + span:before,
|
|
6494
|
+
[type=radio]:checked + span:after,
|
|
6495
|
+
[type=radio].with-gap:checked + span:before,
|
|
6496
|
+
[type=radio].with-gap:checked + span:after {
|
|
6840
6497
|
border-radius: 50%;
|
|
6841
6498
|
}
|
|
6842
6499
|
|
|
6843
|
-
[type=
|
|
6844
|
-
[type=
|
|
6500
|
+
[type=radio]:not(:checked) + span:before,
|
|
6501
|
+
[type=radio]:not(:checked) + span:after {
|
|
6845
6502
|
border: 2px solid #5a5a5a;
|
|
6846
6503
|
}
|
|
6847
6504
|
|
|
6848
|
-
[type=
|
|
6505
|
+
[type=radio]:not(:checked) + span:after {
|
|
6849
6506
|
-webkit-transform: scale(0);
|
|
6850
6507
|
transform: scale(0);
|
|
6851
6508
|
}
|
|
6852
6509
|
|
|
6853
6510
|
/* Checked styles */
|
|
6854
|
-
[type=
|
|
6511
|
+
[type=radio]:checked + span:before {
|
|
6855
6512
|
border: 2px solid transparent;
|
|
6856
6513
|
}
|
|
6857
6514
|
|
|
6858
|
-
[type=
|
|
6859
|
-
[type=
|
|
6860
|
-
[type=
|
|
6515
|
+
[type=radio]:checked + span:after,
|
|
6516
|
+
[type=radio].with-gap:checked + span:before,
|
|
6517
|
+
[type=radio].with-gap:checked + span:after {
|
|
6861
6518
|
border: 2px solid #26a69a;
|
|
6862
6519
|
}
|
|
6863
6520
|
|
|
6864
|
-
[type=
|
|
6865
|
-
[type=
|
|
6521
|
+
[type=radio]:checked + span:after,
|
|
6522
|
+
[type=radio].with-gap:checked + span:after {
|
|
6866
6523
|
background-color: #26a69a;
|
|
6867
6524
|
}
|
|
6868
6525
|
|
|
6869
|
-
[type=
|
|
6526
|
+
[type=radio]:checked + span:after {
|
|
6870
6527
|
-webkit-transform: scale(1.02);
|
|
6871
6528
|
transform: scale(1.02);
|
|
6872
6529
|
}
|
|
6873
6530
|
|
|
6874
6531
|
/* Radio With gap */
|
|
6875
|
-
[type=
|
|
6532
|
+
[type=radio].with-gap:checked + span:after {
|
|
6876
6533
|
-webkit-transform: scale(0.5);
|
|
6877
6534
|
transform: scale(0.5);
|
|
6878
6535
|
}
|
|
6879
6536
|
|
|
6880
6537
|
/* Focused styles */
|
|
6881
|
-
[type=
|
|
6538
|
+
[type=radio].tabbed:focus + span:before {
|
|
6882
6539
|
-webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
|
|
6883
6540
|
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
|
|
6884
6541
|
}
|
|
6885
6542
|
|
|
6886
6543
|
/* Disabled Radio With gap */
|
|
6887
|
-
[type=
|
|
6544
|
+
[type=radio].with-gap:disabled:checked + span:before {
|
|
6888
6545
|
border: 2px solid rgba(0, 0, 0, 0.42);
|
|
6889
6546
|
}
|
|
6890
6547
|
|
|
6891
|
-
[type=
|
|
6548
|
+
[type=radio].with-gap:disabled:checked + span:after {
|
|
6892
6549
|
border: none;
|
|
6893
6550
|
background-color: rgba(0, 0, 0, 0.42);
|
|
6894
6551
|
}
|
|
6895
6552
|
|
|
6896
6553
|
/* Disabled style */
|
|
6897
|
-
[type=
|
|
6898
|
-
[type=
|
|
6554
|
+
[type=radio]:disabled:not(:checked) + span:before,
|
|
6555
|
+
[type=radio]:disabled:checked + span:before {
|
|
6899
6556
|
background-color: transparent;
|
|
6900
6557
|
border-color: rgba(0, 0, 0, 0.42);
|
|
6901
6558
|
}
|
|
6902
6559
|
|
|
6903
|
-
[type=
|
|
6560
|
+
[type=radio]:disabled + span {
|
|
6904
6561
|
color: rgba(0, 0, 0, 0.42);
|
|
6905
6562
|
}
|
|
6906
6563
|
|
|
6907
|
-
[type=
|
|
6564
|
+
[type=radio]:disabled:not(:checked) + span:before {
|
|
6908
6565
|
border-color: rgba(0, 0, 0, 0.42);
|
|
6909
6566
|
}
|
|
6910
6567
|
|
|
6911
|
-
[type=
|
|
6568
|
+
[type=radio]:disabled:checked + span:after {
|
|
6912
6569
|
background-color: rgba(0, 0, 0, 0.42);
|
|
6913
6570
|
border-color: #949494;
|
|
6914
6571
|
}
|
|
6915
6572
|
|
|
6916
|
-
/* Checkboxes
|
|
6573
|
+
/* Checkboxes
|
|
6917
6574
|
========================================================================== */
|
|
6918
6575
|
/* Remove default checkbox */
|
|
6919
|
-
[type=
|
|
6920
|
-
[type=
|
|
6576
|
+
[type=checkbox]:not(:checked),
|
|
6577
|
+
[type=checkbox]:checked {
|
|
6921
6578
|
position: absolute;
|
|
6922
6579
|
opacity: 0;
|
|
6923
6580
|
pointer-events: none;
|
|
6924
6581
|
}
|
|
6925
6582
|
|
|
6926
|
-
[type=
|
|
6583
|
+
[type=checkbox] {
|
|
6927
6584
|
/* checkbox aspect */
|
|
6928
6585
|
}
|
|
6929
|
-
|
|
6930
|
-
[type="checkbox"] + span:not(.lever) {
|
|
6586
|
+
[type=checkbox] + span:not(.lever) {
|
|
6931
6587
|
position: relative;
|
|
6932
6588
|
padding-left: 35px;
|
|
6933
6589
|
cursor: pointer;
|
|
@@ -6940,10 +6596,8 @@ textarea.materialize-textarea {
|
|
|
6940
6596
|
-ms-user-select: none;
|
|
6941
6597
|
user-select: none;
|
|
6942
6598
|
}
|
|
6943
|
-
|
|
6944
|
-
|
|
6945
|
-
[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
|
|
6946
|
-
content: '';
|
|
6599
|
+
[type=checkbox] + span:not(.lever):before, [type=checkbox]:not(.filled-in) + span:not(.lever):after {
|
|
6600
|
+
content: "";
|
|
6947
6601
|
position: absolute;
|
|
6948
6602
|
top: 0;
|
|
6949
6603
|
left: 0;
|
|
@@ -6953,22 +6607,19 @@ textarea.materialize-textarea {
|
|
|
6953
6607
|
border: 2px solid #5a5a5a;
|
|
6954
6608
|
border-radius: 1px;
|
|
6955
6609
|
margin-top: 3px;
|
|
6956
|
-
-webkit-transition: .2s;
|
|
6957
|
-
transition: .2s;
|
|
6610
|
+
-webkit-transition: 0.2s;
|
|
6611
|
+
transition: 0.2s;
|
|
6958
6612
|
}
|
|
6959
|
-
|
|
6960
|
-
[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
|
|
6613
|
+
[type=checkbox]:not(.filled-in) + span:not(.lever):after {
|
|
6961
6614
|
border: 0;
|
|
6962
6615
|
-webkit-transform: scale(0);
|
|
6963
6616
|
transform: scale(0);
|
|
6964
6617
|
}
|
|
6965
|
-
|
|
6966
|
-
[type="checkbox"]:not(:checked):disabled + span:not(.lever):before {
|
|
6618
|
+
[type=checkbox]:not(:checked):disabled + span:not(.lever):before {
|
|
6967
6619
|
border: none;
|
|
6968
6620
|
background-color: rgba(0, 0, 0, 0.42);
|
|
6969
6621
|
}
|
|
6970
|
-
|
|
6971
|
-
[type="checkbox"].tabbed:focus + span:not(.lever):after {
|
|
6622
|
+
[type=checkbox].tabbed:focus + span:not(.lever):after {
|
|
6972
6623
|
-webkit-transform: scale(1);
|
|
6973
6624
|
transform: scale(1);
|
|
6974
6625
|
border: 0;
|
|
@@ -6978,7 +6629,7 @@ textarea.materialize-textarea {
|
|
|
6978
6629
|
background-color: rgba(0, 0, 0, 0.1);
|
|
6979
6630
|
}
|
|
6980
6631
|
|
|
6981
|
-
[type=
|
|
6632
|
+
[type=checkbox]:checked + span:not(.lever):before {
|
|
6982
6633
|
top: -4px;
|
|
6983
6634
|
left: -5px;
|
|
6984
6635
|
width: 12px;
|
|
@@ -6994,14 +6645,13 @@ textarea.materialize-textarea {
|
|
|
6994
6645
|
-webkit-transform-origin: 100% 100%;
|
|
6995
6646
|
transform-origin: 100% 100%;
|
|
6996
6647
|
}
|
|
6997
|
-
|
|
6998
|
-
[type="checkbox"]:checked:disabled + span:before {
|
|
6648
|
+
[type=checkbox]:checked:disabled + span:before {
|
|
6999
6649
|
border-right: 2px solid rgba(0, 0, 0, 0.42);
|
|
7000
6650
|
border-bottom: 2px solid rgba(0, 0, 0, 0.42);
|
|
7001
6651
|
}
|
|
7002
6652
|
|
|
7003
6653
|
/* Indeterminate checkbox */
|
|
7004
|
-
[type=
|
|
6654
|
+
[type=checkbox]:indeterminate + span:not(.lever):before {
|
|
7005
6655
|
top: -11px;
|
|
7006
6656
|
left: -12px;
|
|
7007
6657
|
width: 10px;
|
|
@@ -7017,28 +6667,25 @@ textarea.materialize-textarea {
|
|
|
7017
6667
|
-webkit-transform-origin: 100% 100%;
|
|
7018
6668
|
transform-origin: 100% 100%;
|
|
7019
6669
|
}
|
|
7020
|
-
|
|
7021
|
-
[type="checkbox"]:indeterminate:disabled + span:not(.lever):before {
|
|
6670
|
+
[type=checkbox]:indeterminate:disabled + span:not(.lever):before {
|
|
7022
6671
|
border-right: 2px solid rgba(0, 0, 0, 0.42);
|
|
7023
6672
|
background-color: transparent;
|
|
7024
6673
|
}
|
|
7025
6674
|
|
|
7026
|
-
[type=
|
|
6675
|
+
[type=checkbox].filled-in + span:not(.lever):after {
|
|
7027
6676
|
border-radius: 2px;
|
|
7028
6677
|
}
|
|
7029
|
-
|
|
7030
|
-
[type=
|
|
7031
|
-
|
|
7032
|
-
content: '';
|
|
6678
|
+
[type=checkbox].filled-in + span:not(.lever):before,
|
|
6679
|
+
[type=checkbox].filled-in + span:not(.lever):after {
|
|
6680
|
+
content: "";
|
|
7033
6681
|
left: 0;
|
|
7034
6682
|
position: absolute;
|
|
7035
6683
|
/* .1s delay is for check animation */
|
|
7036
|
-
-webkit-transition: border .25s, background-color .25s, width .
|
|
7037
|
-
transition: border .25s, background-color .25s, width .
|
|
6684
|
+
-webkit-transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
|
|
6685
|
+
transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
|
|
7038
6686
|
z-index: 1;
|
|
7039
6687
|
}
|
|
7040
|
-
|
|
7041
|
-
[type="checkbox"].filled-in:not(:checked) + span:not(.lever):before {
|
|
6688
|
+
[type=checkbox].filled-in:not(:checked) + span:not(.lever):before {
|
|
7042
6689
|
width: 0;
|
|
7043
6690
|
height: 0;
|
|
7044
6691
|
border: 3px solid transparent;
|
|
@@ -7049,8 +6696,7 @@ textarea.materialize-textarea {
|
|
|
7049
6696
|
-webkit-transform-origin: 100% 100%;
|
|
7050
6697
|
transform-origin: 100% 100%;
|
|
7051
6698
|
}
|
|
7052
|
-
|
|
7053
|
-
[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
|
|
6699
|
+
[type=checkbox].filled-in:not(:checked) + span:not(.lever):after {
|
|
7054
6700
|
height: 20px;
|
|
7055
6701
|
width: 20px;
|
|
7056
6702
|
background-color: transparent;
|
|
@@ -7058,8 +6704,7 @@ textarea.materialize-textarea {
|
|
|
7058
6704
|
top: 0px;
|
|
7059
6705
|
z-index: 0;
|
|
7060
6706
|
}
|
|
7061
|
-
|
|
7062
|
-
[type="checkbox"].filled-in:checked + span:not(.lever):before {
|
|
6707
|
+
[type=checkbox].filled-in:checked + span:not(.lever):before {
|
|
7063
6708
|
top: 0;
|
|
7064
6709
|
left: 1px;
|
|
7065
6710
|
width: 8px;
|
|
@@ -7073,8 +6718,7 @@ textarea.materialize-textarea {
|
|
|
7073
6718
|
-webkit-transform-origin: 100% 100%;
|
|
7074
6719
|
transform-origin: 100% 100%;
|
|
7075
6720
|
}
|
|
7076
|
-
|
|
7077
|
-
[type="checkbox"].filled-in:checked + span:not(.lever):after {
|
|
6721
|
+
[type=checkbox].filled-in:checked + span:not(.lever):after {
|
|
7078
6722
|
top: 0;
|
|
7079
6723
|
width: 20px;
|
|
7080
6724
|
height: 20px;
|
|
@@ -7082,39 +6726,33 @@ textarea.materialize-textarea {
|
|
|
7082
6726
|
background-color: #26a69a;
|
|
7083
6727
|
z-index: 0;
|
|
7084
6728
|
}
|
|
7085
|
-
|
|
7086
|
-
[type="checkbox"].filled-in.tabbed:focus + span:not(.lever):after {
|
|
6729
|
+
[type=checkbox].filled-in.tabbed:focus + span:not(.lever):after {
|
|
7087
6730
|
border-radius: 2px;
|
|
7088
6731
|
border-color: #5a5a5a;
|
|
7089
6732
|
background-color: rgba(0, 0, 0, 0.1);
|
|
7090
6733
|
}
|
|
7091
|
-
|
|
7092
|
-
[type="checkbox"].filled-in.tabbed:checked:focus + span:not(.lever):after {
|
|
6734
|
+
[type=checkbox].filled-in.tabbed:checked:focus + span:not(.lever):after {
|
|
7093
6735
|
border-radius: 2px;
|
|
7094
6736
|
background-color: #26a69a;
|
|
7095
6737
|
border-color: #26a69a;
|
|
7096
6738
|
}
|
|
7097
|
-
|
|
7098
|
-
[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):before {
|
|
6739
|
+
[type=checkbox].filled-in:disabled:not(:checked) + span:not(.lever):before {
|
|
7099
6740
|
background-color: transparent;
|
|
7100
6741
|
border: 2px solid transparent;
|
|
7101
6742
|
}
|
|
7102
|
-
|
|
7103
|
-
[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):after {
|
|
6743
|
+
[type=checkbox].filled-in:disabled:not(:checked) + span:not(.lever):after {
|
|
7104
6744
|
border-color: transparent;
|
|
7105
6745
|
background-color: #949494;
|
|
7106
6746
|
}
|
|
7107
|
-
|
|
7108
|
-
[type="checkbox"].filled-in:disabled:checked + span:not(.lever):before {
|
|
6747
|
+
[type=checkbox].filled-in:disabled:checked + span:not(.lever):before {
|
|
7109
6748
|
background-color: transparent;
|
|
7110
6749
|
}
|
|
7111
|
-
|
|
7112
|
-
[type="checkbox"].filled-in:disabled:checked + span:not(.lever):after {
|
|
6750
|
+
[type=checkbox].filled-in:disabled:checked + span:not(.lever):after {
|
|
7113
6751
|
background-color: #949494;
|
|
7114
6752
|
border-color: #949494;
|
|
7115
6753
|
}
|
|
7116
6754
|
|
|
7117
|
-
/* Switch
|
|
6755
|
+
/* Switch
|
|
7118
6756
|
========================================================================== */
|
|
7119
6757
|
.switch,
|
|
7120
6758
|
.switch * {
|
|
@@ -7134,15 +6772,12 @@ textarea.materialize-textarea {
|
|
|
7134
6772
|
width: 0;
|
|
7135
6773
|
height: 0;
|
|
7136
6774
|
}
|
|
7137
|
-
|
|
7138
6775
|
.switch label input[type=checkbox]:checked:not([disabled]) {
|
|
7139
6776
|
background-color: #84c7c1;
|
|
7140
6777
|
}
|
|
7141
|
-
|
|
7142
6778
|
.switch label input[type=checkbox]:checked + .lever:before, .switch label input[type=checkbox]:checked + .lever:after {
|
|
7143
6779
|
left: 18px;
|
|
7144
6780
|
}
|
|
7145
|
-
|
|
7146
6781
|
.switch label input[type=checkbox]:checked + .lever:after {
|
|
7147
6782
|
background-color: #26a69a;
|
|
7148
6783
|
}
|
|
@@ -7161,7 +6796,6 @@ textarea.materialize-textarea {
|
|
|
7161
6796
|
vertical-align: middle;
|
|
7162
6797
|
margin: 0 16px;
|
|
7163
6798
|
}
|
|
7164
|
-
|
|
7165
6799
|
.switch label .lever:before, .switch label .lever:after {
|
|
7166
6800
|
content: "";
|
|
7167
6801
|
position: absolute;
|
|
@@ -7171,16 +6805,14 @@ textarea.materialize-textarea {
|
|
|
7171
6805
|
border-radius: 50%;
|
|
7172
6806
|
left: 0;
|
|
7173
6807
|
top: -3px;
|
|
7174
|
-
-webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
|
|
7175
|
-
transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
|
|
7176
|
-
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
|
|
7177
|
-
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
|
|
6808
|
+
-webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
|
|
6809
|
+
transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
|
|
6810
|
+
transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
|
|
6811
|
+
transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
|
|
7178
6812
|
}
|
|
7179
|
-
|
|
7180
6813
|
.switch label .lever:before {
|
|
7181
6814
|
background-color: rgba(38, 166, 154, 0.15);
|
|
7182
6815
|
}
|
|
7183
|
-
|
|
7184
6816
|
.switch label .lever:after {
|
|
7185
6817
|
background-color: #F1F1F1;
|
|
7186
6818
|
-webkit-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);
|
|
@@ -7211,7 +6843,7 @@ input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
|
|
|
7211
6843
|
background-color: #949494;
|
|
7212
6844
|
}
|
|
7213
6845
|
|
|
7214
|
-
/* Select Field
|
|
6846
|
+
/* Select Field
|
|
7215
6847
|
========================================================================== */
|
|
7216
6848
|
select.browser-default {
|
|
7217
6849
|
opacity: 1;
|
|
@@ -7234,13 +6866,10 @@ select {
|
|
|
7234
6866
|
.select-wrapper {
|
|
7235
6867
|
position: relative;
|
|
7236
6868
|
}
|
|
7237
|
-
|
|
7238
|
-
.select-wrapper.valid + label,
|
|
7239
|
-
.select-wrapper.invalid + label {
|
|
6869
|
+
.select-wrapper.valid + label, .select-wrapper.invalid + label {
|
|
7240
6870
|
width: 100%;
|
|
7241
6871
|
pointer-events: none;
|
|
7242
6872
|
}
|
|
7243
|
-
|
|
7244
6873
|
.select-wrapper input.select-dropdown {
|
|
7245
6874
|
position: relative;
|
|
7246
6875
|
cursor: pointer;
|
|
@@ -7261,11 +6890,9 @@ select {
|
|
|
7261
6890
|
user-select: none;
|
|
7262
6891
|
z-index: 1;
|
|
7263
6892
|
}
|
|
7264
|
-
|
|
7265
6893
|
.select-wrapper input.select-dropdown:focus {
|
|
7266
6894
|
border-bottom: 1px solid #26a69a;
|
|
7267
6895
|
}
|
|
7268
|
-
|
|
7269
6896
|
.select-wrapper .caret {
|
|
7270
6897
|
position: absolute;
|
|
7271
6898
|
right: 0;
|
|
@@ -7275,13 +6902,11 @@ select {
|
|
|
7275
6902
|
z-index: 0;
|
|
7276
6903
|
fill: rgba(0, 0, 0, 0.87);
|
|
7277
6904
|
}
|
|
7278
|
-
|
|
7279
6905
|
.select-wrapper + label {
|
|
7280
6906
|
position: absolute;
|
|
7281
6907
|
top: -26px;
|
|
7282
6908
|
font-size: 0.8rem;
|
|
7283
6909
|
}
|
|
7284
|
-
|
|
7285
6910
|
.select-wrapper .hide-select {
|
|
7286
6911
|
width: 0;
|
|
7287
6912
|
height: 0;
|
|
@@ -7298,7 +6923,6 @@ select:disabled {
|
|
|
7298
6923
|
.select-wrapper.disabled + label {
|
|
7299
6924
|
color: rgba(0, 0, 0, 0.42);
|
|
7300
6925
|
}
|
|
7301
|
-
|
|
7302
6926
|
.select-wrapper.disabled .caret {
|
|
7303
6927
|
fill: rgba(0, 0, 0, 0.42);
|
|
7304
6928
|
}
|
|
@@ -7330,7 +6954,6 @@ body.keyboard-focused .select-dropdown.dropdown-content li:focus {
|
|
|
7330
6954
|
.select-dropdown.dropdown-content li:hover {
|
|
7331
6955
|
background-color: rgba(0, 0, 0, 0.08);
|
|
7332
6956
|
}
|
|
7333
|
-
|
|
7334
6957
|
.select-dropdown.dropdown-content li.selected {
|
|
7335
6958
|
background-color: rgba(0, 0, 0, 0.03);
|
|
7336
6959
|
}
|
|
@@ -7365,44 +6988,36 @@ body.keyboard-focused .select-dropdown.dropdown-content li:focus {
|
|
|
7365
6988
|
.select-dropdown li.optgroup {
|
|
7366
6989
|
border-top: 1px solid #eee;
|
|
7367
6990
|
}
|
|
7368
|
-
|
|
7369
6991
|
.select-dropdown li.optgroup.selected > span {
|
|
7370
6992
|
color: rgba(0, 0, 0, 0.7);
|
|
7371
6993
|
}
|
|
7372
|
-
|
|
7373
6994
|
.select-dropdown li.optgroup > span {
|
|
7374
6995
|
color: rgba(0, 0, 0, 0.4);
|
|
7375
6996
|
}
|
|
7376
|
-
|
|
7377
6997
|
.select-dropdown li.optgroup ~ li.optgroup-option {
|
|
7378
6998
|
padding-left: 1rem;
|
|
7379
6999
|
}
|
|
7380
7000
|
|
|
7381
|
-
/* File Input
|
|
7001
|
+
/* File Input
|
|
7382
7002
|
========================================================================== */
|
|
7383
7003
|
.file-field {
|
|
7384
7004
|
position: relative;
|
|
7385
7005
|
}
|
|
7386
|
-
|
|
7387
7006
|
.file-field .file-path-wrapper {
|
|
7388
7007
|
overflow: hidden;
|
|
7389
7008
|
padding-left: 10px;
|
|
7390
7009
|
}
|
|
7391
|
-
|
|
7392
7010
|
.file-field input.file-path {
|
|
7393
7011
|
width: 100%;
|
|
7394
7012
|
}
|
|
7395
|
-
|
|
7396
7013
|
.file-field .btn, .file-field .btn-large, .file-field .btn-small {
|
|
7397
7014
|
float: left;
|
|
7398
7015
|
height: 3rem;
|
|
7399
7016
|
line-height: 3rem;
|
|
7400
7017
|
}
|
|
7401
|
-
|
|
7402
7018
|
.file-field span {
|
|
7403
7019
|
cursor: pointer;
|
|
7404
7020
|
}
|
|
7405
|
-
|
|
7406
7021
|
.file-field input[type=file] {
|
|
7407
7022
|
position: absolute;
|
|
7408
7023
|
top: 0;
|
|
@@ -7417,12 +7032,11 @@ body.keyboard-focused .select-dropdown.dropdown-content li:focus {
|
|
|
7417
7032
|
opacity: 0;
|
|
7418
7033
|
filter: alpha(opacity=0);
|
|
7419
7034
|
}
|
|
7420
|
-
|
|
7421
7035
|
.file-field input[type=file]::-webkit-file-upload-button {
|
|
7422
7036
|
display: none;
|
|
7423
7037
|
}
|
|
7424
7038
|
|
|
7425
|
-
/* Range
|
|
7039
|
+
/* Range
|
|
7426
7040
|
========================================================================== */
|
|
7427
7041
|
.range-field {
|
|
7428
7042
|
position: relative;
|
|
@@ -7442,7 +7056,6 @@ input[type=range] {
|
|
|
7442
7056
|
margin: 15px 0;
|
|
7443
7057
|
padding: 0;
|
|
7444
7058
|
}
|
|
7445
|
-
|
|
7446
7059
|
input[type=range]:focus {
|
|
7447
7060
|
outline: none;
|
|
7448
7061
|
}
|
|
@@ -7462,7 +7075,6 @@ input[type=range] + .thumb {
|
|
|
7462
7075
|
-webkit-transform: rotate(-45deg);
|
|
7463
7076
|
transform: rotate(-45deg);
|
|
7464
7077
|
}
|
|
7465
|
-
|
|
7466
7078
|
input[type=range] + .thumb .value {
|
|
7467
7079
|
display: block;
|
|
7468
7080
|
width: 30px;
|
|
@@ -7472,11 +7084,9 @@ input[type=range] + .thumb .value {
|
|
|
7472
7084
|
-webkit-transform: rotate(45deg);
|
|
7473
7085
|
transform: rotate(45deg);
|
|
7474
7086
|
}
|
|
7475
|
-
|
|
7476
7087
|
input[type=range] + .thumb.active {
|
|
7477
7088
|
border-radius: 50% 50% 50% 0;
|
|
7478
7089
|
}
|
|
7479
|
-
|
|
7480
7090
|
input[type=range] + .thumb.active .value {
|
|
7481
7091
|
color: #fff;
|
|
7482
7092
|
margin-left: -1px;
|
|
@@ -7500,10 +7110,10 @@ input[type=range]::-webkit-slider-thumb {
|
|
|
7500
7110
|
width: 14px;
|
|
7501
7111
|
border-radius: 50%;
|
|
7502
7112
|
background: #26a69a;
|
|
7503
|
-
-webkit-transition: -webkit-box-shadow .3s;
|
|
7504
|
-
transition: -webkit-box-shadow .3s;
|
|
7505
|
-
transition: box-shadow .3s;
|
|
7506
|
-
transition: box-shadow .3s, -webkit-box-shadow .3s;
|
|
7113
|
+
-webkit-transition: -webkit-box-shadow 0.3s;
|
|
7114
|
+
transition: -webkit-box-shadow 0.3s;
|
|
7115
|
+
transition: box-shadow 0.3s;
|
|
7116
|
+
transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
|
|
7507
7117
|
-webkit-appearance: none;
|
|
7508
7118
|
background-color: #26a69a;
|
|
7509
7119
|
-webkit-transform-origin: 50% 50%;
|
|
@@ -7538,10 +7148,10 @@ input[type=range]::-moz-range-thumb {
|
|
|
7538
7148
|
width: 14px;
|
|
7539
7149
|
border-radius: 50%;
|
|
7540
7150
|
background: #26a69a;
|
|
7541
|
-
-webkit-transition: -webkit-box-shadow .3s;
|
|
7542
|
-
transition: -webkit-box-shadow .3s;
|
|
7543
|
-
transition: box-shadow .3s;
|
|
7544
|
-
transition: box-shadow .3s, -webkit-box-shadow .3s;
|
|
7151
|
+
-webkit-transition: -webkit-box-shadow 0.3s;
|
|
7152
|
+
transition: -webkit-box-shadow 0.3s;
|
|
7153
|
+
transition: box-shadow 0.3s;
|
|
7154
|
+
transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
|
|
7545
7155
|
margin-top: -5px;
|
|
7546
7156
|
}
|
|
7547
7157
|
|
|
@@ -7577,27 +7187,25 @@ input[type=range]::-ms-thumb {
|
|
|
7577
7187
|
width: 14px;
|
|
7578
7188
|
border-radius: 50%;
|
|
7579
7189
|
background: #26a69a;
|
|
7580
|
-
-webkit-transition: -webkit-box-shadow .3s;
|
|
7581
|
-
transition: -webkit-box-shadow .3s;
|
|
7582
|
-
transition: box-shadow .3s;
|
|
7583
|
-
transition: box-shadow .3s, -webkit-box-shadow .3s;
|
|
7190
|
+
-webkit-transition: -webkit-box-shadow 0.3s;
|
|
7191
|
+
transition: -webkit-box-shadow 0.3s;
|
|
7192
|
+
transition: box-shadow 0.3s;
|
|
7193
|
+
transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
|
|
7584
7194
|
}
|
|
7585
7195
|
|
|
7586
7196
|
.keyboard-focused input[type=range]:focus:not(.active)::-ms-thumb {
|
|
7587
7197
|
box-shadow: 0 0 0 10px rgba(38, 166, 154, 0.26);
|
|
7588
7198
|
}
|
|
7589
7199
|
|
|
7590
|
-
/***************
|
|
7591
|
-
Nav List
|
|
7200
|
+
/***************
|
|
7201
|
+
Nav List
|
|
7592
7202
|
***************/
|
|
7593
7203
|
.table-of-contents.fixed {
|
|
7594
7204
|
position: fixed;
|
|
7595
7205
|
}
|
|
7596
|
-
|
|
7597
7206
|
.table-of-contents li {
|
|
7598
7207
|
padding: 2px 0;
|
|
7599
7208
|
}
|
|
7600
|
-
|
|
7601
7209
|
.table-of-contents a {
|
|
7602
7210
|
display: inline-block;
|
|
7603
7211
|
font-weight: 300;
|
|
@@ -7605,16 +7213,14 @@ input[type=range]::-ms-thumb {
|
|
|
7605
7213
|
padding-left: 16px;
|
|
7606
7214
|
height: 1.5rem;
|
|
7607
7215
|
line-height: 1.5rem;
|
|
7608
|
-
letter-spacing: .4;
|
|
7216
|
+
letter-spacing: 0.4;
|
|
7609
7217
|
display: inline-block;
|
|
7610
7218
|
}
|
|
7611
|
-
|
|
7612
7219
|
.table-of-contents a:hover {
|
|
7613
7220
|
color: #a8a8a8;
|
|
7614
7221
|
padding-left: 15px;
|
|
7615
7222
|
border-left: 1px solid #ee6e73;
|
|
7616
7223
|
}
|
|
7617
|
-
|
|
7618
7224
|
.table-of-contents a.active {
|
|
7619
7225
|
font-weight: 500;
|
|
7620
7226
|
padding-left: 14px;
|
|
@@ -7640,7 +7246,6 @@ input[type=range]::-ms-thumb {
|
|
|
7640
7246
|
-webkit-transform: translateX(-105%);
|
|
7641
7247
|
transform: translateX(-105%);
|
|
7642
7248
|
}
|
|
7643
|
-
|
|
7644
7249
|
.sidenav.right-aligned {
|
|
7645
7250
|
right: 0;
|
|
7646
7251
|
-webkit-transform: translateX(105%);
|
|
@@ -7649,20 +7254,16 @@ input[type=range]::-ms-thumb {
|
|
|
7649
7254
|
-webkit-transform: translateX(100%);
|
|
7650
7255
|
transform: translateX(100%);
|
|
7651
7256
|
}
|
|
7652
|
-
|
|
7653
7257
|
.sidenav .collapsible {
|
|
7654
7258
|
margin: 0;
|
|
7655
7259
|
}
|
|
7656
|
-
|
|
7657
7260
|
.sidenav li {
|
|
7658
7261
|
float: none;
|
|
7659
7262
|
line-height: 48px;
|
|
7660
7263
|
}
|
|
7661
|
-
|
|
7662
7264
|
.sidenav li.active {
|
|
7663
7265
|
background-color: rgba(0, 0, 0, 0.05);
|
|
7664
7266
|
}
|
|
7665
|
-
|
|
7666
7267
|
.sidenav li > a {
|
|
7667
7268
|
color: rgba(0, 0, 0, 0.87);
|
|
7668
7269
|
display: block;
|
|
@@ -7672,34 +7273,25 @@ input[type=range]::-ms-thumb {
|
|
|
7672
7273
|
line-height: 48px;
|
|
7673
7274
|
padding: 0 32px;
|
|
7674
7275
|
}
|
|
7675
|
-
|
|
7676
7276
|
.sidenav li > a:hover {
|
|
7677
7277
|
background-color: rgba(0, 0, 0, 0.05);
|
|
7678
7278
|
}
|
|
7679
|
-
|
|
7680
|
-
.sidenav li > a.btn, .sidenav li > a.btn-large, .sidenav li > a.btn-small, .sidenav li > a.btn-large, .sidenav li > a.btn-flat, .sidenav li > a.btn-floating {
|
|
7279
|
+
.sidenav li > a.btn, .sidenav li > a.btn-small, .sidenav li > a.btn-large, .sidenav li > a.btn-flat, .sidenav li > a.btn-floating {
|
|
7681
7280
|
margin: 10px 15px;
|
|
7682
7281
|
}
|
|
7683
|
-
|
|
7684
|
-
.sidenav li > a.btn, .sidenav li > a.btn-large, .sidenav li > a.btn-small, .sidenav li > a.btn-large, .sidenav li > a.btn-floating {
|
|
7282
|
+
.sidenav li > a.btn, .sidenav li > a.btn-small, .sidenav li > a.btn-large, .sidenav li > a.btn-floating {
|
|
7685
7283
|
color: #fff;
|
|
7686
7284
|
}
|
|
7687
|
-
|
|
7688
7285
|
.sidenav li > a.btn-flat {
|
|
7689
7286
|
color: #343434;
|
|
7690
7287
|
}
|
|
7691
|
-
|
|
7692
|
-
.sidenav li > a.btn:hover, .sidenav li > a.btn-large:hover, .sidenav li > a.btn-small:hover, .sidenav li > a.btn-large:hover {
|
|
7288
|
+
.sidenav li > a.btn:hover, .sidenav li > a.btn-small:hover, .sidenav li > a.btn-large:hover {
|
|
7693
7289
|
background-color: #2bbbad;
|
|
7694
7290
|
}
|
|
7695
|
-
|
|
7696
7291
|
.sidenav li > a.btn-floating:hover {
|
|
7697
7292
|
background-color: #26a69a;
|
|
7698
7293
|
}
|
|
7699
|
-
|
|
7700
|
-
.sidenav li > a > i,
|
|
7701
|
-
.sidenav li > a > [class^="mdi-"], .sidenav li > a li > a > [class*="mdi-"],
|
|
7702
|
-
.sidenav li > a > i.material-icons {
|
|
7294
|
+
.sidenav li > a > i, .sidenav li > a > [class^=mdi-], .sidenav li > a li > a > [class*=mdi-], .sidenav li > a > i.material-icons {
|
|
7703
7295
|
float: left;
|
|
7704
7296
|
height: 48px;
|
|
7705
7297
|
line-height: 48px;
|
|
@@ -7707,11 +7299,9 @@ input[type=range]::-ms-thumb {
|
|
|
7707
7299
|
width: 24px;
|
|
7708
7300
|
color: rgba(0, 0, 0, 0.54);
|
|
7709
7301
|
}
|
|
7710
|
-
|
|
7711
7302
|
.sidenav .divider {
|
|
7712
7303
|
margin: 8px 0 0 0;
|
|
7713
7304
|
}
|
|
7714
|
-
|
|
7715
7305
|
.sidenav .subheader {
|
|
7716
7306
|
cursor: initial;
|
|
7717
7307
|
pointer-events: none;
|
|
@@ -7720,26 +7310,21 @@ input[type=range]::-ms-thumb {
|
|
|
7720
7310
|
font-weight: 500;
|
|
7721
7311
|
line-height: 48px;
|
|
7722
7312
|
}
|
|
7723
|
-
|
|
7724
7313
|
.sidenav .subheader:hover {
|
|
7725
7314
|
background-color: transparent;
|
|
7726
7315
|
}
|
|
7727
|
-
|
|
7728
7316
|
.sidenav .user-view {
|
|
7729
7317
|
position: relative;
|
|
7730
7318
|
padding: 32px 32px 0;
|
|
7731
7319
|
margin-bottom: 8px;
|
|
7732
7320
|
}
|
|
7733
|
-
|
|
7734
7321
|
.sidenav .user-view > a {
|
|
7735
7322
|
height: auto;
|
|
7736
7323
|
padding: 0;
|
|
7737
7324
|
}
|
|
7738
|
-
|
|
7739
7325
|
.sidenav .user-view > a:hover {
|
|
7740
7326
|
background-color: transparent;
|
|
7741
7327
|
}
|
|
7742
|
-
|
|
7743
7328
|
.sidenav .user-view .background {
|
|
7744
7329
|
overflow: hidden;
|
|
7745
7330
|
position: absolute;
|
|
@@ -7749,27 +7334,22 @@ input[type=range]::-ms-thumb {
|
|
|
7749
7334
|
left: 0;
|
|
7750
7335
|
z-index: -1;
|
|
7751
7336
|
}
|
|
7752
|
-
|
|
7753
7337
|
.sidenav .user-view .circle, .sidenav .user-view .name, .sidenav .user-view .email {
|
|
7754
7338
|
display: block;
|
|
7755
7339
|
}
|
|
7756
|
-
|
|
7757
7340
|
.sidenav .user-view .circle {
|
|
7758
7341
|
height: 64px;
|
|
7759
7342
|
width: 64px;
|
|
7760
7343
|
}
|
|
7761
|
-
|
|
7762
7344
|
.sidenav .user-view .name,
|
|
7763
7345
|
.sidenav .user-view .email {
|
|
7764
7346
|
font-size: 14px;
|
|
7765
7347
|
line-height: 24px;
|
|
7766
7348
|
}
|
|
7767
|
-
|
|
7768
7349
|
.sidenav .user-view .name {
|
|
7769
7350
|
margin-top: 16px;
|
|
7770
7351
|
font-weight: 500;
|
|
7771
7352
|
}
|
|
7772
|
-
|
|
7773
7353
|
.sidenav .user-view .email {
|
|
7774
7354
|
padding-bottom: 16px;
|
|
7775
7355
|
font-weight: 400;
|
|
@@ -7782,7 +7362,6 @@ input[type=range]::-ms-thumb {
|
|
|
7782
7362
|
left: 0;
|
|
7783
7363
|
z-index: 998;
|
|
7784
7364
|
}
|
|
7785
|
-
|
|
7786
7365
|
.drag-target.right-aligned {
|
|
7787
7366
|
right: 0;
|
|
7788
7367
|
}
|
|
@@ -7793,13 +7372,12 @@ input[type=range]::-ms-thumb {
|
|
|
7793
7372
|
transform: translateX(0);
|
|
7794
7373
|
position: fixed;
|
|
7795
7374
|
}
|
|
7796
|
-
|
|
7797
7375
|
.sidenav.sidenav-fixed.right-aligned {
|
|
7798
7376
|
right: 0;
|
|
7799
7377
|
left: auto;
|
|
7800
7378
|
}
|
|
7801
7379
|
|
|
7802
|
-
@media only screen and (max-width: 992.99px) {
|
|
7380
|
+
@media only screen and (max-width : 992.99px) {
|
|
7803
7381
|
.sidenav.sidenav-fixed {
|
|
7804
7382
|
-webkit-transform: translateX(-105%);
|
|
7805
7383
|
transform: translateX(-105%);
|
|
@@ -7815,12 +7393,10 @@ input[type=range]::-ms-thumb {
|
|
|
7815
7393
|
padding: 16px 16px 0;
|
|
7816
7394
|
}
|
|
7817
7395
|
}
|
|
7818
|
-
|
|
7819
7396
|
.sidenav .collapsible-body > ul:not(.collapsible) > li.active,
|
|
7820
7397
|
.sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active {
|
|
7821
7398
|
background-color: #ee6e73;
|
|
7822
7399
|
}
|
|
7823
|
-
|
|
7824
7400
|
.sidenav .collapsible-body > ul:not(.collapsible) > li.active a,
|
|
7825
7401
|
.sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active a {
|
|
7826
7402
|
color: #fff;
|
|
@@ -7842,30 +7418,30 @@ input[type=range]::-ms-thumb {
|
|
|
7842
7418
|
display: none;
|
|
7843
7419
|
}
|
|
7844
7420
|
|
|
7845
|
-
/*
|
|
7846
|
-
@license
|
|
7847
|
-
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
|
7848
|
-
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
7849
|
-
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
7850
|
-
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
7851
|
-
Code distributed by Google as part of the polymer project is also
|
|
7852
|
-
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
7421
|
+
/*
|
|
7422
|
+
@license
|
|
7423
|
+
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
|
|
7424
|
+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
7425
|
+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
7426
|
+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
7427
|
+
Code distributed by Google as part of the polymer project is also
|
|
7428
|
+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
7853
7429
|
*/
|
|
7854
7430
|
/**************************/
|
|
7855
7431
|
/* STYLES FOR THE SPINNER */
|
|
7856
7432
|
/**************************/
|
|
7857
|
-
/*
|
|
7858
|
-
* Constants:
|
|
7859
|
-
* STROKEWIDTH = 3px
|
|
7860
|
-
* ARCSIZE = 270 degrees (amount of circle the arc takes up)
|
|
7861
|
-
* ARCTIME = 1333ms (time it takes to expand and contract arc)
|
|
7862
|
-
* ARCSTARTROT = 216 degrees (how much the start location of the arc
|
|
7863
|
-
* should rotate each time, 216 gives us a
|
|
7864
|
-
* 5 pointed star shape (it's 360/5 * 3).
|
|
7865
|
-
* For a 7 pointed star, we might do
|
|
7866
|
-
* 360/7 * 3 = 154.286)
|
|
7867
|
-
* CONTAINERWIDTH = 28px
|
|
7868
|
-
* SHRINK_TIME = 400ms
|
|
7433
|
+
/*
|
|
7434
|
+
* Constants:
|
|
7435
|
+
* STROKEWIDTH = 3px
|
|
7436
|
+
* ARCSIZE = 270 degrees (amount of circle the arc takes up)
|
|
7437
|
+
* ARCTIME = 1333ms (time it takes to expand and contract arc)
|
|
7438
|
+
* ARCSTARTROT = 216 degrees (how much the start location of the arc
|
|
7439
|
+
* should rotate each time, 216 gives us a
|
|
7440
|
+
* 5 pointed star shape (it's 360/5 * 3).
|
|
7441
|
+
* For a 7 pointed star, we might do
|
|
7442
|
+
* 360/7 * 3 = 154.286)
|
|
7443
|
+
* CONTAINERWIDTH = 28px
|
|
7444
|
+
* SHRINK_TIME = 400ms
|
|
7869
7445
|
*/
|
|
7870
7446
|
.preloader-wrapper {
|
|
7871
7447
|
display: inline-block;
|
|
@@ -7873,17 +7449,14 @@ input[type=range]::-ms-thumb {
|
|
|
7873
7449
|
width: 50px;
|
|
7874
7450
|
height: 50px;
|
|
7875
7451
|
}
|
|
7876
|
-
|
|
7877
7452
|
.preloader-wrapper.small {
|
|
7878
7453
|
width: 36px;
|
|
7879
7454
|
height: 36px;
|
|
7880
7455
|
}
|
|
7881
|
-
|
|
7882
7456
|
.preloader-wrapper.big {
|
|
7883
7457
|
width: 64px;
|
|
7884
7458
|
height: 64px;
|
|
7885
7459
|
}
|
|
7886
|
-
|
|
7887
7460
|
.preloader-wrapper.active {
|
|
7888
7461
|
/* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
|
|
7889
7462
|
-webkit-animation: container-rotate 1568ms linear infinite;
|
|
@@ -7895,14 +7468,12 @@ input[type=range]::-ms-thumb {
|
|
|
7895
7468
|
-webkit-transform: rotate(360deg);
|
|
7896
7469
|
}
|
|
7897
7470
|
}
|
|
7898
|
-
|
|
7899
7471
|
@keyframes container-rotate {
|
|
7900
7472
|
to {
|
|
7901
7473
|
-webkit-transform: rotate(360deg);
|
|
7902
7474
|
transform: rotate(360deg);
|
|
7903
7475
|
}
|
|
7904
7476
|
}
|
|
7905
|
-
|
|
7906
7477
|
.spinner-layer {
|
|
7907
7478
|
position: absolute;
|
|
7908
7479
|
width: 100%;
|
|
@@ -7931,18 +7502,18 @@ input[type=range]::-ms-thumb {
|
|
|
7931
7502
|
border-color: #0f9d58;
|
|
7932
7503
|
}
|
|
7933
7504
|
|
|
7934
|
-
/**
|
|
7935
|
-
* IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
|
|
7936
|
-
*
|
|
7937
|
-
* iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
|
|
7938
|
-
* guarantee that the animation will start _exactly_ after that value. So we avoid using
|
|
7939
|
-
* animation-delay and instead set custom keyframes for each color (as redundant as it
|
|
7940
|
-
* seems).
|
|
7941
|
-
*
|
|
7942
|
-
* We write out each animation in full (instead of separating animation-name,
|
|
7943
|
-
* animation-duration, etc.) because under the polyfill, Safari does not recognize those
|
|
7944
|
-
* specific properties properly, treats them as -webkit-animation, and overrides the
|
|
7945
|
-
* other animation rules. See https://github.com/Polymer/platform/issues/53.
|
|
7505
|
+
/**
|
|
7506
|
+
* IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
|
|
7507
|
+
*
|
|
7508
|
+
* iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
|
|
7509
|
+
* guarantee that the animation will start _exactly_ after that value. So we avoid using
|
|
7510
|
+
* animation-delay and instead set custom keyframes for each color (as redundant as it
|
|
7511
|
+
* seems).
|
|
7512
|
+
*
|
|
7513
|
+
* We write out each animation in full (instead of separating animation-name,
|
|
7514
|
+
* animation-duration, etc.) because under the polyfill, Safari does not recognize those
|
|
7515
|
+
* specific properties properly, treats them as -webkit-animation, and overrides the
|
|
7516
|
+
* other animation rules. See https://github.com/Polymer/platform/issues/53.
|
|
7946
7517
|
*/
|
|
7947
7518
|
.active .spinner-layer.spinner-blue {
|
|
7948
7519
|
/* durations: 4 * ARCTIME */
|
|
@@ -8013,7 +7584,6 @@ input[type=range]::-ms-thumb {
|
|
|
8013
7584
|
}
|
|
8014
7585
|
/* 4 * ARCSIZE */
|
|
8015
7586
|
}
|
|
8016
|
-
|
|
8017
7587
|
@keyframes fill-unfill-rotate {
|
|
8018
7588
|
12.5% {
|
|
8019
7589
|
-webkit-transform: rotate(135deg);
|
|
@@ -8056,7 +7626,6 @@ input[type=range]::-ms-thumb {
|
|
|
8056
7626
|
}
|
|
8057
7627
|
/* 4 * ARCSIZE */
|
|
8058
7628
|
}
|
|
8059
|
-
|
|
8060
7629
|
@-webkit-keyframes blue-fade-in-out {
|
|
8061
7630
|
from {
|
|
8062
7631
|
opacity: 1;
|
|
@@ -8077,7 +7646,6 @@ input[type=range]::-ms-thumb {
|
|
|
8077
7646
|
opacity: 1;
|
|
8078
7647
|
}
|
|
8079
7648
|
}
|
|
8080
|
-
|
|
8081
7649
|
@keyframes blue-fade-in-out {
|
|
8082
7650
|
from {
|
|
8083
7651
|
opacity: 1;
|
|
@@ -8098,7 +7666,6 @@ input[type=range]::-ms-thumb {
|
|
|
8098
7666
|
opacity: 1;
|
|
8099
7667
|
}
|
|
8100
7668
|
}
|
|
8101
|
-
|
|
8102
7669
|
@-webkit-keyframes red-fade-in-out {
|
|
8103
7670
|
from {
|
|
8104
7671
|
opacity: 0;
|
|
@@ -8116,7 +7683,6 @@ input[type=range]::-ms-thumb {
|
|
|
8116
7683
|
opacity: 0;
|
|
8117
7684
|
}
|
|
8118
7685
|
}
|
|
8119
|
-
|
|
8120
7686
|
@keyframes red-fade-in-out {
|
|
8121
7687
|
from {
|
|
8122
7688
|
opacity: 0;
|
|
@@ -8134,7 +7700,6 @@ input[type=range]::-ms-thumb {
|
|
|
8134
7700
|
opacity: 0;
|
|
8135
7701
|
}
|
|
8136
7702
|
}
|
|
8137
|
-
|
|
8138
7703
|
@-webkit-keyframes yellow-fade-in-out {
|
|
8139
7704
|
from {
|
|
8140
7705
|
opacity: 0;
|
|
@@ -8152,7 +7717,6 @@ input[type=range]::-ms-thumb {
|
|
|
8152
7717
|
opacity: 0;
|
|
8153
7718
|
}
|
|
8154
7719
|
}
|
|
8155
|
-
|
|
8156
7720
|
@keyframes yellow-fade-in-out {
|
|
8157
7721
|
from {
|
|
8158
7722
|
opacity: 0;
|
|
@@ -8170,7 +7734,6 @@ input[type=range]::-ms-thumb {
|
|
|
8170
7734
|
opacity: 0;
|
|
8171
7735
|
}
|
|
8172
7736
|
}
|
|
8173
|
-
|
|
8174
7737
|
@-webkit-keyframes green-fade-in-out {
|
|
8175
7738
|
from {
|
|
8176
7739
|
opacity: 0;
|
|
@@ -8188,7 +7751,6 @@ input[type=range]::-ms-thumb {
|
|
|
8188
7751
|
opacity: 0;
|
|
8189
7752
|
}
|
|
8190
7753
|
}
|
|
8191
|
-
|
|
8192
7754
|
@keyframes green-fade-in-out {
|
|
8193
7755
|
from {
|
|
8194
7756
|
opacity: 0;
|
|
@@ -8206,10 +7768,9 @@ input[type=range]::-ms-thumb {
|
|
|
8206
7768
|
opacity: 0;
|
|
8207
7769
|
}
|
|
8208
7770
|
}
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
*
|
|
8212
|
-
* spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
|
|
7771
|
+
/**
|
|
7772
|
+
* Patch the gap that appear between the two adjacent div.circle-clipper while the
|
|
7773
|
+
* spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
|
|
8213
7774
|
*/
|
|
8214
7775
|
.gap-patch {
|
|
8215
7776
|
position: absolute;
|
|
@@ -8234,7 +7795,6 @@ input[type=range]::-ms-thumb {
|
|
|
8234
7795
|
overflow: hidden;
|
|
8235
7796
|
border-color: inherit;
|
|
8236
7797
|
}
|
|
8237
|
-
|
|
8238
7798
|
.circle-clipper .circle {
|
|
8239
7799
|
width: 200%;
|
|
8240
7800
|
height: 100%;
|
|
@@ -8251,14 +7811,12 @@ input[type=range]::-ms-thumb {
|
|
|
8251
7811
|
right: 0;
|
|
8252
7812
|
bottom: 0;
|
|
8253
7813
|
}
|
|
8254
|
-
|
|
8255
7814
|
.circle-clipper.left .circle {
|
|
8256
7815
|
left: 0;
|
|
8257
7816
|
border-right-color: transparent !important;
|
|
8258
7817
|
-webkit-transform: rotate(129deg);
|
|
8259
7818
|
transform: rotate(129deg);
|
|
8260
7819
|
}
|
|
8261
|
-
|
|
8262
7820
|
.circle-clipper.right .circle {
|
|
8263
7821
|
left: -100%;
|
|
8264
7822
|
border-left-color: transparent !important;
|
|
@@ -8289,7 +7847,6 @@ input[type=range]::-ms-thumb {
|
|
|
8289
7847
|
-webkit-transform: rotate(130deg);
|
|
8290
7848
|
}
|
|
8291
7849
|
}
|
|
8292
|
-
|
|
8293
7850
|
@keyframes left-spin {
|
|
8294
7851
|
from {
|
|
8295
7852
|
-webkit-transform: rotate(130deg);
|
|
@@ -8304,7 +7861,6 @@ input[type=range]::-ms-thumb {
|
|
|
8304
7861
|
transform: rotate(130deg);
|
|
8305
7862
|
}
|
|
8306
7863
|
}
|
|
8307
|
-
|
|
8308
7864
|
@-webkit-keyframes right-spin {
|
|
8309
7865
|
from {
|
|
8310
7866
|
-webkit-transform: rotate(-130deg);
|
|
@@ -8316,7 +7872,6 @@ input[type=range]::-ms-thumb {
|
|
|
8316
7872
|
-webkit-transform: rotate(-130deg);
|
|
8317
7873
|
}
|
|
8318
7874
|
}
|
|
8319
|
-
|
|
8320
7875
|
@keyframes right-spin {
|
|
8321
7876
|
from {
|
|
8322
7877
|
-webkit-transform: rotate(-130deg);
|
|
@@ -8331,7 +7886,6 @@ input[type=range]::-ms-thumb {
|
|
|
8331
7886
|
transform: rotate(-130deg);
|
|
8332
7887
|
}
|
|
8333
7888
|
}
|
|
8334
|
-
|
|
8335
7889
|
#spinnerContainer.cooldown {
|
|
8336
7890
|
/* duration: SHRINK_TIME */
|
|
8337
7891
|
-webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -8346,7 +7900,6 @@ input[type=range]::-ms-thumb {
|
|
|
8346
7900
|
opacity: 0;
|
|
8347
7901
|
}
|
|
8348
7902
|
}
|
|
8349
|
-
|
|
8350
7903
|
@keyframes fade-out {
|
|
8351
7904
|
from {
|
|
8352
7905
|
opacity: 1;
|
|
@@ -8355,13 +7908,11 @@ input[type=range]::-ms-thumb {
|
|
|
8355
7908
|
opacity: 0;
|
|
8356
7909
|
}
|
|
8357
7910
|
}
|
|
8358
|
-
|
|
8359
7911
|
.slider {
|
|
8360
7912
|
position: relative;
|
|
8361
7913
|
height: 400px;
|
|
8362
7914
|
width: 100%;
|
|
8363
7915
|
}
|
|
8364
|
-
|
|
8365
7916
|
.slider.fullscreen {
|
|
8366
7917
|
height: 100%;
|
|
8367
7918
|
width: 100%;
|
|
@@ -8371,22 +7922,18 @@ input[type=range]::-ms-thumb {
|
|
|
8371
7922
|
right: 0;
|
|
8372
7923
|
bottom: 0;
|
|
8373
7924
|
}
|
|
8374
|
-
|
|
8375
7925
|
.slider.fullscreen ul.slides {
|
|
8376
7926
|
height: 100%;
|
|
8377
7927
|
}
|
|
8378
|
-
|
|
8379
7928
|
.slider.fullscreen ul.indicators {
|
|
8380
7929
|
z-index: 2;
|
|
8381
7930
|
bottom: 30px;
|
|
8382
7931
|
}
|
|
8383
|
-
|
|
8384
7932
|
.slider .slides {
|
|
8385
7933
|
background-color: #9e9e9e;
|
|
8386
7934
|
margin: 0;
|
|
8387
7935
|
height: 400px;
|
|
8388
7936
|
}
|
|
8389
|
-
|
|
8390
7937
|
.slider .slides li {
|
|
8391
7938
|
opacity: 0;
|
|
8392
7939
|
position: absolute;
|
|
@@ -8397,14 +7944,12 @@ input[type=range]::-ms-thumb {
|
|
|
8397
7944
|
height: inherit;
|
|
8398
7945
|
overflow: hidden;
|
|
8399
7946
|
}
|
|
8400
|
-
|
|
8401
7947
|
.slider .slides li img {
|
|
8402
7948
|
height: 100%;
|
|
8403
7949
|
width: 100%;
|
|
8404
7950
|
background-size: cover;
|
|
8405
7951
|
background-position: center;
|
|
8406
7952
|
}
|
|
8407
|
-
|
|
8408
7953
|
.slider .slides li .caption {
|
|
8409
7954
|
color: #fff;
|
|
8410
7955
|
position: absolute;
|
|
@@ -8413,15 +7958,12 @@ input[type=range]::-ms-thumb {
|
|
|
8413
7958
|
width: 70%;
|
|
8414
7959
|
opacity: 0;
|
|
8415
7960
|
}
|
|
8416
|
-
|
|
8417
7961
|
.slider .slides li .caption p {
|
|
8418
7962
|
color: #e0e0e0;
|
|
8419
7963
|
}
|
|
8420
|
-
|
|
8421
7964
|
.slider .slides li.active {
|
|
8422
7965
|
z-index: 2;
|
|
8423
7966
|
}
|
|
8424
|
-
|
|
8425
7967
|
.slider .indicators {
|
|
8426
7968
|
position: absolute;
|
|
8427
7969
|
text-align: center;
|
|
@@ -8430,7 +7972,6 @@ input[type=range]::-ms-thumb {
|
|
|
8430
7972
|
bottom: 0;
|
|
8431
7973
|
margin: 0;
|
|
8432
7974
|
}
|
|
8433
|
-
|
|
8434
7975
|
.slider .indicators .indicator-item {
|
|
8435
7976
|
display: inline-block;
|
|
8436
7977
|
position: relative;
|
|
@@ -8439,11 +7980,10 @@ input[type=range]::-ms-thumb {
|
|
|
8439
7980
|
width: 16px;
|
|
8440
7981
|
margin: 0 12px;
|
|
8441
7982
|
background-color: #e0e0e0;
|
|
8442
|
-
-webkit-transition: background-color .3s;
|
|
8443
|
-
transition: background-color .3s;
|
|
7983
|
+
-webkit-transition: background-color 0.3s;
|
|
7984
|
+
transition: background-color 0.3s;
|
|
8444
7985
|
border-radius: 50%;
|
|
8445
7986
|
}
|
|
8446
|
-
|
|
8447
7987
|
.slider .indicators .indicator-item.active {
|
|
8448
7988
|
background-color: #4CAF50;
|
|
8449
7989
|
}
|
|
@@ -8460,12 +8000,10 @@ input[type=range]::-ms-thumb {
|
|
|
8460
8000
|
-webkit-transform-origin: 0% 50%;
|
|
8461
8001
|
transform-origin: 0% 50%;
|
|
8462
8002
|
}
|
|
8463
|
-
|
|
8464
8003
|
.carousel.carousel-slider {
|
|
8465
8004
|
top: 0;
|
|
8466
8005
|
left: 0;
|
|
8467
8006
|
}
|
|
8468
|
-
|
|
8469
8007
|
.carousel.carousel-slider .carousel-fixed-item {
|
|
8470
8008
|
position: absolute;
|
|
8471
8009
|
left: 0;
|
|
@@ -8473,11 +8011,9 @@ input[type=range]::-ms-thumb {
|
|
|
8473
8011
|
bottom: 20px;
|
|
8474
8012
|
z-index: 1;
|
|
8475
8013
|
}
|
|
8476
|
-
|
|
8477
8014
|
.carousel.carousel-slider .carousel-fixed-item.with-indicators {
|
|
8478
8015
|
bottom: 68px;
|
|
8479
8016
|
}
|
|
8480
|
-
|
|
8481
8017
|
.carousel.carousel-slider .carousel-item {
|
|
8482
8018
|
width: 100%;
|
|
8483
8019
|
height: 100%;
|
|
@@ -8486,17 +8022,14 @@ input[type=range]::-ms-thumb {
|
|
|
8486
8022
|
top: 0;
|
|
8487
8023
|
left: 0;
|
|
8488
8024
|
}
|
|
8489
|
-
|
|
8490
8025
|
.carousel.carousel-slider .carousel-item h2 {
|
|
8491
8026
|
font-size: 24px;
|
|
8492
8027
|
font-weight: 500;
|
|
8493
8028
|
line-height: 32px;
|
|
8494
8029
|
}
|
|
8495
|
-
|
|
8496
8030
|
.carousel.carousel-slider .carousel-item p {
|
|
8497
8031
|
font-size: 15px;
|
|
8498
8032
|
}
|
|
8499
|
-
|
|
8500
8033
|
.carousel .carousel-item {
|
|
8501
8034
|
visibility: hidden;
|
|
8502
8035
|
width: 200px;
|
|
@@ -8505,11 +8038,9 @@ input[type=range]::-ms-thumb {
|
|
|
8505
8038
|
top: 0;
|
|
8506
8039
|
left: 0;
|
|
8507
8040
|
}
|
|
8508
|
-
|
|
8509
8041
|
.carousel .carousel-item > img {
|
|
8510
8042
|
width: 100%;
|
|
8511
8043
|
}
|
|
8512
|
-
|
|
8513
8044
|
.carousel .indicators {
|
|
8514
8045
|
position: absolute;
|
|
8515
8046
|
text-align: center;
|
|
@@ -8518,7 +8049,6 @@ input[type=range]::-ms-thumb {
|
|
|
8518
8049
|
bottom: 0;
|
|
8519
8050
|
margin: 0;
|
|
8520
8051
|
}
|
|
8521
|
-
|
|
8522
8052
|
.carousel .indicators .indicator-item {
|
|
8523
8053
|
display: inline-block;
|
|
8524
8054
|
position: relative;
|
|
@@ -8527,15 +8057,13 @@ input[type=range]::-ms-thumb {
|
|
|
8527
8057
|
width: 8px;
|
|
8528
8058
|
margin: 24px 4px;
|
|
8529
8059
|
background-color: rgba(255, 255, 255, 0.5);
|
|
8530
|
-
-webkit-transition: background-color .3s;
|
|
8531
|
-
transition: background-color .3s;
|
|
8060
|
+
-webkit-transition: background-color 0.3s;
|
|
8061
|
+
transition: background-color 0.3s;
|
|
8532
8062
|
border-radius: 50%;
|
|
8533
8063
|
}
|
|
8534
|
-
|
|
8535
8064
|
.carousel .indicators .indicator-item.active {
|
|
8536
8065
|
background-color: #fff;
|
|
8537
8066
|
}
|
|
8538
|
-
|
|
8539
8067
|
.carousel.scrolling .carousel-item .materialboxed,
|
|
8540
8068
|
.carousel .carousel-item:not(.active) .materialboxed {
|
|
8541
8069
|
pointer-events: none;
|
|
@@ -8547,8 +8075,8 @@ input[type=range]::-ms-thumb {
|
|
|
8547
8075
|
position: fixed;
|
|
8548
8076
|
z-index: 1000;
|
|
8549
8077
|
visibility: hidden;
|
|
8550
|
-
-webkit-transition: visibility 0s .3s;
|
|
8551
|
-
transition: visibility 0s .3s;
|
|
8078
|
+
-webkit-transition: visibility 0s 0.3s;
|
|
8079
|
+
transition: visibility 0s 0.3s;
|
|
8552
8080
|
}
|
|
8553
8081
|
|
|
8554
8082
|
.tap-target-wrapper.open {
|
|
@@ -8556,30 +8084,27 @@ input[type=range]::-ms-thumb {
|
|
|
8556
8084
|
-webkit-transition: visibility 0s;
|
|
8557
8085
|
transition: visibility 0s;
|
|
8558
8086
|
}
|
|
8559
|
-
|
|
8560
8087
|
.tap-target-wrapper.open .tap-target {
|
|
8561
8088
|
-webkit-transform: scale(1);
|
|
8562
8089
|
transform: scale(1);
|
|
8563
|
-
opacity: .95;
|
|
8090
|
+
opacity: 0.95;
|
|
8564
8091
|
-webkit-transition: opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.58, 1);
|
|
8565
8092
|
transition: opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.58, 1);
|
|
8566
8093
|
transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1);
|
|
8567
8094
|
transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.58, 1);
|
|
8568
8095
|
}
|
|
8569
|
-
|
|
8570
8096
|
.tap-target-wrapper.open .tap-target-wave::before {
|
|
8571
8097
|
-webkit-transform: scale(1);
|
|
8572
8098
|
transform: scale(1);
|
|
8573
8099
|
}
|
|
8574
|
-
|
|
8575
8100
|
.tap-target-wrapper.open .tap-target-wave::after {
|
|
8576
8101
|
visibility: visible;
|
|
8577
8102
|
-webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
|
|
8578
8103
|
animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
|
|
8579
|
-
-webkit-transition: opacity .3s,
|
|
8580
8104
|
visibility 0s 1s,
|
|
8581
8105
|
-webkit-transform .3s;
|
|
8582
|
-
transition: opacity .3s,
|
|
8583
8106
|
visibility 0s 1s,
|
|
8584
8107
|
-webkit-transform .3s;
|
|
8585
|
-
transition: opacity .3s,
|
|
8586
8108
|
transform .3s,
|
|
8587
8109
|
visibility 0s 1s;
|
|
8588
|
-
transition: opacity .3s,
|
|
8589
8110
|
transform .3s,
|
|
8590
8111
|
visibility 0s 1s,
|
|
8591
8112
|
-webkit-transform .3s;
|
|
8113
|
+
-webkit-transition: opacity 0.3s, visibility 0s 1s, -webkit-transform 0.3s;
|
|
8114
|
+
transition: opacity 0.3s, visibility 0s 1s, -webkit-transform 0.3s;
|
|
8115
|
+
transition: opacity 0.3s, transform 0.3s, visibility 0s 1s;
|
|
8116
|
+
transition: opacity 0.3s, transform 0.3s, visibility 0s 1s, -webkit-transform 0.3s;
|
|
8592
8117
|
}
|
|
8593
8118
|
|
|
8594
8119
|
.tap-target {
|
|
@@ -8610,9 +8135,8 @@ input[type=range]::-ms-thumb {
|
|
|
8610
8135
|
border-radius: 50%;
|
|
8611
8136
|
z-index: 10001;
|
|
8612
8137
|
}
|
|
8613
|
-
|
|
8614
8138
|
.tap-target-wave::before, .tap-target-wave::after {
|
|
8615
|
-
content:
|
|
8139
|
+
content: "";
|
|
8616
8140
|
display: block;
|
|
8617
8141
|
position: absolute;
|
|
8618
8142
|
width: 100%;
|
|
@@ -8620,22 +8144,20 @@ input[type=range]::-ms-thumb {
|
|
|
8620
8144
|
border-radius: 50%;
|
|
8621
8145
|
background-color: #ffffff;
|
|
8622
8146
|
}
|
|
8623
|
-
|
|
8624
8147
|
.tap-target-wave::before {
|
|
8625
8148
|
-webkit-transform: scale(0);
|
|
8626
8149
|
transform: scale(0);
|
|
8627
|
-
-webkit-transition: -webkit-transform .3s;
|
|
8628
|
-
transition: -webkit-transform .3s;
|
|
8629
|
-
transition: transform .3s;
|
|
8630
|
-
transition: transform .3s, -webkit-transform .3s;
|
|
8150
|
+
-webkit-transition: -webkit-transform 0.3s;
|
|
8151
|
+
transition: -webkit-transform 0.3s;
|
|
8152
|
+
transition: transform 0.3s;
|
|
8153
|
+
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
8631
8154
|
}
|
|
8632
|
-
|
|
8633
8155
|
.tap-target-wave::after {
|
|
8634
8156
|
visibility: hidden;
|
|
8635
|
-
-webkit-transition: opacity .3s,
|
|
8636
8157
|
visibility 0s,
|
|
8637
8158
|
-webkit-transform .3s;
|
|
8638
|
-
transition: opacity .3s,
|
|
8639
8159
|
visibility 0s,
|
|
8640
8160
|
-webkit-transform .3s;
|
|
8641
|
-
transition: opacity .3s,
|
|
8642
8161
|
transform .3s,
|
|
8643
8162
|
visibility 0s;
|
|
8644
|
-
transition: opacity .3s,
|
|
8645
8163
|
transform .3s,
|
|
8646
8164
|
visibility 0s,
|
|
8647
8165
|
-webkit-transform .3s;
|
|
8166
|
+
-webkit-transition: opacity 0.3s, visibility 0s, -webkit-transform 0.3s;
|
|
8167
|
+
transition: opacity 0.3s, visibility 0s, -webkit-transform 0.3s;
|
|
8168
|
+
transition: opacity 0.3s, transform 0.3s, visibility 0s;
|
|
8169
|
+
transition: opacity 0.3s, transform 0.3s, visibility 0s, -webkit-transform 0.3s;
|
|
8648
8170
|
z-index: -1;
|
|
8649
8171
|
}
|
|
8650
8172
|
|
|
@@ -8647,7 +8169,6 @@ input[type=range]::-ms-thumb {
|
|
|
8647
8169
|
z-index: 10002;
|
|
8648
8170
|
position: absolute !important;
|
|
8649
8171
|
}
|
|
8650
|
-
|
|
8651
8172
|
.tap-target-origin:not(.btn):not(.btn-large):not(.btn-small), .tap-target-origin:not(.btn):not(.btn-large):not(.btn-small):hover {
|
|
8652
8173
|
background: none;
|
|
8653
8174
|
}
|
|
@@ -8658,14 +8179,12 @@ input[type=range]::-ms-thumb {
|
|
|
8658
8179
|
height: 600px;
|
|
8659
8180
|
}
|
|
8660
8181
|
}
|
|
8661
|
-
|
|
8662
8182
|
.pulse {
|
|
8663
8183
|
overflow: visible;
|
|
8664
8184
|
position: relative;
|
|
8665
8185
|
}
|
|
8666
|
-
|
|
8667
8186
|
.pulse::before {
|
|
8668
|
-
content:
|
|
8187
|
+
content: "";
|
|
8669
8188
|
display: block;
|
|
8670
8189
|
position: absolute;
|
|
8671
8190
|
width: 100%;
|
|
@@ -8674,10 +8193,10 @@ input[type=range]::-ms-thumb {
|
|
|
8674
8193
|
left: 0;
|
|
8675
8194
|
background-color: inherit;
|
|
8676
8195
|
border-radius: inherit;
|
|
8677
|
-
-webkit-transition: opacity .3s, -webkit-transform .3s;
|
|
8678
|
-
transition: opacity .3s, -webkit-transform .3s;
|
|
8679
|
-
transition: opacity .3s, transform .3s;
|
|
8680
|
-
transition: opacity .3s, transform .3s, -webkit-transform .3s;
|
|
8196
|
+
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
|
8197
|
+
transition: opacity 0.3s, -webkit-transform 0.3s;
|
|
8198
|
+
transition: opacity 0.3s, transform 0.3s;
|
|
8199
|
+
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
|
|
8681
8200
|
-webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
|
|
8682
8201
|
animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
|
|
8683
8202
|
z-index: -1;
|
|
@@ -8718,7 +8237,6 @@ input[type=range]::-ms-thumb {
|
|
|
8718
8237
|
transform: scale(1.5);
|
|
8719
8238
|
}
|
|
8720
8239
|
}
|
|
8721
|
-
|
|
8722
8240
|
/* Modal */
|
|
8723
8241
|
.datepicker-modal {
|
|
8724
8242
|
max-width: 325px;
|
|
@@ -8751,32 +8269,26 @@ input[type=range]::-ms-thumb {
|
|
|
8751
8269
|
width: 280px;
|
|
8752
8270
|
margin: 0 auto;
|
|
8753
8271
|
}
|
|
8754
|
-
|
|
8755
8272
|
.datepicker-controls .selects-container {
|
|
8756
8273
|
display: -webkit-box;
|
|
8757
8274
|
display: -webkit-flex;
|
|
8758
8275
|
display: -ms-flexbox;
|
|
8759
8276
|
display: flex;
|
|
8760
8277
|
}
|
|
8761
|
-
|
|
8762
8278
|
.datepicker-controls .select-wrapper input {
|
|
8763
8279
|
border-bottom: none;
|
|
8764
8280
|
text-align: center;
|
|
8765
8281
|
margin: 0;
|
|
8766
8282
|
}
|
|
8767
|
-
|
|
8768
8283
|
.datepicker-controls .select-wrapper input:focus {
|
|
8769
8284
|
border-bottom: none;
|
|
8770
8285
|
}
|
|
8771
|
-
|
|
8772
8286
|
.datepicker-controls .select-wrapper .caret {
|
|
8773
8287
|
display: none;
|
|
8774
8288
|
}
|
|
8775
|
-
|
|
8776
8289
|
.datepicker-controls .select-year input {
|
|
8777
8290
|
width: 50px;
|
|
8778
8291
|
}
|
|
8779
|
-
|
|
8780
8292
|
.datepicker-controls .select-month input {
|
|
8781
8293
|
width: 80px;
|
|
8782
8294
|
}
|
|
@@ -8799,14 +8311,12 @@ input[type=range]::-ms-thumb {
|
|
|
8799
8311
|
padding: 20px 22px;
|
|
8800
8312
|
font-weight: 500;
|
|
8801
8313
|
}
|
|
8802
|
-
|
|
8803
8314
|
.datepicker-date-display .year-text {
|
|
8804
8315
|
display: block;
|
|
8805
8316
|
font-size: 1.5rem;
|
|
8806
8317
|
line-height: 25px;
|
|
8807
8318
|
color: rgba(255, 255, 255, 0.7);
|
|
8808
8319
|
}
|
|
8809
|
-
|
|
8810
8320
|
.datepicker-date-display .date-text {
|
|
8811
8321
|
display: block;
|
|
8812
8322
|
font-size: 2.8rem;
|
|
@@ -8827,39 +8337,31 @@ input[type=range]::-ms-thumb {
|
|
|
8827
8337
|
font-size: 1rem;
|
|
8828
8338
|
margin: 0 auto;
|
|
8829
8339
|
}
|
|
8830
|
-
|
|
8831
8340
|
.datepicker-table thead {
|
|
8832
8341
|
border-bottom: none;
|
|
8833
8342
|
}
|
|
8834
|
-
|
|
8835
8343
|
.datepicker-table th {
|
|
8836
8344
|
padding: 10px 5px;
|
|
8837
8345
|
text-align: center;
|
|
8838
8346
|
}
|
|
8839
|
-
|
|
8840
8347
|
.datepicker-table tr {
|
|
8841
8348
|
border: none;
|
|
8842
8349
|
}
|
|
8843
|
-
|
|
8844
8350
|
.datepicker-table abbr {
|
|
8845
8351
|
text-decoration: none;
|
|
8846
8352
|
color: #999;
|
|
8847
8353
|
}
|
|
8848
|
-
|
|
8849
8354
|
.datepicker-table td {
|
|
8850
8355
|
border-radius: 50%;
|
|
8851
8356
|
padding: 0;
|
|
8852
8357
|
}
|
|
8853
|
-
|
|
8854
8358
|
.datepicker-table td.is-today {
|
|
8855
8359
|
color: #26a69a;
|
|
8856
8360
|
}
|
|
8857
|
-
|
|
8858
8361
|
.datepicker-table td.is-selected {
|
|
8859
8362
|
background-color: #26a69a;
|
|
8860
8363
|
color: #fff;
|
|
8861
8364
|
}
|
|
8862
|
-
|
|
8863
8365
|
.datepicker-table td.is-outside-current-month, .datepicker-table td.is-disabled {
|
|
8864
8366
|
color: rgba(0, 0, 0, 0.3);
|
|
8865
8367
|
pointer-events: none;
|
|
@@ -8876,7 +8378,6 @@ input[type=range]::-ms-thumb {
|
|
|
8876
8378
|
cursor: pointer;
|
|
8877
8379
|
color: inherit;
|
|
8878
8380
|
}
|
|
8879
|
-
|
|
8880
8381
|
.datepicker-day-button:focus {
|
|
8881
8382
|
background-color: rgba(43, 161, 150, 0.25);
|
|
8882
8383
|
}
|
|
@@ -8909,10 +8410,11 @@ input[type=range]::-ms-thumb {
|
|
|
8909
8410
|
}
|
|
8910
8411
|
|
|
8911
8412
|
/* Media Queries */
|
|
8912
|
-
@media only screen and (min-width: 601px) {
|
|
8413
|
+
@media only screen and (min-width : 601px) {
|
|
8913
8414
|
.datepicker-modal {
|
|
8914
8415
|
max-width: 625px;
|
|
8915
8416
|
}
|
|
8417
|
+
|
|
8916
8418
|
.datepicker-container.modal-content {
|
|
8917
8419
|
-webkit-box-orient: horizontal;
|
|
8918
8420
|
-webkit-box-direction: normal;
|
|
@@ -8920,22 +8422,24 @@ input[type=range]::-ms-thumb {
|
|
|
8920
8422
|
-ms-flex-direction: row;
|
|
8921
8423
|
flex-direction: row;
|
|
8922
8424
|
}
|
|
8425
|
+
|
|
8923
8426
|
.datepicker-date-display {
|
|
8924
8427
|
-webkit-box-flex: 0;
|
|
8925
8428
|
-webkit-flex: 0 1 270px;
|
|
8926
8429
|
-ms-flex: 0 1 270px;
|
|
8927
8430
|
flex: 0 1 270px;
|
|
8928
8431
|
}
|
|
8432
|
+
|
|
8929
8433
|
.datepicker-controls,
|
|
8930
|
-
|
|
8931
|
-
|
|
8434
|
+
.datepicker-table,
|
|
8435
|
+
.datepicker-footer {
|
|
8932
8436
|
width: 320px;
|
|
8933
8437
|
}
|
|
8438
|
+
|
|
8934
8439
|
.datepicker-day-button {
|
|
8935
8440
|
line-height: 44px;
|
|
8936
8441
|
}
|
|
8937
8442
|
}
|
|
8938
|
-
|
|
8939
8443
|
/* Timepicker Containers */
|
|
8940
8444
|
.timepicker-modal {
|
|
8941
8445
|
max-width: 325px;
|
|
@@ -8961,6 +8465,7 @@ input[type=range]::-ms-thumb {
|
|
|
8961
8465
|
|
|
8962
8466
|
/* Clock Digital Display */
|
|
8963
8467
|
.timepicker-digital-display {
|
|
8468
|
+
width: 200px;
|
|
8964
8469
|
-webkit-box-flex: 1;
|
|
8965
8470
|
-webkit-flex: 1 auto;
|
|
8966
8471
|
-ms-flex: 1 auto;
|
|
@@ -8982,21 +8487,35 @@ input[type=range]::-ms-thumb {
|
|
|
8982
8487
|
-ms-user-select: none;
|
|
8983
8488
|
user-select: none;
|
|
8984
8489
|
}
|
|
8490
|
+
.timepicker-text-container input[type=text] {
|
|
8491
|
+
height: 4rem;
|
|
8492
|
+
color: rgba(255, 255, 255, 0.6);
|
|
8493
|
+
border-bottom: 0px;
|
|
8494
|
+
font-size: 4rem;
|
|
8495
|
+
direction: ltr;
|
|
8496
|
+
}
|
|
8985
8497
|
|
|
8986
|
-
.timepicker-
|
|
8987
|
-
.timepicker-
|
|
8498
|
+
.timepicker-input-hours,
|
|
8499
|
+
.timepicker-input-minutes,
|
|
8988
8500
|
.timepicker-span-am-pm div {
|
|
8989
8501
|
cursor: pointer;
|
|
8990
8502
|
}
|
|
8991
8503
|
|
|
8992
|
-
.timepicker-
|
|
8504
|
+
input[type=text].timepicker-input-hours {
|
|
8505
|
+
text-align: right;
|
|
8506
|
+
width: 28%;
|
|
8993
8507
|
margin-right: 3px;
|
|
8994
8508
|
}
|
|
8995
8509
|
|
|
8996
|
-
.timepicker-
|
|
8510
|
+
input[type=text].timepicker-input-minutes {
|
|
8511
|
+
width: 33%;
|
|
8997
8512
|
margin-left: 3px;
|
|
8998
8513
|
}
|
|
8999
8514
|
|
|
8515
|
+
input[type=text].text-primary {
|
|
8516
|
+
color: white;
|
|
8517
|
+
}
|
|
8518
|
+
|
|
9000
8519
|
.timepicker-display-am-pm {
|
|
9001
8520
|
font-size: 1.3rem;
|
|
9002
8521
|
position: absolute;
|
|
@@ -9069,12 +8588,10 @@ input[type=range]::-ms-thumb {
|
|
|
9069
8588
|
.timepicker-dial-out {
|
|
9070
8589
|
opacity: 0;
|
|
9071
8590
|
}
|
|
9072
|
-
|
|
9073
8591
|
.timepicker-dial-out.timepicker-hours {
|
|
9074
8592
|
-webkit-transform: scale(1.1, 1.1);
|
|
9075
8593
|
transform: scale(1.1, 1.1);
|
|
9076
8594
|
}
|
|
9077
|
-
|
|
9078
8595
|
.timepicker-dial-out.timepicker-minutes {
|
|
9079
8596
|
-webkit-transform: scale(0.8, 0.8);
|
|
9080
8597
|
transform: scale(0.8, 0.8);
|
|
@@ -9084,7 +8601,6 @@ input[type=range]::-ms-thumb {
|
|
|
9084
8601
|
-webkit-transition: opacity 175ms;
|
|
9085
8602
|
transition: opacity 175ms;
|
|
9086
8603
|
}
|
|
9087
|
-
|
|
9088
8604
|
.timepicker-canvas line {
|
|
9089
8605
|
stroke: #26a69a;
|
|
9090
8606
|
stroke-width: 4;
|
|
@@ -9133,10 +8649,11 @@ input[type=range]::-ms-thumb {
|
|
|
9133
8649
|
}
|
|
9134
8650
|
|
|
9135
8651
|
/* Media Queries */
|
|
9136
|
-
@media only screen and (min-width: 601px) {
|
|
8652
|
+
@media only screen and (min-width : 601px) {
|
|
9137
8653
|
.timepicker-modal {
|
|
9138
8654
|
max-width: 600px;
|
|
9139
8655
|
}
|
|
8656
|
+
|
|
9140
8657
|
.timepicker-container.modal-content {
|
|
9141
8658
|
-webkit-box-orient: horizontal;
|
|
9142
8659
|
-webkit-box-direction: normal;
|
|
@@ -9144,9 +8661,11 @@ input[type=range]::-ms-thumb {
|
|
|
9144
8661
|
-ms-flex-direction: row;
|
|
9145
8662
|
flex-direction: row;
|
|
9146
8663
|
}
|
|
8664
|
+
|
|
9147
8665
|
.timepicker-text-container {
|
|
9148
8666
|
top: 32%;
|
|
9149
8667
|
}
|
|
8668
|
+
|
|
9150
8669
|
.timepicker-display-am-pm {
|
|
9151
8670
|
position: relative;
|
|
9152
8671
|
right: auto;
|
|
@@ -9154,4 +8673,4 @@ input[type=range]::-ms-thumb {
|
|
|
9154
8673
|
text-align: center;
|
|
9155
8674
|
margin-top: 1.2rem;
|
|
9156
8675
|
}
|
|
9157
|
-
}
|
|
8676
|
+
}
|