anc 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/_sass/anc.scss +9 -0
  3. data/_sass/anc/_base.scss +144 -0
  4. data/_sass/anc/_layout.scss +0 -0
  5. data/_sass/anc/_materialize.scss +42 -0
  6. data/_sass/anc/_syntax-highlighting.scss +78 -0
  7. data/_sass/anc/components/_variables.scss +343 -0
  8. data/_sass/materialize/components/_badges.scss +47 -0
  9. data/_sass/materialize/components/_buttons.scss +291 -0
  10. data/_sass/materialize/components/_cards.scss +196 -0
  11. data/_sass/materialize/components/_carousel.scss +90 -0
  12. data/_sass/materialize/components/_chips.scss +89 -0
  13. data/_sass/materialize/components/_collapsible.scss +84 -0
  14. data/_sass/materialize/components/_color.scss +412 -0
  15. data/_sass/materialize/components/_dropdown.scss +68 -0
  16. data/_sass/materialize/components/_global.scss +734 -0
  17. data/_sass/materialize/components/_grid.scss +156 -0
  18. data/_sass/materialize/components/_icons-material-design.scss +5 -0
  19. data/_sass/materialize/components/_materialbox.scss +43 -0
  20. data/_sass/materialize/components/_modal.scss +90 -0
  21. data/_sass/materialize/components/_navbar.scss +208 -0
  22. data/_sass/materialize/components/_normalize.scss +424 -0
  23. data/_sass/materialize/components/_preloader.scss +334 -0
  24. data/_sass/materialize/components/_pulse.scss +34 -0
  25. data/_sass/materialize/components/_roboto.scss +39 -0
  26. data/_sass/materialize/components/_sideNav.scss +214 -0
  27. data/_sass/materialize/components/_slider.scss +92 -0
  28. data/_sass/materialize/components/_table_of_contents.scss +33 -0
  29. data/_sass/materialize/components/_tabs.scss +93 -0
  30. data/_sass/materialize/components/_tapTarget.scss +103 -0
  31. data/_sass/materialize/components/_toast.scss +59 -0
  32. data/_sass/materialize/components/_tooltip.scss +31 -0
  33. data/_sass/materialize/components/_transitions.scss +13 -0
  34. data/_sass/materialize/components/_typography.scss +61 -0
  35. data/_sass/materialize/components/_variables.scss +343 -0
  36. data/_sass/materialize/components/_waves.scss +114 -0
  37. data/_sass/materialize/components/date_picker/_default.date.scss +456 -0
  38. data/_sass/materialize/components/date_picker/_default.scss +212 -0
  39. data/_sass/materialize/components/date_picker/_default.time.scss +267 -0
  40. data/_sass/materialize/components/forms/_checkboxes.scss +210 -0
  41. data/_sass/materialize/components/forms/_file-input.scss +44 -0
  42. data/_sass/materialize/components/forms/_forms.scss +22 -0
  43. data/_sass/materialize/components/forms/_input-fields.scss +333 -0
  44. data/_sass/materialize/components/forms/_radio-buttons.scss +115 -0
  45. data/_sass/materialize/components/forms/_range.scss +160 -0
  46. data/_sass/materialize/components/forms/_select.scss +182 -0
  47. data/_sass/materialize/components/forms/_switches.scss +89 -0
  48. data/_sass/materialize/materialize.scss +42 -0
  49. metadata +48 -1
