@materializecss/materialize 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/Gruntfile.js +722 -712
  2. package/LICENSE +21 -21
  3. package/README.md +91 -91
  4. package/dist/css/materialize.css +68 -135
  5. package/dist/css/materialize.min.css +12 -12
  6. package/dist/js/materialize.js +1112 -1112
  7. package/dist/js/materialize.min.js +6 -6
  8. package/extras/noUiSlider/nouislider.css +403 -403
  9. package/extras/noUiSlider/nouislider.js +2147 -2147
  10. package/js/anime.min.js +34 -34
  11. package/js/autocomplete.js +479 -479
  12. package/js/buttons.js +354 -354
  13. package/js/cards.js +40 -40
  14. package/js/carousel.js +732 -732
  15. package/js/cash.js +960 -960
  16. package/js/characterCounter.js +136 -136
  17. package/js/chips.js +486 -486
  18. package/js/collapsible.js +275 -275
  19. package/js/component.js +44 -44
  20. package/js/datepicker.js +983 -983
  21. package/js/dropdown.js +669 -669
  22. package/js/forms.js +285 -285
  23. package/js/global.js +428 -428
  24. package/js/materialbox.js +453 -453
  25. package/js/modal.js +382 -382
  26. package/js/parallax.js +138 -138
  27. package/js/pushpin.js +148 -148
  28. package/js/range.js +263 -263
  29. package/js/scrollspy.js +295 -295
  30. package/js/select.js +391 -391
  31. package/js/sidenav.js +583 -583
  32. package/js/slider.js +359 -359
  33. package/js/tabs.js +402 -402
  34. package/js/tapTarget.js +315 -315
  35. package/js/timepicker.js +712 -712
  36. package/js/toasts.js +325 -325
  37. package/js/tooltip.js +320 -320
  38. package/js/waves.js +614 -614
  39. package/package.json +87 -84
  40. package/sass/_style.scss +929 -929
  41. package/sass/components/_badges.scss +55 -55
  42. package/sass/components/_buttons.scss +322 -322
  43. package/sass/components/_cards.scss +195 -195
  44. package/sass/components/_carousel.scss +90 -90
  45. package/sass/components/_chips.scss +96 -96
  46. package/sass/components/_collapsible.scss +91 -91
  47. package/sass/components/_collection.scss +106 -106
  48. package/sass/components/_color-classes.scss +32 -32
  49. package/sass/components/_color-variables.scss +370 -370
  50. package/sass/components/_datepicker.scss +191 -191
  51. package/sass/components/_dropdown.scss +84 -84
  52. package/sass/components/_global.scss +646 -646
  53. package/sass/components/_grid.scss +158 -158
  54. package/sass/components/_icons-material-design.scss +5 -5
  55. package/sass/components/_materialbox.scss +42 -42
  56. package/sass/components/_modal.scss +97 -97
  57. package/sass/components/_navbar.scss +208 -208
  58. package/sass/components/_normalize.scss +447 -447
  59. package/sass/components/_preloader.scss +334 -334
  60. package/sass/components/_pulse.scss +34 -34
  61. package/sass/components/_sidenav.scss +214 -214
  62. package/sass/components/_slider.scss +91 -91
  63. package/sass/components/_table_of_contents.scss +33 -33
  64. package/sass/components/_tabs.scss +99 -99
  65. package/sass/components/_tapTarget.scss +103 -103
  66. package/sass/components/_timepicker.scss +199 -199
  67. package/sass/components/_toast.scss +58 -58
  68. package/sass/components/_tooltip.scss +32 -32
  69. package/sass/components/_transitions.scss +12 -12
  70. package/sass/components/_typography.scss +62 -62
  71. package/sass/components/_variables.scss +352 -352
  72. package/sass/components/_waves.scss +187 -187
  73. package/sass/components/forms/_checkboxes.scss +200 -200
  74. package/sass/components/forms/_file-input.scss +44 -44
  75. package/sass/components/forms/_forms.scss +22 -22
  76. package/sass/components/forms/_input-fields.scss +388 -388
  77. package/sass/components/forms/_radio-buttons.scss +115 -115
  78. package/sass/components/forms/_range.scss +161 -161
  79. package/sass/components/forms/_select.scss +199 -199
  80. package/sass/components/forms/_switches.scss +91 -91
  81. package/sass/ghpages-materialize.scss +7 -7
  82. package/sass/materialize.scss +42 -42
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2014-2019 Materialize
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014-2019 Materialize
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,91 +1,91 @@
1
- <p align="center">
2
- <a href="https://materializecss.github.io/materialize/">
3
- <img src="https://materializecss.github.io/materialize/res/materialize.svg" width="150">
4
- </a>
5
- </p>
6
-
7
- <h3 align="center">MaterializeCSS</h3>
8
-
9
- <p align="center">
10
- Materialize, a CSS Framework based on material design.
11
- <br>
12
- <a href="https://materializecss.github.io/materialize/"><strong>-- Browse the docs --</strong></a>
13
- <br>
14
- <br>
15
- <a href="https://github.com/materializecss/materialize/actions/">
16
- <img src="https://github.com/materializecss/materialize/actions/workflows/nightly.yml/badge.svg" alt="GitHub Actions badge">
17
- </a>
18
- <a href="https://www.npmjs.com/package/@materializecss/materialize">
19
- <img src="https://badge.fury.io/js/%40materializecss%2Fmaterialize.svg" alt="npm version badge">
20
- </a>
21
- <a href="https://www.jsdelivr.com/package/npm/@materializecss/materialize">
22
- <img src="https://data.jsdelivr.com/v1/package/npm/@materializecss/materialize/badge" alt="jsDelivr version badge">
23
- </a>
24
- <a href="https://gitter.im/materializecss/materialize">
25
- <img src="https://badges.gitter.im/Join%20Chat.svg" alt="Gitter badge">
26
- </a>
27
- </p>
28
-
29
- ## Table of Contents
30
- - [Quickstart](#quickstart)
31
- - [Documentation](#documentation)
32
- - [Build](#build)
33
- - [Supported Browsers](#supported-browsers)
34
- - [Changelog](#changelog)
35
- - [Testing](#testing)
36
- - [Contributing](#contributing)
37
- - [Copyright and license](#copyright-and-license)
38
-
39
- ## Quickstart:
40
- Read the [getting started guide](https://materializecss.github.io/materialize/getting-started.html) for more information on how to use materialize.
41
-
42
- - [Download the latest release](https://github.com/materializecss/materialize/releases/latest) of materialize directly from GitHub. ([Beta](https://github.com/materializecss/materialize/releases/))
43
- - Clone the repo: `git clone https://github.com/materializecss/materialize.git`
44
- - Include the files via [jsDelivr](https://www.jsdelivr.com/package/npm/@materializecss/materialize).
45
- - Install with [npm](https://www.npmjs.com): `npm install @materializecss/materialize` (Beta: `npm install @materializecss/materialize@next`)
46
-
47
- ## Documentation
48
- The documentation can be found at <https://materializecss.github.io/materialize>. To run the documentation locally on your machine, you need [Node.js](https://nodejs.org/en/) installed on your computer.
49
-
50
- ### Running documentation locally
51
- Run these commands to set up the documentation:
52
-
53
- ```bash
54
- git clone https://github.com/materializecss/materialize
55
- cd materialize
56
- npm install
57
- ```
58
-
59
- Then run `npm run dev` to compile the documentation. When it finishes, open a new browser window and navigate to `localhost:8000/docs`. We use [BrowserSync](https://www.browsersync.io/) to display the documentation.
60
-
61
- ### Documentation for previous releases
62
- Previous releases and their documentation are available for [download](https://github.com/materializecss/materialize/releases).
63
-
64
- ## Build
65
- If you want to build `materialize.css` or `materialize.js` from the latest commit, you can build the files with the following command after `npm install`. See `package.json` to check the current version like `1.0.0`.
66
-
67
- ```sh
68
- npm run release -- --oldver=<current_version> --newver=<new_version>
69
- ```
70
-
71
- ## Supported Browsers:
72
- Materialize is compatible with:
73
-
74
- - Chrome 35+
75
- - Firefox 31+
76
- - Safari 9+
77
- - Opera
78
- - Edge
79
- - IE 11+
80
-
81
- ## Changelog
82
- For changelogs, check out [the Releases section of materialize](https://github.com/materializecss/materialize/releases) or the [CHANGELOG.md](CHANGELOG.md).
83
-
84
- ## Testing
85
- We use Jasmine as our testing framework and we're trying to write a robust test suite for our components. If you want to help, [here's a starting guide on how to write tests in Jasmine](CONTRIBUTING.md#jasmine-testing-guide).
86
-
87
- ## Contributing
88
- Check out the [CONTRIBUTING document](CONTRIBUTING.md) in the root of the repository to learn how you can contribute. You can also browse the [help-wanted](https://github.com/materializecss/materialize/labels/help-wanted) tag in our issue tracker to find things to do.
89
-
90
- ## Copyright and license
91
- Code Copyright 2022 Materialize. Code released under the MIT license.
1
+ <p align="center">
2
+ <a href="https://materializecss.github.io/materialize/">
3
+ <img src="https://materializecss.github.io/materialize/res/materialize.svg" width="150">
4
+ </a>
5
+ </p>
6
+
7
+ <h3 align="center">MaterializeCSS</h3>
8
+
9
+ <p align="center">
10
+ Materialize, a CSS Framework based on material design.
11
+ <br>
12
+ <a href="https://materializecss.github.io/materialize/"><strong>-- Browse the docs --</strong></a>
13
+ <br>
14
+ <br>
15
+ <a href="https://github.com/materializecss/materialize/actions/">
16
+ <img src="https://github.com/materializecss/materialize/actions/workflows/nightly.yml/badge.svg" alt="GitHub Actions badge">
17
+ </a>
18
+ <a href="https://www.npmjs.com/package/@materializecss/materialize">
19
+ <img src="https://badge.fury.io/js/%40materializecss%2Fmaterialize.svg" alt="npm version badge">
20
+ </a>
21
+ <a href="https://www.jsdelivr.com/package/npm/@materializecss/materialize">
22
+ <img src="https://data.jsdelivr.com/v1/package/npm/@materializecss/materialize/badge" alt="jsDelivr version badge">
23
+ </a>
24
+ <a href="https://gitter.im/materializecss/materialize">
25
+ <img src="https://badges.gitter.im/Join%20Chat.svg" alt="Gitter badge">
26
+ </a>
27
+ </p>
28
+
29
+ ## Table of Contents
30
+ - [Quickstart](#quickstart)
31
+ - [Documentation](#documentation)
32
+ - [Build](#build)
33
+ - [Supported Browsers](#supported-browsers)
34
+ - [Changelog](#changelog)
35
+ - [Testing](#testing)
36
+ - [Contributing](#contributing)
37
+ - [Copyright and license](#copyright-and-license)
38
+
39
+ ## Quickstart:
40
+ Read the [getting started guide](https://materializecss.github.io/materialize/getting-started.html) for more information on how to use materialize.
41
+
42
+ - [Download the latest release](https://github.com/materializecss/materialize/releases/latest) of materialize directly from GitHub. ([Beta](https://github.com/materializecss/materialize/releases/))
43
+ - Clone the repo: `git clone https://github.com/materializecss/materialize.git`
44
+ - Include the files via [jsDelivr](https://www.jsdelivr.com/package/npm/@materializecss/materialize).
45
+ - Install with [npm](https://www.npmjs.com): `npm install @materializecss/materialize` (Beta: `npm install @materializecss/materialize@next`)
46
+
47
+ ## Documentation
48
+ The documentation can be found at <https://materializecss.github.io/materialize>. To run the documentation locally on your machine, you need [Node.js](https://nodejs.org/en/) installed on your computer.
49
+
50
+ ### Running documentation locally
51
+ Run these commands to set up the documentation:
52
+
53
+ ```bash
54
+ git clone https://github.com/materializecss/materialize
55
+ cd materialize
56
+ npm install
57
+ ```
58
+
59
+ Then run `npm run dev` to compile the documentation. When it finishes, open a new browser window and navigate to `localhost:8000/docs`. We use [BrowserSync](https://www.browsersync.io/) to display the documentation.
60
+
61
+ ### Documentation for previous releases
62
+ Previous releases and their documentation are available for [download](https://github.com/materializecss/materialize/releases).
63
+
64
+ ## Build
65
+ If you want to build `materialize.css` or `materialize.js` from the latest commit, you can build the files with the following command after `npm install`. See `package.json` to check the current version like `1.0.0`.
66
+
67
+ ```sh
68
+ npm run release -- --oldver=<current_version> --newver=<new_version>
69
+ ```
70
+
71
+ ## Supported Browsers:
72
+ Materialize is compatible with:
73
+
74
+ - Chrome 35+
75
+ - Firefox 31+
76
+ - Safari 9+
77
+ - Opera
78
+ - Edge
79
+ - IE 11+
80
+
81
+ ## Changelog
82
+ For changelogs, check out [the Releases section of materialize](https://github.com/materializecss/materialize/releases) or the [CHANGELOG.md](CHANGELOG.md).
83
+
84
+ ## Testing
85
+ We use Jasmine as our testing framework and we're trying to write a robust test suite for our components. If you want to help, [here's a starting guide on how to write tests in Jasmine](CONTRIBUTING.md#jasmine-testing-guide).
86
+
87
+ ## Contributing
88
+ Check out the [CONTRIBUTING document](CONTRIBUTING.md) in the root of the repository to learn how you can contribute. You can also browse the [help-wanted](https://github.com/materializecss/materialize/labels/help-wanted) tag in our issue tracker to find things to do.
89
+
90
+ ## Copyright and license
91
+ Code Copyright 2022 Materialize. Code released under the MIT license.
@@ -1,8 +1,8 @@
1
- /*!
2
- * Materialize v1.2.0 (https://materializecss.github.io/materialize)
3
- * Copyright 2014-2021 Materialize
4
- * MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
5
- */
1
+ /*!
2
+ * Materialize v1.2.1 (https://materializecss.github.io/materialize)
3
+ * Copyright 2014-2022 Materialize
4
+ * MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
5
+ */
6
6
  @charset "UTF-8";
7
7
  .materialize-red {
8
8
  background-color: #e51c23 !important;
@@ -2149,12 +2149,9 @@
2149
2149
  * IE on Windows Phone and in iOS.
2150
2150
  */
2151
2151
  html {
2152
- line-height: 1.15;
2153
- /* 1 */
2154
- -ms-text-size-adjust: 100%;
2155
- /* 2 */
2156
- -webkit-text-size-adjust: 100%;
2157
- /* 2 */
2152
+ line-height: 1.15; /* 1 */
2153
+ -ms-text-size-adjust: 100%; /* 2 */
2154
+ -webkit-text-size-adjust: 100%; /* 2 */
2158
2155
  }
2159
2156
 
2160
2157
  /* Sections
@@ -2195,8 +2192,7 @@ h1 {
2195
2192
  */
2196
2193
  figcaption,
2197
2194
  figure,
2198
- main {
2199
- /* 1 */
2195
+ main { /* 1 */
2200
2196
  display: block;
2201
2197
  }
2202
2198
 
@@ -2213,12 +2209,9 @@ figure {
2213
2209
  */
2214
2210
  hr {
2215
2211
  -webkit-box-sizing: content-box;
2216
- box-sizing: content-box;
2217
- /* 1 */
2218
- height: 0;
2219
- /* 1 */
2220
- overflow: visible;
2221
- /* 2 */
2212
+ box-sizing: content-box; /* 1 */
2213
+ height: 0; /* 1 */
2214
+ overflow: visible; /* 2 */
2222
2215
  }
2223
2216
 
2224
2217
  /**
@@ -2226,10 +2219,8 @@ hr {
2226
2219
  * 2. Correct the odd `em` font sizing in all browsers.
2227
2220
  */
2228
2221
  pre {
2229
- font-family: monospace, monospace;
2230
- /* 1 */
2231
- font-size: 1em;
2232
- /* 2 */
2222
+ font-family: monospace, monospace; /* 1 */
2223
+ font-size: 1em; /* 2 */
2233
2224
  }
2234
2225
 
2235
2226
  /* Text-level semantics
@@ -2239,10 +2230,8 @@ pre {
2239
2230
  * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
2240
2231
  */
2241
2232
  a {
2242
- background-color: transparent;
2243
- /* 1 */
2244
- -webkit-text-decoration-skip: objects;
2245
- /* 2 */
2233
+ background-color: transparent; /* 1 */
2234
+ -webkit-text-decoration-skip: objects; /* 2 */
2246
2235
  }
2247
2236
 
2248
2237
  /**
@@ -2250,14 +2239,11 @@ a {
2250
2239
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
2251
2240
  */
2252
2241
  abbr[title] {
2253
- border-bottom: none;
2254
- /* 1 */
2255
- text-decoration: underline;
2256
- /* 2 */
2242
+ border-bottom: none; /* 1 */
2243
+ text-decoration: underline; /* 2 */
2257
2244
  -webkit-text-decoration: underline dotted;
2258
2245
  -moz-text-decoration: underline dotted;
2259
- text-decoration: underline dotted;
2260
- /* 2 */
2246
+ text-decoration: underline dotted; /* 2 */
2261
2247
  }
2262
2248
 
2263
2249
  /**
@@ -2283,10 +2269,8 @@ strong {
2283
2269
  code,
2284
2270
  kbd,
2285
2271
  samp {
2286
- font-family: monospace, monospace;
2287
- /* 1 */
2288
- font-size: 1em;
2289
- /* 2 */
2272
+ font-family: monospace, monospace; /* 1 */
2273
+ font-size: 1em; /* 2 */
2290
2274
  }
2291
2275
 
2292
2276
  /**
@@ -2374,14 +2358,10 @@ input,
2374
2358
  optgroup,
2375
2359
  select,
2376
2360
  textarea {
2377
- font-family: sans-serif;
2378
- /* 1 */
2379
- font-size: 100%;
2380
- /* 1 */
2381
- line-height: 1.15;
2382
- /* 1 */
2383
- margin: 0;
2384
- /* 2 */
2361
+ font-family: sans-serif; /* 1 */
2362
+ font-size: 100%; /* 1 */
2363
+ line-height: 1.15; /* 1 */
2364
+ margin: 0; /* 2 */
2385
2365
  }
2386
2366
 
2387
2367
  /**
@@ -2389,8 +2369,7 @@ textarea {
2389
2369
  * 1. Show the overflow in Edge.
2390
2370
  */
2391
2371
  button,
2392
- input {
2393
- /* 1 */
2372
+ input { /* 1 */
2394
2373
  overflow: visible;
2395
2374
  }
2396
2375
 
@@ -2399,8 +2378,7 @@ input {
2399
2378
  * 1. Remove the inheritance of text transform in Firefox.
2400
2379
  */
2401
2380
  button,
2402
- select {
2403
- /* 1 */
2381
+ select { /* 1 */
2404
2382
  text-transform: none;
2405
2383
  }
2406
2384
 
@@ -2413,8 +2391,7 @@ button,
2413
2391
  html [type=button],
2414
2392
  [type=reset],
2415
2393
  [type=submit] {
2416
- -webkit-appearance: button;
2417
- /* 2 */
2394
+ -webkit-appearance: button; /* 2 */
2418
2395
  }
2419
2396
 
2420
2397
  /**
@@ -2453,18 +2430,12 @@ fieldset {
2453
2430
  */
2454
2431
  legend {
2455
2432
  -webkit-box-sizing: border-box;
2456
- box-sizing: border-box;
2457
- /* 1 */
2458
- color: inherit;
2459
- /* 2 */
2460
- display: table;
2461
- /* 1 */
2462
- max-width: 100%;
2463
- /* 1 */
2464
- padding: 0;
2465
- /* 3 */
2466
- white-space: normal;
2467
- /* 1 */
2433
+ box-sizing: border-box; /* 1 */
2434
+ color: inherit; /* 2 */
2435
+ display: table; /* 1 */
2436
+ max-width: 100%; /* 1 */
2437
+ padding: 0; /* 3 */
2438
+ white-space: normal; /* 1 */
2468
2439
  }
2469
2440
 
2470
2441
  /**
@@ -2472,10 +2443,8 @@ legend {
2472
2443
  * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
2473
2444
  */
2474
2445
  progress {
2475
- display: inline-block;
2476
- /* 1 */
2477
- vertical-align: baseline;
2478
- /* 2 */
2446
+ display: inline-block; /* 1 */
2447
+ vertical-align: baseline; /* 2 */
2479
2448
  }
2480
2449
 
2481
2450
  /**
@@ -2492,10 +2461,8 @@ textarea {
2492
2461
  [type=checkbox],
2493
2462
  [type=radio] {
2494
2463
  -webkit-box-sizing: border-box;
2495
- box-sizing: border-box;
2496
- /* 1 */
2497
- padding: 0;
2498
- /* 2 */
2464
+ box-sizing: border-box; /* 1 */
2465
+ padding: 0; /* 2 */
2499
2466
  }
2500
2467
 
2501
2468
  /**
@@ -2511,10 +2478,8 @@ textarea {
2511
2478
  * 2. Correct the outline style in Safari.
2512
2479
  */
2513
2480
  [type=search] {
2514
- -webkit-appearance: textfield;
2515
- /* 1 */
2516
- outline-offset: -2px;
2517
- /* 2 */
2481
+ -webkit-appearance: textfield; /* 1 */
2482
+ outline-offset: -2px; /* 2 */
2518
2483
  }
2519
2484
 
2520
2485
  /**
@@ -2530,10 +2495,8 @@ textarea {
2530
2495
  * 2. Change font properties to `inherit` in Safari.
2531
2496
  */
2532
2497
  ::-webkit-file-upload-button {
2533
- -webkit-appearance: button;
2534
- /* 1 */
2535
- font: inherit;
2536
- /* 2 */
2498
+ -webkit-appearance: button; /* 1 */
2499
+ font: inherit; /* 2 */
2537
2500
  }
2538
2501
 
2539
2502
  /* Interactive
@@ -2778,7 +2741,7 @@ video.responsive-video {
2778
2741
  font-size: 24px;
2779
2742
  }
2780
2743
  .breadcrumb:before {
2781
- content: "";
2744
+ content: "\e5cc";
2782
2745
  color: rgba(255, 255, 255, 0.7);
2783
2746
  vertical-align: top;
2784
2747
  display: inline-block;
@@ -4330,12 +4293,10 @@ nav .input-field label.active i {
4330
4293
  nav.nav-extended .nav-wrapper {
4331
4294
  min-height: 64px;
4332
4295
  }
4333
-
4334
4296
  nav, nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i {
4335
4297
  height: 64px;
4336
4298
  line-height: 64px;
4337
4299
  }
4338
-
4339
4300
  .navbar-fixed {
4340
4301
  height: 64px;
4341
4302
  }
@@ -4996,9 +4957,9 @@ small {
4996
4957
  }
4997
4958
 
4998
4959
  .btn,
4999
- .btn-floating,
5000
- .btn-large,
5001
4960
  .btn-small,
4961
+ .btn-large,
4962
+ .btn-floating,
5002
4963
  .btn-flat {
5003
4964
  font-size: 14px;
5004
4965
  outline: 0;
@@ -6409,10 +6370,8 @@ textarea {
6409
6370
  }
6410
6371
  textarea.materialize-textarea {
6411
6372
  line-height: normal;
6412
- overflow-y: hidden;
6413
- /* prevents scroll bar flash */
6414
- padding: 0.8rem 0 0.8rem 0;
6415
- /* prevents text jump on Enter keypress */
6373
+ overflow-y: hidden; /* prevents scroll bar flash */
6374
+ padding: 0.8rem 0 0.8rem 0; /* prevents text jump on Enter keypress */
6416
6375
  resize: none;
6417
6376
  min-height: 3rem;
6418
6377
  -webkit-box-sizing: border-box;
@@ -6423,10 +6382,8 @@ textarea.materialize-textarea {
6423
6382
  visibility: hidden;
6424
6383
  white-space: pre-wrap;
6425
6384
  word-wrap: break-word;
6426
- overflow-wrap: break-word;
6427
- /* future version of deprecated 'word-wrap' */
6428
- padding-top: 1.2rem;
6429
- /* prevents text jump on Enter keypress */
6385
+ overflow-wrap: break-word; /* future version of deprecated 'word-wrap' */
6386
+ padding-top: 1.2rem; /* prevents text jump on Enter keypress */
6430
6387
  position: absolute;
6431
6388
  top: 0;
6432
6389
  z-index: -1;
@@ -7553,78 +7510,62 @@ input[type=range]::-ms-thumb {
7553
7510
  @-webkit-keyframes fill-unfill-rotate {
7554
7511
  12.5% {
7555
7512
  -webkit-transform: rotate(135deg);
7556
- }
7557
- /* 0.5 * ARCSIZE */
7513
+ } /* 0.5 * ARCSIZE */
7558
7514
  25% {
7559
7515
  -webkit-transform: rotate(270deg);
7560
- }
7561
- /* 1 * ARCSIZE */
7516
+ } /* 1 * ARCSIZE */
7562
7517
  37.5% {
7563
7518
  -webkit-transform: rotate(405deg);
7564
- }
7565
- /* 1.5 * ARCSIZE */
7519
+ } /* 1.5 * ARCSIZE */
7566
7520
  50% {
7567
7521
  -webkit-transform: rotate(540deg);
7568
- }
7569
- /* 2 * ARCSIZE */
7522
+ } /* 2 * ARCSIZE */
7570
7523
  62.5% {
7571
7524
  -webkit-transform: rotate(675deg);
7572
- }
7573
- /* 2.5 * ARCSIZE */
7525
+ } /* 2.5 * ARCSIZE */
7574
7526
  75% {
7575
7527
  -webkit-transform: rotate(810deg);
7576
- }
7577
- /* 3 * ARCSIZE */
7528
+ } /* 3 * ARCSIZE */
7578
7529
  87.5% {
7579
7530
  -webkit-transform: rotate(945deg);
7580
- }
7581
- /* 3.5 * ARCSIZE */
7531
+ } /* 3.5 * ARCSIZE */
7582
7532
  to {
7583
7533
  -webkit-transform: rotate(1080deg);
7584
- }
7585
- /* 4 * ARCSIZE */
7534
+ } /* 4 * ARCSIZE */
7586
7535
  }
7587
7536
  @keyframes fill-unfill-rotate {
7588
7537
  12.5% {
7589
7538
  -webkit-transform: rotate(135deg);
7590
7539
  transform: rotate(135deg);
7591
- }
7592
- /* 0.5 * ARCSIZE */
7540
+ } /* 0.5 * ARCSIZE */
7593
7541
  25% {
7594
7542
  -webkit-transform: rotate(270deg);
7595
7543
  transform: rotate(270deg);
7596
- }
7597
- /* 1 * ARCSIZE */
7544
+ } /* 1 * ARCSIZE */
7598
7545
  37.5% {
7599
7546
  -webkit-transform: rotate(405deg);
7600
7547
  transform: rotate(405deg);
7601
- }
7602
- /* 1.5 * ARCSIZE */
7548
+ } /* 1.5 * ARCSIZE */
7603
7549
  50% {
7604
7550
  -webkit-transform: rotate(540deg);
7605
7551
  transform: rotate(540deg);
7606
- }
7607
- /* 2 * ARCSIZE */
7552
+ } /* 2 * ARCSIZE */
7608
7553
  62.5% {
7609
7554
  -webkit-transform: rotate(675deg);
7610
7555
  transform: rotate(675deg);
7611
- }
7612
- /* 2.5 * ARCSIZE */
7556
+ } /* 2.5 * ARCSIZE */
7613
7557
  75% {
7614
7558
  -webkit-transform: rotate(810deg);
7615
7559
  transform: rotate(810deg);
7616
- }
7617
- /* 3 * ARCSIZE */
7560
+ } /* 3 * ARCSIZE */
7618
7561
  87.5% {
7619
7562
  -webkit-transform: rotate(945deg);
7620
7563
  transform: rotate(945deg);
7621
- }
7622
- /* 3.5 * ARCSIZE */
7564
+ } /* 3.5 * ARCSIZE */
7623
7565
  to {
7624
7566
  -webkit-transform: rotate(1080deg);
7625
7567
  transform: rotate(1080deg);
7626
- }
7627
- /* 4 * ARCSIZE */
7568
+ } /* 4 * ARCSIZE */
7628
7569
  }
7629
7570
  @-webkit-keyframes blue-fade-in-out {
7630
7571
  from {
@@ -7798,8 +7739,7 @@ input[type=range]::-ms-thumb {
7798
7739
  .circle-clipper .circle {
7799
7740
  width: 200%;
7800
7741
  height: 100%;
7801
- border-width: 3px;
7802
- /* STROKEWIDTH */
7742
+ border-width: 3px; /* STROKEWIDTH */
7803
7743
  border-style: solid;
7804
7744
  border-color: inherit;
7805
7745
  border-bottom-color: transparent !important;
@@ -8414,7 +8354,6 @@ input[type=range]::-ms-thumb {
8414
8354
  .datepicker-modal {
8415
8355
  max-width: 625px;
8416
8356
  }
8417
-
8418
8357
  .datepicker-container.modal-content {
8419
8358
  -webkit-box-orient: horizontal;
8420
8359
  -webkit-box-direction: normal;
@@ -8422,20 +8361,17 @@ input[type=range]::-ms-thumb {
8422
8361
  -ms-flex-direction: row;
8423
8362
  flex-direction: row;
8424
8363
  }
8425
-
8426
8364
  .datepicker-date-display {
8427
8365
  -webkit-box-flex: 0;
8428
8366
  -webkit-flex: 0 1 270px;
8429
8367
  -ms-flex: 0 1 270px;
8430
8368
  flex: 0 1 270px;
8431
8369
  }
8432
-
8433
8370
  .datepicker-controls,
8434
8371
  .datepicker-table,
8435
8372
  .datepicker-footer {
8436
8373
  width: 320px;
8437
8374
  }
8438
-
8439
8375
  .datepicker-day-button {
8440
8376
  line-height: 44px;
8441
8377
  }
@@ -8460,7 +8396,7 @@ input[type=range]::-ms-thumb {
8460
8396
  }
8461
8397
 
8462
8398
  .text-primary {
8463
- color: white;
8399
+ color: rgb(255, 255, 255);
8464
8400
  }
8465
8401
 
8466
8402
  /* Clock Digital Display */
@@ -8513,7 +8449,7 @@ input[type=text].timepicker-input-minutes {
8513
8449
  }
8514
8450
 
8515
8451
  input[type=text].text-primary {
8516
- color: white;
8452
+ color: rgb(255, 255, 255);
8517
8453
  }
8518
8454
 
8519
8455
  .timepicker-display-am-pm {
@@ -8653,7 +8589,6 @@ input[type=text].text-primary {
8653
8589
  .timepicker-modal {
8654
8590
  max-width: 600px;
8655
8591
  }
8656
-
8657
8592
  .timepicker-container.modal-content {
8658
8593
  -webkit-box-orient: horizontal;
8659
8594
  -webkit-box-direction: normal;
@@ -8661,11 +8596,9 @@ input[type=text].text-primary {
8661
8596
  -ms-flex-direction: row;
8662
8597
  flex-direction: row;
8663
8598
  }
8664
-
8665
8599
  .timepicker-text-container {
8666
8600
  top: 32%;
8667
8601
  }
8668
-
8669
8602
  .timepicker-display-am-pm {
8670
8603
  position: relative;
8671
8604
  right: auto;