@unifiedsoftware/styles 2.0.0-beta.2 → 2.0.0-beta.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unifiedsoftware/styles",
3
- "version": "2.0.0-beta.2",
3
+ "version": "2.0.0-beta.21",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "index.scss",
@@ -419,6 +419,51 @@ $rounded-sizes: (
419
419
  );
420
420
  }
421
421
 
422
+ .#{$prefix}glow {
423
+ position: absolute;
424
+ inset: 0px;
425
+ border-radius: inherit;
426
+ overflow: hidden;
427
+ outline-width: var(--#{$prefix}glow-border-width);
428
+ outline-style: solid;
429
+ outline-color: var(--#{$prefix}glow-border-color);
430
+ opacity: var(--#{$prefix}glow-opacity);
431
+ pointer-events: none;
432
+ z-index: var(--#{$prefix}glow-z-index);
433
+ }
434
+
435
+ :not([hidden]):hover > .#{$prefix}glow {
436
+ outline-width: var(--#{$prefix}glow-hover-border-width, var(--#{$prefix}glow-border-width));
437
+ outline-color: var(--#{$prefix}glow-hover-border-color, var(--#{$prefix}glow-border-color));
438
+ opacity: var(--#{$prefix}glow-hover-opacity, var(--#{$prefix}glow-opacity));
439
+ }
440
+
441
+ :not([hidden]):active > .#{$prefix}glow {
442
+ outline-width: var(
443
+ --#{$prefix}glow-active-border-width,
444
+ var(--#{$prefix}glow-hover-border-width, var(--#{$prefix}glow-border-width))
445
+ );
446
+ outline-color: var(
447
+ --#{$prefix}glow-active-border-color,
448
+ var(--#{$prefix}glow-hover-border-color, var(--#{$prefix}glow-border-color))
449
+ );
450
+ opacity: var(--#{$prefix}glow-active-opacity, var(--#{$prefix}glow-hover-opacity, var(--#{$prefix}glow-opacity)));
451
+ }
452
+
453
+ [class*='--focus'] > .#{$prefix}glow,
454
+ [class*='--focus']:hover > .#{$prefix}glow,
455
+ :not([hidden]):focus > .#{$prefix}glow {
456
+ outline-width: var(
457
+ --#{$prefix}glow-focus-border-width,
458
+ var(--#{$prefix}glow-hover-border-width, var(--#{$prefix}glow-border-width))
459
+ );
460
+ outline-color: var(
461
+ --#{$prefix}glow-focus-border-color,
462
+ var(--#{$prefix}glow-hover-border-color, var(--#{$prefix}glow-border-color))
463
+ );
464
+ opacity: var(--#{$prefix}glow-focus-opacity, var(--#{$prefix}glow-hover-opacity, var(--#{$prefix}glow-opacity)));
465
+ }
466
+
422
467
  .#{$prefix}surface {
423
468
  position: absolute;
424
469
  inset: 0px;
@@ -58,6 +58,7 @@
58
58
  flex-grow: 1;
59
59
  display: flex;
60
60
  flex-direction: column;
61
+ overflow: hidden;
61
62
  }
62
63
 
63
64
  &--centered &__start-content,
@@ -88,6 +89,8 @@
88
89
  display: -webkit-box;
89
90
  -webkit-box-orient: vertical;
90
91
  -webkit-line-clamp: 1;
92
+ text-overflow: ellipsis;
93
+ word-break: break-word;
91
94
  }
92
95
 
93
96
  &__subtitle {
@@ -100,6 +103,8 @@
100
103
  display: -webkit-box;
101
104
  -webkit-box-orient: vertical;
102
105
  -webkit-line-clamp: 1;
106
+ text-overflow: ellipsis;
107
+ word-break: break-word;
103
108
  }
104
109
  }
105
110
 
@@ -45,6 +45,8 @@
45
45
  }
46
46
 
47
47
  &-group {
48
+ border-radius: var(--#{$prefix}button-border-radius);
49
+ position: relative;
48
50
  display: inline-flex;
49
51
  align-items: center;
50
52
  }
@@ -36,8 +36,8 @@
36
36
  justify-content: center;
37
37
  align-items: center;
38
38
  transition:
39
- color 0.1s ease-in-out 0.05s,
40
- border-color 0.1s ease-in-out 0.05s;
39
+ color 0.05s ease-in-out 0.025s,
40
+ border-color 0.05s ease-in-out 0.025s;
41
41
  overflow: hidden;
42
42
  }
43
43
 
@@ -69,8 +69,8 @@
69
69
  background-color: var(--#{$prefix}checkbox-tap-background);
70
70
  transform: scale(0);
71
71
  transition:
72
- opacity 0.1s ease-in-out 0.05s,
73
- transform 0.1s ease-in-out 0.05s;
72
+ opacity 0.05s ease-in-out 0.025s,
73
+ transform 0.05s ease-in-out 0.025s;
74
74
  }
75
75
 
76
76
  &--checked &__tap {
@@ -82,8 +82,8 @@
82
82
  opacity: 1;
83
83
  transform: scale(0);
84
84
  transition:
85
- opacity 0.1s ease-in-out 0.05s,
86
- transform 0.1s ease-in-out 0.05s;
85
+ opacity 0.05s ease-in-out 0.025s,
86
+ transform 0.05s ease-in-out 0.025s;
87
87
  }
88
88
 
89
89
  &--checked .#{$prefix}icon {
@@ -59,6 +59,7 @@
59
59
  font-weight: var(--#{$prefix}description-text-font-weight);
60
60
  color: var(--#{$prefix}description-text-color);
61
61
  opacity: var(--#{$prefix}description-text-opacity);
62
+ word-break: break-word;
62
63
  }
63
64
 
64
65
  &-empty {
@@ -9,3 +9,31 @@
9
9
  justify-content: center;
10
10
  align-items: center;
11
11
  }
12
+
13
+ .#{$prefix}opacity-0 {
14
+ opacity: 0;
15
+ }
16
+
17
+ .#{$prefix}opacity-60 {
18
+ opacity: 0.6;
19
+ }
20
+
21
+ .#{$prefix}opacity-100 {
22
+ opacity: 1;
23
+ }
24
+
25
+ .#{$prefix}pointer {
26
+ cursor: pointer;
27
+ }
28
+
29
+ .#{$prefix}hover-opacity-60 {
30
+ &:hover {
31
+ opacity: 0.6;
32
+ }
33
+ }
34
+
35
+ .#{$prefix}hover-opacity-100 {
36
+ &:hover {
37
+ opacity: 1;
38
+ }
39
+ }
@@ -13,12 +13,13 @@
13
13
  background-color: var(--#{$prefix}input-background);
14
14
  z-index: 0;
15
15
  transition: all 0.2s ease-in-out;
16
+ cursor: text;
16
17
 
17
18
  &:focus-visible {
18
19
  outline: none;
19
20
  }
20
21
 
21
- &:not(&--filterable) {
22
+ &--selectable {
22
23
  cursor: pointer;
23
24
  }
24
25
 
@@ -91,6 +92,7 @@
91
92
  display: flex;
92
93
  align-items: center;
93
94
  z-index: 1;
95
+ overflow: hidden;
94
96
 
95
97
  &--chips {
96
98
  padding-block: var(--#{$prefix}input-padding-y);
@@ -154,7 +156,7 @@
154
156
  }
155
157
 
156
158
  &__placeholder {
157
- opacity: 0.6;
159
+ color: var(--#{$prefix}input-placeholder-color);
158
160
  }
159
161
 
160
162
  &__start-content,
@@ -174,14 +176,25 @@
174
176
  }
175
177
 
176
178
  &__start-content {
177
- margin-right: calc(-1 * var(--#{$prefix}input-icon-size));
178
- // padding-block: var(--#{$prefix}input-padding-y);
179
- padding-inline: calc(0.75 * var(--#{$prefix}input-padding-x));
179
+ // margin-right: calc(-1 * var(--#{$prefix}input-icon-size));
180
+ padding-left: calc(0.75 * var(--#{$prefix}input-padding-x));
181
+ padding-right: calc(0.375 * var(--#{$prefix}input-padding-x));
180
182
  }
181
183
 
182
184
  &__end-content {
183
- margin-left: calc(-1 * var(--#{$prefix}input-icon-size));
184
- // padding-block: var(--#{$prefix}input-padding-y);
185
+ // margin-left: calc(-1 * var(--#{$prefix}input-icon-size));
185
186
  padding-inline: calc(0.75 * var(--#{$prefix}input-padding-x));
186
187
  }
188
+
189
+ &--start-content &__content &__field,
190
+ &--start-content &__content &__search,
191
+ &--start-content &__content &__placeholder {
192
+ padding-left: 0;
193
+ }
194
+
195
+ &--end-content &__content &__field,
196
+ &--end-content &__content &__search,
197
+ &--end-content &__content &__placeholder {
198
+ padding-right: 0;
199
+ }
187
200
  }
@@ -46,7 +46,7 @@
46
46
  display: flex;
47
47
  justify-content: center;
48
48
  align-items: center;
49
- gap: calc(var(--#{$prefix}list-item-gap) * 0.5);
49
+ gap: var(--#{$prefix}list-item-gap);
50
50
  }
51
51
 
52
52
  &__content {
@@ -127,7 +127,8 @@
127
127
  font-size: var(--#{$prefix}nav-rail-item-label-font-size);
128
128
  font-weight: var(--#{$prefix}nav-rail-item-label-font-weight);
129
129
  line-height: var(--#{$prefix}nav-rail-item-label-line-height);
130
- text-wrap: nowrap;
130
+ width: 100%;
131
+ text-align: center;
131
132
  overflow: hidden;
132
133
  display: -webkit-box;
133
134
  -webkit-box-orient: vertical;
@@ -29,8 +29,8 @@
29
29
  justify-content: center;
30
30
  align-items: center;
31
31
  transition:
32
- color 0.1s ease-in-out 0.05s,
33
- border-color 0.1s ease-in-out 0.05s;
32
+ color 0.05s ease-in-out 0.025s,
33
+ border-color 0.05s ease-in-out 0.025s;
34
34
  overflow: hidden;
35
35
  }
36
36
 
@@ -59,8 +59,8 @@
59
59
  background-color: var(--#{$prefix}radio-tap-background);
60
60
  transform: scale(0);
61
61
  transition:
62
- opacity 0.1s ease-in-out 0.05s,
63
- transform 0.1s ease-in-out 0.05s;
62
+ opacity 0.05s ease-in-out 0.025s,
63
+ transform 0.05s ease-in-out 0.025s;
64
64
  }
65
65
 
66
66
  &--checked &__tap {
@@ -72,8 +72,8 @@
72
72
  opacity: 1;
73
73
  transform: scale(0);
74
74
  transition:
75
- opacity 0.1s ease-in-out 0.05s,
76
- transform 0.1s ease-in-out 0.05s;
75
+ opacity 0.05s ease-in-out 0.025s,
76
+ transform 0.05s ease-in-out 0.025s;
77
77
  }
78
78
 
79
79
  &--checked .#{$prefix}icon {
@@ -3,8 +3,40 @@
3
3
  .#{$prefix}steps {
4
4
  flex-shrink: 0;
5
5
  display: grid;
6
- grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
7
6
  overflow: hidden;
7
+
8
+ &--horizontal {
9
+ grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
10
+ }
11
+
12
+ &--vertical {
13
+ grid-template-columns: 1;
14
+ gap: 2rem;
15
+ }
16
+
17
+ &--vertical .#{$prefix}step {
18
+ flex-direction: row;
19
+ gap: 1.5rem;
20
+ }
21
+
22
+ &--vertical .#{$prefix}step__content {
23
+ padding: 4px 0px;
24
+ }
25
+
26
+ &--vertical .#{$prefix}step__title,
27
+ &--vertical .#{$prefix}step__subtitle {
28
+ margin: 0;
29
+ text-align: start;
30
+ }
31
+
32
+ &--vertical &__indicator {
33
+ width: 1px;
34
+ height: 100%;
35
+ top: -50%;
36
+ bottom: 50%;
37
+ left: auto;
38
+ right: auto;
39
+ }
8
40
  }
9
41
 
10
42
  .#{$prefix}step {
@@ -60,6 +92,12 @@
60
92
  border-color: var(--#{$prefix}_current-step-border-color);
61
93
  }
62
94
 
95
+ &__content {
96
+ display: flex;
97
+ flex-direction: column;
98
+ gap: 0.5rem;
99
+ }
100
+
63
101
  &__title {
64
102
  flex-shrink: 0;
65
103
  max-width: 150px;
@@ -97,7 +135,8 @@
97
135
  right: 50%;
98
136
  top: 50%;
99
137
  left: -50%;
100
- border-bottom: 1px solid var(--#{$prefix}step-divider-color);
138
+ width: 100%;
139
+ height: 1px;
101
140
  background-color: var(--#{$prefix}step-divider-color);
102
141
  z-index: -1;
103
142
 
@@ -35,7 +35,7 @@
35
35
  background-color: var(--#{$prefix}switch-control-color);
36
36
  display: inline-flex;
37
37
  align-items: center;
38
- transition: all 0.15s ease-in-out;
38
+ transition: all 0.05s ease-in-out;
39
39
  user-select: none;
40
40
  -webkit-tap-highlight-color: transparent;
41
41
  }
@@ -62,7 +62,7 @@
62
62
  transform: translateX(var(--#{$prefix}switch-control-padding));
63
63
  border-radius: var(--#{$prefix}switch-thumb-border-radius);
64
64
  background-color: var(--#{$prefix}switch-thumb-color);
65
- transition: all 0.15s ease-in-out;
65
+ transition: all 0.05s ease-in-out;
66
66
  }
67
67
 
68
68
  &--checked &__thumb {
@@ -66,7 +66,7 @@
66
66
 
67
67
  &__content {
68
68
  position: relative;
69
- height: 40px;
69
+ height: var(--#{$prefix}tab-height);
70
70
  display: inline-flex;
71
71
  flex-direction: row;
72
72
  justify-content: center;
@@ -46,7 +46,6 @@ $colors-map: (primary, secondary, success, info, warning, danger);
46
46
  --#{$prefix}accordion-header-padding-y: 0.685rem;
47
47
  --#{$prefix}accordion-header-padding-x: 1rem;
48
48
  --#{$prefix}accordion-header-padding-level: 1.25rem;
49
- --#{$prefix}accordion-header-font-size: 12px;
50
49
  --#{$prefix}accordion-header-gap: 1rem;
51
50
 
52
51
  --#{$prefix}accordion-header-title-font-size: 12px;
@@ -61,6 +60,10 @@ $colors-map: (primary, secondary, success, info, warning, danger);
61
60
  --#{$prefix}accordion-body-line-height: 18px;
62
61
  }
63
62
 
63
+ .#{$prefix}accordion--xs .#{$prefix}accordion-header .#{$prefix}icon:not(.#{$prefix}button .#{$prefix}icon) {
64
+ --#{$prefix}icon-font-size-default: 16px;
65
+ }
66
+
64
67
  .#{$prefix}accordion--sm {
65
68
  --#{$prefix}accordion-splitted-gap: 0.5rem;
66
69
 
@@ -70,7 +73,7 @@ $colors-map: (primary, secondary, success, info, warning, danger);
70
73
  --#{$prefix}accordion-header-padding-level: 1.25rem;
71
74
  --#{$prefix}accordion-header-gap: 1rem;
72
75
 
73
- --#{$prefix}accordion-header-title-font-size: 0.875rem;
76
+ --#{$prefix}accordion-header-title-font-size: 13px;
74
77
  --#{$prefix}accordion-header-title-line-height: 20px;
75
78
 
76
79
  --#{$prefix}accordion-header-subtitle-font-size: 0.75rem;
@@ -82,6 +85,10 @@ $colors-map: (primary, secondary, success, info, warning, danger);
82
85
  --#{$prefix}accordion-body-line-height: 20px;
83
86
  }
84
87
 
88
+ .#{$prefix}accordion--sm .#{$prefix}accordion-header .#{$prefix}icon:not(.#{$prefix}button .#{$prefix}icon) {
89
+ --#{$prefix}icon-font-size-default: 20px;
90
+ }
91
+
85
92
  .#{$prefix}accordion--md {
86
93
  --#{$prefix}accordion-splitted-gap: 0.75rem;
87
94
 
@@ -89,11 +96,10 @@ $colors-map: (primary, secondary, success, info, warning, danger);
89
96
  --#{$prefix}accordion-header-padding-y: 0.625rem;
90
97
  --#{$prefix}accordion-header-padding-x: 1rem;
91
98
  --#{$prefix}accordion-header-padding-level: 1.25rem;
92
- --#{$prefix}accordion-header-font-size: 0.75rem;
93
99
  --#{$prefix}accordion-header-gap: 1rem;
94
100
  --#{$prefix}accordion-header-content-gap: 0.5rem;
95
101
 
96
- --#{$prefix}accordion-header-title-font-size: 0.875rem;
102
+ --#{$prefix}accordion-header-title-font-size: 15px;
97
103
  --#{$prefix}accordion-header-title-line-height: 24px;
98
104
 
99
105
  --#{$prefix}accordion-header-subtitle-font-size: 0.8125rem;
@@ -119,7 +125,7 @@ $colors-map: (primary, secondary, success, info, warning, danger);
119
125
  --#{$prefix}accordion-header-font-size: 0.75rem;
120
126
  --#{$prefix}accordion-header-gap: 1rem;
121
127
 
122
- --#{$prefix}accordion-header-title-font-size: 1rem;
128
+ --#{$prefix}accordion-header-title-font-size: 16px;
123
129
  --#{$prefix}accordion-header-title-line-height: 24px;
124
130
 
125
131
  --#{$prefix}accordion-header-subtitle-font-size: 0.8125rem;
@@ -131,6 +137,10 @@ $colors-map: (primary, secondary, success, info, warning, danger);
131
137
  --#{$prefix}accordion-body-line-height: 24px;
132
138
  }
133
139
 
140
+ .#{$prefix}accordion--lg .#{$prefix}accordion-header .#{$prefix}icon:not(.#{$prefix}button .#{$prefix}icon) {
141
+ --#{$prefix}icon-font-size-default: 28px;
142
+ }
143
+
134
144
  .#{$prefix}accordion--xl {
135
145
  --#{$prefix}accordion-splitted-gap: 1.25rem;
136
146
 
@@ -138,10 +148,9 @@ $colors-map: (primary, secondary, success, info, warning, danger);
138
148
  --#{$prefix}accordion-header-padding-y: 0.625rem;
139
149
  --#{$prefix}accordion-header-padding-x: 1rem;
140
150
  --#{$prefix}accordion-header-padding-level: 1.25rem;
141
- --#{$prefix}accordion-header-font-size: 0.75rem;
142
151
  --#{$prefix}accordion-header-gap: 1rem;
143
152
 
144
- --#{$prefix}accordion-header-title-font-size: 1rem;
153
+ --#{$prefix}accordion-header-title-font-size: 18px;
145
154
  --#{$prefix}accordion-header-title-line-height: 24px;
146
155
 
147
156
  --#{$prefix}accordion-header-subtitle-font-size: 0.8125rem;
@@ -153,6 +162,10 @@ $colors-map: (primary, secondary, success, info, warning, danger);
153
162
  --#{$prefix}accordion-body-line-height: 24px;
154
163
  }
155
164
 
165
+ .#{$prefix}accordion--xl .#{$prefix}accordion-header .#{$prefix}icon:not(.#{$prefix}button .#{$prefix}icon) {
166
+ --#{$prefix}icon-font-size-default: 36px;
167
+ }
168
+
156
169
  .#{$prefix}accordion-item {
157
170
  & > .#{$prefix}outline {
158
171
  --#{$prefix}outline-border-width: 0px;
@@ -162,7 +175,7 @@ $colors-map: (primary, secondary, success, info, warning, danger);
162
175
  }
163
176
 
164
177
  .#{$prefix}accordion-item--selected {
165
- --#{$prefix}accordion-header-title-font-weight: 700;
178
+ --#{$prefix}accordion-header-title-font-weight: 600;
166
179
  }
167
180
 
168
181
  .#{$prefix}accordion-body {
@@ -17,7 +17,7 @@ html {
17
17
  --#{$prefix}button-divider-color: #fff;
18
18
 
19
19
  &--xs {
20
- --#{$prefix}button-height: 22px;
20
+ --#{$prefix}button-height: 24px;
21
21
  --#{$prefix}button-padding-y: 0;
22
22
  --#{$prefix}button-padding-x: 0.625rem;
23
23
  --#{$prefix}button-font-size: 0.75rem;
@@ -30,7 +30,7 @@ html {
30
30
  }
31
31
 
32
32
  &--sm {
33
- --#{$prefix}button-height: 26px;
33
+ --#{$prefix}button-height: 28px;
34
34
  --#{$prefix}button-padding-y: 0;
35
35
  --#{$prefix}button-padding-x: 0.75rem;
36
36
  --#{$prefix}button-font-size: 0.75rem;
@@ -43,10 +43,10 @@ html {
43
43
  }
44
44
 
45
45
  &--md {
46
- --#{$prefix}button-height: 30px;
46
+ --#{$prefix}button-height: 32px;
47
47
  --#{$prefix}button-padding-y: 0;
48
48
  --#{$prefix}button-padding-x: 0.875rem;
49
- --#{$prefix}button-font-size: 0.875rem;
49
+ --#{$prefix}button-font-size: 0.8125rem;
50
50
  --#{$prefix}button-border-radius: 6px;
51
51
  --#{$prefix}button-gap: 0.375rem;
52
52
 
@@ -56,7 +56,7 @@ html {
56
56
  }
57
57
 
58
58
  &--lg {
59
- --#{$prefix}button-height: 34px;
59
+ --#{$prefix}button-height: 36px;
60
60
  --#{$prefix}button-padding-y: 0;
61
61
  --#{$prefix}button-padding-x: 1rem;
62
62
  --#{$prefix}button-font-size: 0.875rem;
@@ -110,6 +110,7 @@ html {
110
110
 
111
111
  & > .#{$prefix}outline {
112
112
  --#{$prefix}outline-border-width: 1px;
113
+ --#{$prefix}outline-border-width: 0px;
113
114
  --#{$prefix}outline-border-color: transparent;
114
115
  }
115
116
 
@@ -129,9 +130,9 @@ html {
129
130
  }
130
131
 
131
132
  & > .#{$prefix}outline {
132
- --#{$prefix}outline-border-width: 1px;
133
+ --#{$prefix}outline-border-width: 0px;
133
134
  --#{$prefix}outline-border-color: var(--#{$prefix}secondary-color);
134
- --#{$prefix}outline-opacity: 0.16;
135
+ --#{$prefix}outline-opacity: 1;
135
136
  }
136
137
  }
137
138
 
@@ -146,8 +147,9 @@ html {
146
147
  }
147
148
 
148
149
  & > .#{$prefix}outline {
149
- --#{$prefix}outline-border-width: 1px;
150
- --#{$prefix}outline-border-color: transparent;
150
+ --#{$prefix}outline-border-width: 0px;
151
+ --#{$prefix}outline-border-color: currentColor;
152
+ --#{$prefix}outline-opacity: 0.24;
151
153
  }
152
154
  }
153
155
 
@@ -254,6 +256,15 @@ html {
254
256
  --#{$prefix}_focus-hover-overlay-opacity: 0.24;
255
257
  --#{$prefix}_focus-active-overlay-opacity: 0.32;
256
258
  }
259
+
260
+ & > .#{$prefix}outline {
261
+ box-shadow:
262
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
263
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
264
+ rgba(255, 255, 255, 0.2) 0px 0.75px 0px 0px inset,
265
+ rgba(0, 0, 0, 0.05) 0px 1px 2px 0px,
266
+ rgba(0, 0, 0, 0.2) 0px 0px 0px 1px;
267
+ }
257
268
  }
258
269
 
259
270
  .#{$prefix}button--bordered.#{$prefix}button--#{$color} {
@@ -304,4 +315,30 @@ html {
304
315
  }
305
316
  }
306
317
  }
318
+
319
+ .#{$prefix}button--filled > .#{$prefix}outline {
320
+ box-shadow:
321
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
322
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
323
+ rgba(255, 255, 255, 0.2) 0px 0.75px 0px 0px inset,
324
+ var(--#{$prefix}button-background) 0px 1px 2px 0px,
325
+ var(--#{$prefix}button-background) 0px 0px 0px 1px;
326
+ }
327
+
328
+ .#{$prefix}button--flat > .#{$prefix}outline {
329
+ box-shadow:
330
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
331
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
332
+ rgba(255, 255, 255, 0.2) 0px 0.75px 0px 0px inset,
333
+ var(--#{$prefix}outline-border-color) 0px 1px 2px 0px,
334
+ var(--#{$prefix}outline-border-color) 0px 0px 0px 1px;
335
+ }
336
+
337
+ .#{$prefix}button--outlined > .#{$prefix}outline {
338
+ box-shadow:
339
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
340
+ rgba(0, 0, 0, 0) 0px 0px 0px 0px,
341
+ rgba(0, 0, 0, 0.12) 0px 1px 2px 0px,
342
+ rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
343
+ }
307
344
  }
@@ -15,7 +15,7 @@
15
15
  --#{$prefix}card-header-title-font-weight: 500;
16
16
  --#{$prefix}card-header-title-color: var(--#{$prefix}title-color);
17
17
 
18
- --#{$prefix}card-header-subtitle-font-weight: 400;
18
+ --#{$prefix}card-header-subtitle-font-weight: 500;
19
19
  --#{$prefix}card-header-subtitle-color: var(--#{$prefix}subtitle-color);
20
20
 
21
21
  --#{$prefix}card-body-color: var(--#{$prefix}body-color);
@@ -52,12 +52,10 @@
52
52
  --#{$prefix}card-header-gap: 0.5rem;
53
53
  --#{$prefix}card-header-content-gap: 0.25rem;
54
54
 
55
- --#{$prefix}card-header-title-font-size: 11px;
56
- --#{$prefix}card-header-title-font-weight: 500;
55
+ --#{$prefix}card-header-title-font-size: 12px;
57
56
  --#{$prefix}card-header-title-line-height: 14px;
58
57
 
59
58
  --#{$prefix}card-header-subtitle-font-size: 10px;
60
- --#{$prefix}card-header-subtitle-font-weight: 500;
61
59
  --#{$prefix}card-header-subtitle-line-height: 14px;
62
60
 
63
61
  --#{$prefix}card-body-padding-y: 0.375rem;
@@ -85,12 +83,10 @@
85
83
  --#{$prefix}card-header-gap: 0.75rem;
86
84
  --#{$prefix}card-header-content-gap: 0.5rem;
87
85
 
88
- --#{$prefix}card-header-title-font-size: 12px;
89
- --#{$prefix}card-header-title-font-weight: 500;
86
+ --#{$prefix}card-header-title-font-size: 13px;
90
87
  --#{$prefix}card-header-title-line-height: 16px;
91
88
 
92
89
  --#{$prefix}card-header-subtitle-font-size: 11px;
93
- --#{$prefix}card-header-subtitle-font-weight: 500;
94
90
  --#{$prefix}card-header-subtitle-line-height: 16px;
95
91
 
96
92
  --#{$prefix}card-body-padding-y: 0.375rem;
@@ -118,7 +114,7 @@
118
114
  --#{$prefix}card-header-gap: 0.75rem;
119
115
  --#{$prefix}card-header-content-gap: 0.5rem;
120
116
 
121
- --#{$prefix}card-header-title-font-size: 13px;
117
+ --#{$prefix}card-header-title-font-size: 15px;
122
118
  --#{$prefix}card-header-title-line-height: 16px;
123
119
 
124
120
  --#{$prefix}card-header-subtitle-font-size: 12px;
@@ -149,7 +145,7 @@
149
145
  --#{$prefix}card-header-gap: 1rem;
150
146
  --#{$prefix}card-header-content-gap: 0.75rem;
151
147
 
152
- --#{$prefix}card-header-title-font-size: 14px;
148
+ --#{$prefix}card-header-title-font-size: 16px;
153
149
  --#{$prefix}card-header-title-line-height: 18px;
154
150
 
155
151
  --#{$prefix}card-header-subtitle-font-size: 13px;
@@ -177,7 +173,7 @@
177
173
  --#{$prefix}card-header-gap: 1rem;
178
174
  --#{$prefix}card-header-content-gap: 0.875rem;
179
175
 
180
- --#{$prefix}card-header-title-font-size: 16px;
176
+ --#{$prefix}card-header-title-font-size: 18px;
181
177
  --#{$prefix}card-header-title-line-height: 20px;
182
178
 
183
179
  --#{$prefix}card-header-subtitle-font-size: 15px;
@@ -205,7 +201,7 @@
205
201
  --#{$prefix}card-header-gap: 1rem;
206
202
  --#{$prefix}card-header-content-gap: 1rem;
207
203
 
208
- --#{$prefix}card-header-title-font-size: 18px;
204
+ --#{$prefix}card-header-title-font-size: 20px;
209
205
  --#{$prefix}card-header-title-line-height: 24px;
210
206
 
211
207
  --#{$prefix}card-header-subtitle-font-size: 16px;
@@ -34,6 +34,10 @@
34
34
 
35
35
  --#{$prefix}checkbox-tap-background: var(--#{$prefix}primary-color);
36
36
 
37
+ & .#{$prefix}icon {
38
+ --#{$prefix}icon-color: inherit !important;
39
+ }
40
+
37
41
  &--xs {
38
42
  --#{$prefix}checkbox-gap: 0.375rem;
39
43
 
@@ -2,7 +2,8 @@
2
2
 
3
3
  $colors-map: (
4
4
  primary: var(--#{$prefix}primary-color),
5
- secondary: var(--#{$prefix}secondary-color),
5
+ //secondary: var(--#{$prefix}secondary-color),
6
+ secondary: rgba(0, 0, 0, 0.54),
6
7
  success: var(--#{$prefix}success-color),
7
8
  info: var(--#{$prefix}info-color),
8
9
  warning: var(--#{$prefix}warning-color),