@@ -0,0 +1,115 @@
1
+ /* Radio Buttons
2
+ ========================================================================== */
3
+
4
+ // Remove default Radio Buttons
5
+ [type="radio"]:not(:checked),
6
+ [type="radio"]:checked {
7
+ position: absolute;
8
+ opacity: 0;
9
+ pointer-events: none;
10
+ }
11
+
12
+ [type="radio"]:not(:checked) + label,
13
+ [type="radio"]:checked + label {
14
+ position: relative;
15
+ padding-left: 35px;
16
+ cursor: pointer;
17
+ display: inline-block;
18
+ height: 25px;
19
+ line-height: 25px;
20
+ font-size: 1rem;
21
+ transition: .28s ease;
22
+ user-select: none;
23
+ }
24
+
25
+ [type="radio"] + label:before,
26
+ [type="radio"] + label:after {
27
+ content: '';
28
+ position: absolute;
29
+ left: 0;
30
+ top: 0;
31
+ margin: 4px;
32
+ width: 16px;
33
+ height: 16px;
34
+ z-index: 0;
35
+ transition: .28s ease;
36
+ }
37
+
38
+ /* Unchecked styles */
39
+ [type="radio"]:not(:checked) + label:before,
40
+ [type="radio"]:not(:checked) + label:after,
41
+ [type="radio"]:checked + label:before,
42
+ [type="radio"]:checked + label:after,
43
+ [type="radio"].with-gap:checked + label:before,
44
+ [type="radio"].with-gap:checked + label:after {
45
+ border-radius: 50%;
46
+ }
47
+
48
+ [type="radio"]:not(:checked) + label:before,
49
+ [type="radio"]:not(:checked) + label:after {
50
+ border: 2px solid $radio-empty-color;
51
+ }
52
+
53
+ [type="radio"]:not(:checked) + label:after {
54
+ transform: scale(0);
55
+ }
56
+
57
+ /* Checked styles */
58
+ [type="radio"]:checked + label:before {
59
+ border: 2px solid transparent;
60
+ }
61
+
62
+ [type="radio"]:checked + label:after,
63
+ [type="radio"].with-gap:checked + label:before,
64
+ [type="radio"].with-gap:checked + label:after {
65
+ border: $radio-border;
66
+ }
67
+
68
+ [type="radio"]:checked + label:after,
69
+ [type="radio"].with-gap:checked + label:after {
70
+ background-color: $radio-fill-color;
71
+ }
72
+
73
+ [type="radio"]:checked + label:after {
74
+ transform: scale(1.02);
75
+ }
76
+
77
+ /* Radio With gap */
78
+ [type="radio"].with-gap:checked + label:after {
79
+ transform: scale(.5);
80
+ }
81
+
82
+ /* Focused styles */
83
+ [type="radio"].tabbed:focus + label:before {
84
+ box-shadow: 0 0 0 10px rgba(0,0,0,.1);
85
+ }
86
+
87
+ /* Disabled Radio With gap */
88
+ [type="radio"].with-gap:disabled:checked + label:before {
89
+ border: 2px solid $input-disabled-color;
90
+ }
91
+
92
+ [type="radio"].with-gap:disabled:checked + label:after {
93
+ border: none;
94
+ background-color: $input-disabled-color;
95
+ }
96
+
97
+ /* Disabled style */
98
+ [type="radio"]:disabled:not(:checked) + label:before,
99
+ [type="radio"]:disabled:checked + label:before {
100
+ background-color: transparent;
101
+ border-color: $input-disabled-color;
102
+ }
103
+
104
+ [type="radio"]:disabled + label {
105
+ color: $input-disabled-color;
106
+ }
107
+
108
+ [type="radio"]:disabled:not(:checked) + label:before {
109
+ border-color: $input-disabled-color;
110
+ }
111
+
112
+ [type="radio"]:disabled:checked + label:after {
113
+ background-color: $input-disabled-color;
114
+ border-color: $input-disabled-solid-color;
115
+ }
@@ -0,0 +1,160 @@
1
+ /* Range
2
+ ========================================================================== */
3
+
4
+ .range-field {
5
+ position: relative;
6
+ }
7
+
8
+ input[type=range],
9
+ input[type=range] + .thumb {
10
+ @extend .no-select;
11
+ cursor: pointer;
12
+ }
13
+
14
+ input[type=range] {
15
+ position: relative;
16
+ background-color: transparent;
17
+ border: none;
18
+ outline: none;
19
+ width: 100%;
20
+ margin: 15px 0;
21
+ padding: 0;
22
+
23
+ &:focus {
24
+ outline: none;
25
+ }
26
+ }
27
+
28
+ input[type=range] + .thumb {
29
+ position: absolute;
30
+ top: 10px;
31
+ left: 0;
32
+ border: none;
33
+ height: 0;
34
+ width: 0;
35
+ border-radius: 50%;
36
+ background-color: $radio-fill-color;
37
+ margin-left: 7px;
38
+
39
+ transform-origin: 50% 50%;
40
+ transform: rotate(-45deg);
41
+
42
+ .value {
43
+ display: block;
44
+ width: 30px;
45
+ text-align: center;
46
+ color: $radio-fill-color;
47
+ font-size: 0;
48
+ transform: rotate(45deg);
49
+ }
50
+
51
+ &.active {
52
+ border-radius: 50% 50% 50% 0;
53
+
54
+ .value {
55
+ color: $input-background;
56
+ margin-left: -1px;
57
+ margin-top: 8px;
58
+ font-size: 10px;
59
+ }
60
+ }
61
+ }
62
+
63
+ // WebKit
64
+ input[type=range] {
65
+ -webkit-appearance: none;
66
+ }
67
+
68
+ input[type=range]::-webkit-slider-runnable-track {
69
+ height: $track-height;
70
+ background: #c2c0c2;
71
+ border: none;
72
+ }
73
+
74
+ input[type=range]::-webkit-slider-thumb {
75
+ -webkit-appearance: none;
76
+ border: none;
77
+ height: $range-height;
78
+ width: $range-width;
79
+ border-radius: 50%;
80
+ background-color: $radio-fill-color;
81
+ transform-origin: 50% 50%;
82
+ margin: -5px 0 0 0;
83
+ transition: .3s;
84
+ }
85
+
86
+ input[type=range]:focus::-webkit-slider-runnable-track {
87
+ background: #ccc;
88
+ }
89
+
90
+ // FireFox
91
+ input[type=range] {
92
+ /* fix for FF unable to apply focus style bug */
93
+ border: 1px solid white;
94
+
95
+ /*required for proper track sizing in FF*/
96
+ }
97
+
98
+ input[type=range]::-moz-range-track {
99
+ height: $track-height;
100
+ background: #ddd;
101
+ border: none;
102
+ }
103
+
104
+ input[type=range]::-moz-range-thumb {
105
+ border: none;
106
+ height: $range-height;
107
+ width: $range-width;
108
+ border-radius: 50%;
109
+ background: $radio-fill-color;
110
+ margin-top: -5px;
111
+ }
112
+
113
+ // hide the outline behind the border
114
+ input[type=range]:-moz-focusring {
115
+ outline: 1px solid #fff;
116
+ outline-offset: -1px;
117
+ }
118
+
119
+ input[type=range]:focus::-moz-range-track {
120
+ background: #ccc;
121
+ }
122
+
123
+ // IE 10+
124
+ input[type=range]::-ms-track {
125
+ height: $track-height;
126
+
127
+ // remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead
128
+ background: transparent;
129
+
130
+ // leave room for the larger thumb to overflow with a transparent border */
131
+ border-color: transparent;
132
+ border-width: 6px 0;
133
+
134
+ /*remove default tick marks*/
135
+ color: transparent;
136
+ }
137
+
138
+ input[type=range]::-ms-fill-lower {
139
+ background: #777;
140
+ }
141
+
142
+ input[type=range]::-ms-fill-upper {
143
+ background: #ddd;
144
+ }
145
+
146
+ input[type=range]::-ms-thumb {
147
+ border: none;
148
+ height: $range-height;
149
+ width: $range-width;
150
+ border-radius: 50%;
151
+ background: $radio-fill-color;
152
+ }
153
+
154
+ input[type=range]:focus::-ms-fill-lower {
155
+ background: #888;
156
+ }
157
+
158
+ input[type=range]:focus::-ms-fill-upper {
159
+ background: #ccc;
160
+ }
@@ -0,0 +1,182 @@
1
+ /* Select Field
2
+ ========================================================================== */
3
+
4
+ select { display: none; }
5
+ select.browser-default { display: block; }
6
+
7
+ select {
8
+ background-color: $select-background;
9
+ width: 100%;
10
+ padding: $select-padding;
11
+ border: $select-border;
12
+ border-radius: $select-radius;
13
+ height: $input-height;
14
+ }
15
+
16
+
17
+ .input-field {
18
+ & > select {
19
+ display: block;
20
+ position: absolute;
21
+ width: 0;
22
+ pointer-events: none;
23
+ height: 0;
24
+ top: 0;
25
+ left: 0;
26
+ opacity: 0;
27
+ }
28
+ }
29
+
30
+ .select-label {
31
+ position: absolute;
32
+ }
33
+
34
+ .select-wrapper {
35
+ &.valid {
36
+ & > input.select-dropdown {
37
+ @extend %valid-input-style;
38
+ }
39
+
40
+ & + label:after {
41
+ @extend %custom-success-message;
42
+ }
43
+ }
44
+
45
+ &.invalid {
46
+ & > input.select-dropdown {
47
+ @extend %invalid-input-style;
48
+ }
49
+
50
+ & + label:after {
51
+ @extend %custom-error-message;
52
+ }
53
+ }
54
+
55
+ &.valid + label,
56
+ &.invalid + label {
57
+ width: 100%;
58
+ pointer-events: none;
59
+ }
60
+
61
+ & + label:after {
62
+ @extend %input-after-style;
63
+ }
64
+
65
+ position: relative;
66
+
67
+ input.select-dropdown {
68
+ position: relative;
69
+ cursor: pointer;
70
+ background-color: transparent;
71
+ border: none;
72
+ border-bottom: $input-border;
73
+ outline: none;
74
+ height: $input-height;
75
+ line-height: $input-height;
76
+ width: 100%;
77
+ font-size: $input-font-size;
78
+ margin: $input-margin;
79
+ padding: 0;
80
+ display: block;
81
+ user-select:none;
82
+ }
83
+
84
+ span.caret {
85
+ color: initial;
86
+ position: absolute;
87
+ right: 0;
88
+ top: 0;
89
+ bottom: 0;
90
+ height: 10px;
91
+ margin: auto 0;
92
+ font-size: 10px;
93
+ line-height: 10px;
94
+ }
95
+
96
+ & + label {
97
+ position: absolute;
98
+ top: -26px;
99
+ font-size: $label-font-size;
100
+ }
101
+ }
102
+
103
+ // Disabled styles
104
+ select:disabled {
105
+ color: $input-disabled-color;
106
+ }
107
+
108
+ .select-wrapper.disabled {
109
+ span.caret,
110
+ & + label {
111
+ color: $input-disabled-color;
112
+ }
113
+ }
114
+
115
+ .select-wrapper input.select-dropdown:disabled {
116
+ color: $input-disabled-color;
117
+ cursor: default;
118
+ user-select: none;
119
+ }
120
+
121
+ .select-wrapper i {
122
+ color: $select-disabled-color;
123
+ }
124
+
125
+ .select-dropdown li.disabled,
126
+ .select-dropdown li.disabled > span,
127
+ .select-dropdown li.optgroup {
128
+ color: $select-disabled-color;
129
+ background-color: transparent;
130
+ }
131
+
132
+ .select-dropdown.dropdown-content {
133
+ li {
134
+ &.active {
135
+ background-color: transparent;
136
+ }
137
+
138
+ &:hover {
139
+ background-color: $select-option-hover;
140
+ }
141
+
142
+ &.selected {
143
+ background-color: $select-option-focus;
144
+ }
145
+ }
146
+ }
147
+
148
+ // Prefix Icons
149
+ .prefix ~ .select-wrapper {
150
+ margin-left: 3rem;
151
+ width: 92%;
152
+ width: calc(100% - 3rem);
153
+ }
154
+
155
+ .prefix ~ label { margin-left: 3rem; }
156
+
157
+ // Icons
158
+ .select-dropdown li {
159
+ img {
160
+ height: $dropdown-item-height - 10;
161
+ width: $dropdown-item-height - 10;
162
+ margin: 5px 15px;
163
+ float: right;
164
+ }
165
+ }
166
+
167
+ // Optgroup styles
168
+ .select-dropdown li.optgroup {
169
+ border-top: 1px solid $dropdown-hover-bg-color;
170
+
171
+ &.selected > span {
172
+ color: rgba(0, 0, 0, .7);
173
+ }
174
+
175
+ & > span {
176
+ color: rgba(0, 0, 0, .4);
177
+ }
178
+
179
+ & ~ li.optgroup-option {
180
+ padding-left: 1rem;
181
+ }
182
+ }