@finqu/cool 1.3.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -9
- package/dist/css/cool.css +13391 -7742
- package/dist/css/cool.css.map +1 -1
- package/dist/css/cool.min.css +2 -93
- package/dist/css/cool.min.css.map +1 -1
- package/dist/js/cool.bundle.js +16051 -17050
- package/dist/js/cool.bundle.js.map +1 -1
- package/dist/js/cool.bundle.min.js +11 -18
- package/dist/js/cool.bundle.min.js.map +1 -1
- package/dist/js/cool.esm.js +3469 -4468
- package/dist/js/cool.esm.js.map +1 -1
- package/dist/js/cool.esm.min.js +2 -8
- package/dist/js/cool.esm.min.js.map +1 -1
- package/dist/js/cool.js +5083 -6089
- package/dist/js/cool.js.map +1 -1
- package/dist/js/cool.min.js +2 -8
- package/dist/js/cool.min.js.map +1 -1
- package/package.json +48 -16
- package/scss/LISENCE +15 -0
- package/scss/_badge.scss +134 -0
- package/scss/_button-group.scss +80 -0
- package/scss/_buttons.scss +304 -0
- package/scss/_dark.scss +637 -0
- package/scss/_dialog.scss +351 -0
- package/scss/_dropdown.scss +165 -0
- package/scss/_forms.scss +613 -0
- package/scss/_frame.scss +948 -0
- package/scss/_grid.scss +215 -0
- package/scss/_input-group.scss +326 -0
- package/scss/_list-group.scss +127 -0
- package/scss/_media.scss +439 -0
- package/scss/_navbar.scss +122 -0
- package/scss/_notification.scss +115 -0
- package/scss/_pagination.scss +82 -0
- package/scss/_popover.scss +61 -0
- package/scss/_reboot.scss +306 -0
- package/scss/_root.scss +848 -0
- package/scss/_section.scss +735 -0
- package/scss/_select.scss +559 -0
- package/scss/_tables.scss +611 -0
- package/scss/_tabs.scss +50 -0
- package/scss/_toast.scss +277 -0
- package/scss/_tooltip.scss +130 -0
- package/scss/_typography.scss +166 -0
- package/scss/_variables.scss +1229 -0
- package/scss/cool.scss +69 -0
- package/scss/utilities/_align.scss +51 -0
- package/scss/utilities/_animation.scss +165 -0
- package/scss/utilities/_background.scss +72 -0
- package/scss/utilities/_borders.scss +205 -0
- package/scss/utilities/_collapse.scss +28 -0
- package/scss/utilities/_cursor.scss +160 -0
- package/scss/utilities/_display.scss +116 -0
- package/scss/utilities/_embed.scss +89 -0
- package/scss/utilities/_fill.scss +79 -0
- package/scss/utilities/_filters.scss +233 -0
- package/scss/utilities/_flex.scss +216 -0
- package/scss/utilities/_grid.scss +136 -0
- package/scss/utilities/_opacity.scss +131 -0
- package/scss/utilities/_overflow.scss +242 -0
- package/scss/utilities/_perfect-scrollbar.scss +147 -0
- package/scss/utilities/_pointer-events.scss +125 -0
- package/scss/utilities/_position.scss +130 -0
- package/scss/utilities/_screen-readers.scss +95 -0
- package/scss/utilities/_shadows.scss +195 -0
- package/scss/utilities/_sizing.scss +288 -0
- package/scss/utilities/_spacing.scss +168 -0
- package/scss/utilities/_stroke.scss +124 -0
- package/scss/utilities/_text.scss +420 -0
- package/scss/utilities/_transform.scss +232 -0
- package/scss/utilities/_transitions.scss +147 -0
- package/scss/utilities/_user-select.scss +93 -0
- package/scss/utilities/_visibility.scss +66 -0
- package/scss/utilities/_z-index.scss +169 -0
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
@use "../variables" as *;
|
|
2
|
+
/* Cursor ========================================================================== */
|
|
3
|
+
|
|
4
|
+
@mixin cool-cursor {
|
|
5
|
+
.cursor-auto {
|
|
6
|
+
cursor: auto;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cursor-default {
|
|
10
|
+
cursor: default;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cursor-pointer {
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.cursor-wait {
|
|
18
|
+
cursor: wait;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.cursor-text {
|
|
22
|
+
cursor: text;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cursor-move {
|
|
26
|
+
cursor: move;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.cursor-not-allowed {
|
|
30
|
+
cursor: not-allowed;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.cursor-help {
|
|
34
|
+
cursor: help;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.cursor-progress {
|
|
38
|
+
cursor: progress;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.cursor-crosshair {
|
|
42
|
+
cursor: crosshair;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.cursor-context-menu {
|
|
46
|
+
cursor: context-menu;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.cursor-cell {
|
|
50
|
+
cursor: cell;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.cursor-copy {
|
|
54
|
+
cursor: copy;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.cursor-alias {
|
|
58
|
+
cursor: alias;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.cursor-none {
|
|
62
|
+
cursor: none;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.cursor-col-resize {
|
|
66
|
+
cursor: col-resize;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.cursor-row-resize {
|
|
70
|
+
cursor: row-resize;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.cursor-n-resize {
|
|
74
|
+
cursor: n-resize;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.cursor-e-resize {
|
|
78
|
+
cursor: e-resize;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.cursor-s-resize {
|
|
82
|
+
cursor: s-resize;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.cursor-w-resize {
|
|
86
|
+
cursor: w-resize;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.cursor-ne-resize {
|
|
90
|
+
cursor: ne-resize;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.cursor-nw-resize {
|
|
94
|
+
cursor: nw-resize;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.cursor-se-resize {
|
|
98
|
+
cursor: se-resize;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.cursor-sw-resize {
|
|
102
|
+
cursor: sw-resize;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.cursor-ew-resize {
|
|
106
|
+
cursor: ew-resize;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.cursor-ns-resize {
|
|
110
|
+
cursor: ns-resize;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.cursor-nesw-resize {
|
|
114
|
+
cursor: nesw-resize;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.cursor-nwse-resize {
|
|
118
|
+
cursor: nwse-resize;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.cursor-grab {
|
|
122
|
+
cursor: grab;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.cursor-grabbing {
|
|
126
|
+
cursor: grabbing;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.cursor-zoom-in {
|
|
130
|
+
cursor: zoom-in;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.cursor-zoom-out {
|
|
134
|
+
cursor: zoom-out;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.cursor-sortable {
|
|
138
|
+
cursor:
|
|
139
|
+
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABF0lEQ…%2BX%2BvObByYdEkFh8%2F6qXFrrfeocIk8x2VrNl9A%2F0l7Ib3y%2F5wAAAAAElFTkSuQmCC),
|
|
140
|
+
move;
|
|
141
|
+
cursor: -webkit-grab;
|
|
142
|
+
cursor: grab;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.cursor-sortable-chosen {
|
|
146
|
+
cursor:
|
|
147
|
+
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA8ElEQ…MaIrswx%2FYOXKRSUsXsh8s3Y91rlQK%2FF8IiOx%2B3vxAooqZGlRhljTAAAAAElFTkSuQmCC),
|
|
148
|
+
move;
|
|
149
|
+
cursor: -webkit-grabbing;
|
|
150
|
+
cursor: grabbing;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
@if $cool-use-utilities-layer {
|
|
155
|
+
@layer utilities {
|
|
156
|
+
@include cool-cursor;
|
|
157
|
+
}
|
|
158
|
+
} @else {
|
|
159
|
+
@include cool-cursor;
|
|
160
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
@use "../variables" as *;
|
|
2
|
+
@use "sass:map";
|
|
3
|
+
|
|
4
|
+
/* Display ========================================================================== */
|
|
5
|
+
|
|
6
|
+
@each $breakpoint in map.keys($grid-breakpoints) {
|
|
7
|
+
@include media-breakpoint-up($breakpoint) {
|
|
8
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
9
|
+
|
|
10
|
+
.d#{$infix}-none {
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.d#{$infix}-inline {
|
|
15
|
+
display: inline;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.d#{$infix}-inline-block {
|
|
19
|
+
display: inline-block;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.d#{$infix}-block {
|
|
23
|
+
display: block;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.d#{$infix}-table {
|
|
27
|
+
display: table;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.d#{$infix}-table-row {
|
|
31
|
+
display: table-row;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.d#{$infix}-table-cell {
|
|
35
|
+
display: table-cell;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.d#{$infix}-flex {
|
|
39
|
+
display: flex;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.d#{$infix}-inline-flex {
|
|
43
|
+
display: inline-flex;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.d#{$infix}-grid {
|
|
47
|
+
display: grid;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.d#{$infix}-inline-grid {
|
|
51
|
+
display: inline-grid;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.d#{$infix}-contents {
|
|
55
|
+
display: contents;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.d#{$infix}-flow-root {
|
|
59
|
+
display: flow-root;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@supports (grid-template-columns: subgrid) {
|
|
63
|
+
.d#{$infix}-subgrid {
|
|
64
|
+
display: grid;
|
|
65
|
+
grid-template-columns: subgrid;
|
|
66
|
+
grid-template-rows: subgrid;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@media print {
|
|
73
|
+
.d-print-none {
|
|
74
|
+
display: none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.d-print-inline {
|
|
78
|
+
display: inline;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.d-print-inline-block {
|
|
82
|
+
display: inline-block;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.d-print-block {
|
|
86
|
+
display: block;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.d-print-table {
|
|
90
|
+
display: table;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.d-print-table-row {
|
|
94
|
+
display: table-row;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.d-print-table-cell {
|
|
98
|
+
display: table-cell;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.d-print-flex {
|
|
102
|
+
display: flex;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.d-print-inline-flex {
|
|
106
|
+
display: inline-flex;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.d-print-grid {
|
|
110
|
+
display: grid;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.d-print-inline-grid {
|
|
114
|
+
display: inline-grid;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
@use "../variables" as *;
|
|
2
|
+
@use "sass:math";
|
|
3
|
+
/* Embed ========================================================================== */
|
|
4
|
+
|
|
5
|
+
@mixin cool-embed {
|
|
6
|
+
.embed-responsive {
|
|
7
|
+
display: block;
|
|
8
|
+
width: 100%;
|
|
9
|
+
padding: 0;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
|
|
12
|
+
&::before {
|
|
13
|
+
display: block;
|
|
14
|
+
content: "";
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.embed-responsive-21by9 {
|
|
18
|
+
position: relative;
|
|
19
|
+
|
|
20
|
+
&::before {
|
|
21
|
+
padding-top: math.percentage(math.div(9, 21));
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.embed-responsive-16by9 {
|
|
26
|
+
position: relative;
|
|
27
|
+
|
|
28
|
+
&::before {
|
|
29
|
+
padding-top: math.percentage(math.div(9, 16));
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&.embed-responsive-4by3 {
|
|
34
|
+
position: relative;
|
|
35
|
+
|
|
36
|
+
&::before {
|
|
37
|
+
padding-top: math.percentage(3 * 0.25);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&.embed-responsive-1by1 {
|
|
42
|
+
position: relative;
|
|
43
|
+
|
|
44
|
+
&::before {
|
|
45
|
+
padding-top: math.percentage(math.div(1, 1));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.embed-responsive-item,
|
|
50
|
+
iframe,
|
|
51
|
+
embed,
|
|
52
|
+
object,
|
|
53
|
+
video {
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 0;
|
|
56
|
+
bottom: 0;
|
|
57
|
+
left: 0;
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: 100%;
|
|
60
|
+
border: 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.embed-tiles {
|
|
65
|
+
display: flex;
|
|
66
|
+
flex-wrap: wrap;
|
|
67
|
+
margin: -5px;
|
|
68
|
+
position: relative;
|
|
69
|
+
|
|
70
|
+
.embed-responsive {
|
|
71
|
+
margin: 5px;
|
|
72
|
+
flex: 0 1 calc(50% - 10px);
|
|
73
|
+
@media screen and (max-width: 680px) {
|
|
74
|
+
flex: 0 1 100%;
|
|
75
|
+
}
|
|
76
|
+
@media screen and (min-width: 680px) and (max-width: 1140px) {
|
|
77
|
+
flex: 0 1 100%;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@if $cool-use-utilities-layer {
|
|
84
|
+
@layer utilities {
|
|
85
|
+
@include cool-embed;
|
|
86
|
+
}
|
|
87
|
+
} @else {
|
|
88
|
+
@include cool-embed;
|
|
89
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
@use "../variables" as *;
|
|
2
|
+
/* Fill ========================================================================== */
|
|
3
|
+
|
|
4
|
+
@mixin cool-fill {
|
|
5
|
+
.fill-current {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
}
|
|
8
|
+
.fill-transparent {
|
|
9
|
+
fill: transparent;
|
|
10
|
+
}
|
|
11
|
+
.fill-none {
|
|
12
|
+
fill: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@each $color, $value in $theme-colors {
|
|
16
|
+
.fill-#{$color} {
|
|
17
|
+
fill: var(--cool-theme-color-#{$color});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@each $color, $value in $colors {
|
|
22
|
+
.fill-#{$color} {
|
|
23
|
+
fill: var(--cool-color-#{$color});
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.fill-opacity-0 {
|
|
28
|
+
fill-opacity: 0;
|
|
29
|
+
}
|
|
30
|
+
.fill-opacity-25 {
|
|
31
|
+
fill-opacity: 0.25;
|
|
32
|
+
}
|
|
33
|
+
.fill-opacity-50 {
|
|
34
|
+
fill-opacity: 0.5;
|
|
35
|
+
}
|
|
36
|
+
.fill-opacity-75 {
|
|
37
|
+
fill-opacity: 0.75;
|
|
38
|
+
}
|
|
39
|
+
.fill-opacity-100 {
|
|
40
|
+
fill-opacity: 1;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fill-rule-nonzero {
|
|
44
|
+
fill-rule: nonzero;
|
|
45
|
+
}
|
|
46
|
+
.fill-rule-evenodd {
|
|
47
|
+
fill-rule: evenodd;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@media (hover: hover) and (pointer: fine) {
|
|
51
|
+
@each $color, $value in $theme-colors {
|
|
52
|
+
.hover\:fill-#{$color}:hover {
|
|
53
|
+
fill: var(--cool-theme-color-#{$color});
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.hover\:fill-current:hover {
|
|
58
|
+
fill: currentColor;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@each $color, $value in $theme-colors {
|
|
63
|
+
.group:hover .group-hover\:fill-#{$color} {
|
|
64
|
+
fill: var(--cool-theme-color-#{$color});
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.group:hover .group-hover\:fill-current {
|
|
69
|
+
fill: currentColor;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@if $cool-use-utilities-layer {
|
|
74
|
+
@layer utilities {
|
|
75
|
+
@include cool-fill;
|
|
76
|
+
}
|
|
77
|
+
} @else {
|
|
78
|
+
@include cool-fill;
|
|
79
|
+
}
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
@use "../variables" as *;
|
|
2
|
+
@use "sass:map";
|
|
3
|
+
/* Filters ========================================================================== */
|
|
4
|
+
|
|
5
|
+
@mixin cool-filters {
|
|
6
|
+
.blur-none {
|
|
7
|
+
filter: blur(0);
|
|
8
|
+
}
|
|
9
|
+
.blur-sm {
|
|
10
|
+
filter: blur(4px);
|
|
11
|
+
}
|
|
12
|
+
.blur {
|
|
13
|
+
filter: blur(8px);
|
|
14
|
+
}
|
|
15
|
+
.blur-md {
|
|
16
|
+
filter: blur(12px);
|
|
17
|
+
}
|
|
18
|
+
.blur-lg {
|
|
19
|
+
filter: blur(16px);
|
|
20
|
+
}
|
|
21
|
+
.blur-xl {
|
|
22
|
+
filter: blur(24px);
|
|
23
|
+
}
|
|
24
|
+
.blur-2xl {
|
|
25
|
+
filter: blur(40px);
|
|
26
|
+
}
|
|
27
|
+
.blur-3xl {
|
|
28
|
+
filter: blur(64px);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.backdrop-blur-none {
|
|
32
|
+
backdrop-filter: blur(0);
|
|
33
|
+
}
|
|
34
|
+
.backdrop-blur-sm {
|
|
35
|
+
backdrop-filter: blur(4px);
|
|
36
|
+
}
|
|
37
|
+
.backdrop-blur {
|
|
38
|
+
backdrop-filter: blur(8px);
|
|
39
|
+
}
|
|
40
|
+
.backdrop-blur-md {
|
|
41
|
+
backdrop-filter: blur(12px);
|
|
42
|
+
}
|
|
43
|
+
.backdrop-blur-lg {
|
|
44
|
+
backdrop-filter: blur(16px);
|
|
45
|
+
}
|
|
46
|
+
.backdrop-blur-xl {
|
|
47
|
+
backdrop-filter: blur(24px);
|
|
48
|
+
}
|
|
49
|
+
.backdrop-blur-2xl {
|
|
50
|
+
backdrop-filter: blur(40px);
|
|
51
|
+
}
|
|
52
|
+
.backdrop-blur-3xl {
|
|
53
|
+
backdrop-filter: blur(64px);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.brightness-0 {
|
|
57
|
+
filter: brightness(0);
|
|
58
|
+
}
|
|
59
|
+
.brightness-50 {
|
|
60
|
+
filter: brightness(0.5);
|
|
61
|
+
}
|
|
62
|
+
.brightness-75 {
|
|
63
|
+
filter: brightness(0.75);
|
|
64
|
+
}
|
|
65
|
+
.brightness-90 {
|
|
66
|
+
filter: brightness(0.9);
|
|
67
|
+
}
|
|
68
|
+
.brightness-95 {
|
|
69
|
+
filter: brightness(0.95);
|
|
70
|
+
}
|
|
71
|
+
.brightness-100 {
|
|
72
|
+
filter: brightness(1);
|
|
73
|
+
}
|
|
74
|
+
.brightness-105 {
|
|
75
|
+
filter: brightness(1.05);
|
|
76
|
+
}
|
|
77
|
+
.brightness-110 {
|
|
78
|
+
filter: brightness(1.1);
|
|
79
|
+
}
|
|
80
|
+
.brightness-125 {
|
|
81
|
+
filter: brightness(1.25);
|
|
82
|
+
}
|
|
83
|
+
.brightness-150 {
|
|
84
|
+
filter: brightness(1.5);
|
|
85
|
+
}
|
|
86
|
+
.brightness-200 {
|
|
87
|
+
filter: brightness(2);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.contrast-0 {
|
|
91
|
+
filter: contrast(0);
|
|
92
|
+
}
|
|
93
|
+
.contrast-50 {
|
|
94
|
+
filter: contrast(0.5);
|
|
95
|
+
}
|
|
96
|
+
.contrast-75 {
|
|
97
|
+
filter: contrast(0.75);
|
|
98
|
+
}
|
|
99
|
+
.contrast-100 {
|
|
100
|
+
filter: contrast(1);
|
|
101
|
+
}
|
|
102
|
+
.contrast-125 {
|
|
103
|
+
filter: contrast(1.25);
|
|
104
|
+
}
|
|
105
|
+
.contrast-150 {
|
|
106
|
+
filter: contrast(1.5);
|
|
107
|
+
}
|
|
108
|
+
.contrast-200 {
|
|
109
|
+
filter: contrast(2);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.grayscale-0 {
|
|
113
|
+
filter: grayscale(0);
|
|
114
|
+
}
|
|
115
|
+
.grayscale {
|
|
116
|
+
filter: grayscale(100%);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.hue-rotate-0 {
|
|
120
|
+
filter: hue-rotate(0deg);
|
|
121
|
+
}
|
|
122
|
+
.hue-rotate-15 {
|
|
123
|
+
filter: hue-rotate(15deg);
|
|
124
|
+
}
|
|
125
|
+
.hue-rotate-30 {
|
|
126
|
+
filter: hue-rotate(30deg);
|
|
127
|
+
}
|
|
128
|
+
.hue-rotate-60 {
|
|
129
|
+
filter: hue-rotate(60deg);
|
|
130
|
+
}
|
|
131
|
+
.hue-rotate-90 {
|
|
132
|
+
filter: hue-rotate(90deg);
|
|
133
|
+
}
|
|
134
|
+
.hue-rotate-180 {
|
|
135
|
+
filter: hue-rotate(180deg);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.invert-0 {
|
|
139
|
+
filter: invert(0);
|
|
140
|
+
}
|
|
141
|
+
.invert {
|
|
142
|
+
filter: invert(100%);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.saturate-0 {
|
|
146
|
+
filter: saturate(0);
|
|
147
|
+
}
|
|
148
|
+
.saturate-50 {
|
|
149
|
+
filter: saturate(0.5);
|
|
150
|
+
}
|
|
151
|
+
.saturate-100 {
|
|
152
|
+
filter: saturate(1);
|
|
153
|
+
}
|
|
154
|
+
.saturate-150 {
|
|
155
|
+
filter: saturate(1.5);
|
|
156
|
+
}
|
|
157
|
+
.saturate-200 {
|
|
158
|
+
filter: saturate(2);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.sepia-0 {
|
|
162
|
+
filter: sepia(0);
|
|
163
|
+
}
|
|
164
|
+
.sepia {
|
|
165
|
+
filter: sepia(100%);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.drop-shadow-sm {
|
|
169
|
+
filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
|
|
170
|
+
}
|
|
171
|
+
.drop-shadow {
|
|
172
|
+
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
|
|
173
|
+
}
|
|
174
|
+
.drop-shadow-md {
|
|
175
|
+
filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
|
|
176
|
+
}
|
|
177
|
+
.drop-shadow-lg {
|
|
178
|
+
filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
|
|
179
|
+
}
|
|
180
|
+
.drop-shadow-xl {
|
|
181
|
+
filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
|
|
182
|
+
}
|
|
183
|
+
.drop-shadow-2xl {
|
|
184
|
+
filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
|
|
185
|
+
}
|
|
186
|
+
.drop-shadow-none {
|
|
187
|
+
filter: drop-shadow(0 0 #0000);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.filter-none {
|
|
191
|
+
filter: none;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@each $breakpoint in map.keys($grid-breakpoints) {
|
|
195
|
+
@include media-breakpoint-up($breakpoint) {
|
|
196
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
197
|
+
|
|
198
|
+
.blur#{$infix}-none {
|
|
199
|
+
filter: blur(0);
|
|
200
|
+
}
|
|
201
|
+
.blur#{$infix}-sm {
|
|
202
|
+
filter: blur(4px);
|
|
203
|
+
}
|
|
204
|
+
.blur#{$infix} {
|
|
205
|
+
filter: blur(8px);
|
|
206
|
+
}
|
|
207
|
+
.blur#{$infix}-md {
|
|
208
|
+
filter: blur(12px);
|
|
209
|
+
}
|
|
210
|
+
.blur#{$infix}-lg {
|
|
211
|
+
filter: blur(16px);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.brightness#{$infix}-100 {
|
|
215
|
+
filter: brightness(1);
|
|
216
|
+
}
|
|
217
|
+
.grayscale#{$infix} {
|
|
218
|
+
filter: grayscale(100%);
|
|
219
|
+
}
|
|
220
|
+
.invert#{$infix} {
|
|
221
|
+
filter: invert(100%);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
@if $cool-use-utilities-layer {
|
|
228
|
+
@layer utilities {
|
|
229
|
+
@include cool-filters;
|
|
230
|
+
}
|
|
231
|
+
} @else {
|
|
232
|
+
@include cool-filters;
|
|
233
|
+
}
|