@agorapulse/ui-theme 0.0.4 → 1.0.0-SNAPSHOT
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/agorapulse-ui-theme-1.0.0-SNAPSHOT.tgz +0 -0
- package/assets/desktop_variables.css +616 -0
- package/assets/mobile_variables.css +616 -0
- package/assets/style/_colors.scss +84 -78
- package/assets/style/_font-face.scss +15 -10
- package/assets/style/_helpers.scss +5 -3
- package/assets/style/_input.scss +52 -0
- package/assets/style/_link.scss +70 -0
- package/assets/style/_mat-typography.scss +45 -48
- package/assets/style/_select.scss +631 -0
- package/assets/style/_tooltip.scss +138 -0
- package/assets/style/_variables.scss +11 -12
- package/assets/style/components-custom-style/_clickable-text.scss +1 -1
- package/assets/style/components-custom-style/_form.scss +17 -18
- package/assets/style/components-custom-style/_input.scss +38 -38
- package/assets/style/components-custom-style/_mat-button-toggle-group.scss +8 -12
- package/assets/style/components-custom-style/_mat-button.scss +243 -49
- package/assets/style/components-custom-style/_mat-dialog.scss +6 -5
- package/assets/style/components-custom-style/_mat-expansion-panel.scss +8 -9
- package/assets/style/components-custom-style/_mat-list.scss +4 -4
- package/assets/style/components-custom-style/_mat-menu.scss +44 -33
- package/assets/style/components-custom-style/_mat-table.scss +3 -0
- package/assets/style/components-custom-style/_ng-select.scss +57 -5
- package/assets/style/theme.scss +43 -18
- package/package.json +23 -18
- package/src/README.md +42 -0
- package/src/build.js +6 -0
- package/src/desktop_config.js +18 -0
- package/src/mobile_config.js +18 -0
- package/src/tokens/components/badge.json +53 -0
- package/src/tokens/components/button.json +37 -0
- package/src/tokens/components/counter.json +108 -0
- package/src/tokens/components/dot-stepper.json +52 -0
- package/src/tokens/components/icon-button.json +18 -0
- package/src/tokens/components/infobox.json +139 -0
- package/src/tokens/components/input.json +304 -0
- package/src/tokens/components/label.json +56 -0
- package/src/tokens/components/link.json +127 -0
- package/src/tokens/components/radio.json +11 -0
- package/src/tokens/components/select.json +279 -0
- package/src/tokens/components/snackbar.json +71 -0
- package/src/tokens/components/split-button.json +34 -0
- package/src/tokens/components/status-card.json +187 -0
- package/src/tokens/components/status.json +120 -0
- package/src/tokens/components/tag.json +194 -0
- package/src/tokens/components/tooltip.json +36 -0
- package/src/tokens/reference/animation.json +18 -0
- package/src/tokens/reference/border-radius.json +15 -0
- package/src/tokens/reference/color.json +151 -0
- package/src/tokens/reference/font.json +69 -0
- package/src/tokens/reference/spacing.json +33 -0
- package/src/tokens/reference/transition.json +9 -0
- package/src/tokens/system/border.json +28 -0
- package/src/tokens/system/color.json +198 -0
- package/src/tokens/system/desktop/button.json +9 -0
- package/src/tokens/system/desktop/icon-button.json +15 -0
- package/src/tokens/system/icon.json +12 -0
- package/src/tokens/system/mobile/button.json +9 -0
- package/src/tokens/system/mobile/icon-button.json +15 -0
- package/src/tokens/system/radio.json +11 -0
- package/src/tokens/system/text.json +173 -0
- package/agorapulse-ui-theme-0.0.4.tgz +0 -0
- package/assets/style/_grid.scss +0 -166
- package/assets/style/components-custom-style/_mat-checkbox.scss +0 -103
- package/assets/style/components-custom-style/_mat-radio-button.scss +0 -86
- package/assets/style/components-custom-style/_mat-slide-toggle.scss +0 -45
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
.ap-tooltip {
|
|
2
|
+
--ap-arrow-width: 16px;
|
|
3
|
+
--ap-arrow-height: 8px;
|
|
4
|
+
--ap-arrow-offset: 10px;
|
|
5
|
+
|
|
6
|
+
width: fit-content;
|
|
7
|
+
max-width: 350px;
|
|
8
|
+
background: var(--comp-tooltip-text-color-main-default-bg);
|
|
9
|
+
border-radius: var(--ref-border-radius-md);
|
|
10
|
+
position: absolute;
|
|
11
|
+
z-index: 9999999;
|
|
12
|
+
animation: fadeIn var(--ref-animation-short) ease-in-out;
|
|
13
|
+
|
|
14
|
+
@keyframes fadeIn {
|
|
15
|
+
0% {
|
|
16
|
+
opacity: 0;
|
|
17
|
+
}
|
|
18
|
+
100% {
|
|
19
|
+
opacity: 1;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ap-content-container {
|
|
24
|
+
padding: var(--ref-spacing-xxs) var(--ref-spacing-xs);
|
|
25
|
+
border-radius: var(--ref-border-radius-md);
|
|
26
|
+
|
|
27
|
+
.ap-tooltip-text {
|
|
28
|
+
color: var(--comp-tooltip-text-default-color);
|
|
29
|
+
font-family: var(--comp-tooltip-text-style-font-family);
|
|
30
|
+
font-size: var(--comp-tooltip-text-style-size);
|
|
31
|
+
font-weight: var(--comp-tooltip-text-style-weight);
|
|
32
|
+
line-height: var(--comp-tooltip-text-style-line-height);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.ap-tooltip-arrow {
|
|
36
|
+
color: var(--ref-color-grey-100);
|
|
37
|
+
position: absolute;
|
|
38
|
+
z-index: 10000;
|
|
39
|
+
width: var(--ap-arrow-width);
|
|
40
|
+
height: var(--ap-arrow-height);
|
|
41
|
+
display: block;
|
|
42
|
+
|
|
43
|
+
path {
|
|
44
|
+
fill: currentColor;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
&.ap-tooltip-top,
|
|
49
|
+
&.ap-tooltip-bottom {
|
|
50
|
+
.ap-tooltip-arrow {
|
|
51
|
+
margin: auto;
|
|
52
|
+
right: 0;
|
|
53
|
+
left: 0;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&.ap-tooltip-top,
|
|
58
|
+
&.ap-tooltip-bottom,
|
|
59
|
+
&.ap-tooltip-top-left,
|
|
60
|
+
&.ap-tooltip-top-right,
|
|
61
|
+
&.ap-tooltip-bottom-left,
|
|
62
|
+
&.ap-tooltip-bottom-right {
|
|
63
|
+
.ap-tooltip-arrow {
|
|
64
|
+
transform: translateY(7px) rotate(180deg);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&.ap-tooltip-top-left,
|
|
69
|
+
&.ap-tooltip-bottom-left {
|
|
70
|
+
.ap-tooltip-arrow {
|
|
71
|
+
left: var(--ap-arrow-offset);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&.ap-tooltip-top-right,
|
|
76
|
+
&.ap-tooltip-bottom-right {
|
|
77
|
+
.ap-tooltip-arrow {
|
|
78
|
+
right: var(--ap-arrow-offset);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&.ap-tooltip-bottom,
|
|
83
|
+
&.ap-tooltip-bottom-right,
|
|
84
|
+
&.ap-tooltip-bottom-left {
|
|
85
|
+
.ap-tooltip-arrow {
|
|
86
|
+
top: 0;
|
|
87
|
+
rotate: 180deg;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&.ap-tooltip-top,
|
|
92
|
+
&.ap-tooltip-top-right,
|
|
93
|
+
&.ap-tooltip-top-left {
|
|
94
|
+
.ap-tooltip-arrow {
|
|
95
|
+
bottom: 0;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&.ap-tooltip-right {
|
|
100
|
+
.ap-tooltip-arrow {
|
|
101
|
+
top: 0;
|
|
102
|
+
left: 0;
|
|
103
|
+
transform: scale(-1) translateY(-11px) translateX(calc((var(--ap-tooltip-height) / 2 - 4px) * -1));
|
|
104
|
+
rotate: 90deg;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&.ap-tooltip-left {
|
|
109
|
+
.ap-tooltip-arrow {
|
|
110
|
+
top: 0;
|
|
111
|
+
right: 0;
|
|
112
|
+
rotate: 90deg;
|
|
113
|
+
transform: translateY(-11px) translateX(calc((var(--ap-tooltip-height) / 2 - 4px)));
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&.ap-tooltip-custom-template {
|
|
118
|
+
background-color: var(--ref-color-white);
|
|
119
|
+
filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.08));
|
|
120
|
+
|
|
121
|
+
.ap-tooltip-text {
|
|
122
|
+
color: var(--ref-color-grey-100);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.ap-tooltip-arrow {
|
|
126
|
+
color: var(--ref-color-white);
|
|
127
|
+
position: absolute;
|
|
128
|
+
z-index: 10000;
|
|
129
|
+
width: var(--ap-arrow-width);
|
|
130
|
+
height: var(--ap-arrow-height);
|
|
131
|
+
display: block;
|
|
132
|
+
|
|
133
|
+
path {
|
|
134
|
+
fill: currentColor;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@use
|
|
1
|
+
@use 'sass:math';
|
|
2
2
|
|
|
3
3
|
@import 'colors';
|
|
4
4
|
|
|
5
|
-
$font-family:
|
|
6
|
-
$font-family-header:
|
|
5
|
+
$font-family: 'Averta';
|
|
6
|
+
$font-family-header: 'Averta';
|
|
7
7
|
$font-weight: 400;
|
|
8
8
|
$font-weight-semibold: 600;
|
|
9
9
|
$font-weight-bold: 700;
|
|
@@ -21,7 +21,6 @@ $font-size: 14px;
|
|
|
21
21
|
$font-line-height: 17px;
|
|
22
22
|
$font-size-icon: 16px;
|
|
23
23
|
$font-size-s: 12px;
|
|
24
|
-
$font-line-height-s: 15px;
|
|
25
24
|
$font-line-height-s: 18px;
|
|
26
25
|
$font-size-sl: 10px;
|
|
27
26
|
$font-line-height-sm: 14px;
|
|
@@ -39,7 +38,7 @@ $color-info: map_get($colors-electric-blue, 100);
|
|
|
39
38
|
$color-success: map_get($colors-green, 100);
|
|
40
39
|
$color-warning: map_get($colors-yellow, 100);
|
|
41
40
|
|
|
42
|
-
$link-color:
|
|
41
|
+
$link-color: map_get($colors-electric-blue, 100);
|
|
43
42
|
|
|
44
43
|
$padding-xxl: 48px;
|
|
45
44
|
$padding-xl: 32px;
|
|
@@ -71,6 +70,7 @@ $form-input-hover-border-color: map_get($colors-grey, 40);
|
|
|
71
70
|
// Avatar
|
|
72
71
|
|
|
73
72
|
$avatar-size-large: 64px;
|
|
73
|
+
$avatar-size-large-normal: 56px;
|
|
74
74
|
$avatar-size-normal: 48px;
|
|
75
75
|
$avatar-size-medium: 40px;
|
|
76
76
|
$avatar-size-medium-sm: 36px;
|
|
@@ -90,13 +90,12 @@ $small-screen: 600px !default;
|
|
|
90
90
|
$medium-screen: 992px !default;
|
|
91
91
|
$large-screen: 1200px !default;
|
|
92
92
|
|
|
93
|
-
$medium-and-up:
|
|
94
|
-
$large-and-up:
|
|
95
|
-
$extra-large-and-up:
|
|
96
|
-
$small-and-down:
|
|
97
|
-
$medium-and-down:
|
|
98
|
-
$medium-only:
|
|
99
|
-
|
|
93
|
+
$medium-and-up: 'only screen and (min-width : #{$small-screen-up})' !default;
|
|
94
|
+
$large-and-up: 'only screen and (min-width : #{$medium-screen-up})' !default;
|
|
95
|
+
$extra-large-and-up: 'only screen and (min-width : #{$large-screen-up})' !default;
|
|
96
|
+
$small-and-down: 'only screen and (max-width : #{$small-screen})' !default;
|
|
97
|
+
$medium-and-down: 'only screen and (max-width : #{$medium-screen})' !default;
|
|
98
|
+
$medium-only: 'only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})' !default;
|
|
100
99
|
|
|
101
100
|
// Grid
|
|
102
101
|
|
|
@@ -1,35 +1,34 @@
|
|
|
1
|
-
@import '../variables';
|
|
2
|
-
|
|
3
|
-
%small-font {
|
|
4
|
-
font-size: $font-size-s;
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
line-height: 15px;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
1
|
.form-field {
|
|
10
|
-
margin-bottom:
|
|
2
|
+
margin-bottom: var(--ref-spacing-sm);
|
|
11
3
|
|
|
12
|
-
label:not(
|
|
13
|
-
|
|
14
|
-
|
|
4
|
+
label:not(ap-radio label, ap-select label, ap-input label, ap-textarea-label) {
|
|
5
|
+
font-size: var(--comp-forms-label-size);
|
|
6
|
+
font-weight: var(--comp-forms-label-font-weight);
|
|
7
|
+
line-height: var(--comp-forms-label-line-height);
|
|
8
|
+
font-family: var(--comp-forms-label-font-family);
|
|
9
|
+
color: var(--comp-forms-label-text-color);
|
|
15
10
|
display: block;
|
|
16
|
-
margin-bottom:
|
|
11
|
+
margin-bottom: var(--comp-forms-label-padding-bottom);
|
|
17
12
|
}
|
|
18
|
-
|
|
13
|
+
|
|
14
|
+
&.required label:not(ap-radio label):after {
|
|
19
15
|
content: '*';
|
|
20
16
|
}
|
|
21
17
|
}
|
|
22
18
|
|
|
23
19
|
.form-message,
|
|
24
20
|
.form-field-message {
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
font-size: var(--comp-forms-status-text-size);
|
|
22
|
+
font-weight: var(--comp-forms-status-text-font-weight);
|
|
23
|
+
line-height: var(--comp-forms-status-text-line-height);
|
|
24
|
+
font-family: var(--comp-forms-status-text-font-family);
|
|
25
|
+
margin: var(--comp-forms-label-padding-bottom) 0;
|
|
27
26
|
|
|
28
27
|
&.invalid {
|
|
29
|
-
color:
|
|
28
|
+
color: var(--comp-forms-status-text-error-color);
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
&.valid {
|
|
33
|
-
color:
|
|
32
|
+
color: var(--comp-forms-status-text-success-color);
|
|
34
33
|
}
|
|
35
34
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
textarea,
|
|
2
|
+
select,
|
|
3
|
+
input,
|
|
4
|
+
button {
|
|
4
5
|
outline: none;
|
|
5
6
|
&.full-width {
|
|
6
7
|
box-sizing: border-box;
|
|
@@ -9,41 +10,45 @@ textarea, select, input, button {
|
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
form.full-width {
|
|
12
|
-
textarea,
|
|
13
|
+
textarea,
|
|
14
|
+
select,
|
|
15
|
+
input,
|
|
16
|
+
button {
|
|
13
17
|
box-sizing: border-box;
|
|
14
18
|
width: 100%;
|
|
15
19
|
}
|
|
16
20
|
}
|
|
17
21
|
|
|
18
|
-
input,
|
|
19
|
-
|
|
20
|
-
border
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
font-
|
|
24
|
-
font-
|
|
25
|
-
|
|
22
|
+
input,
|
|
23
|
+
textarea {
|
|
24
|
+
border: 1px solid var(--comp-input-border-default-color);
|
|
25
|
+
border-radius: var(--comp-input-border-radius);
|
|
26
|
+
color: var(--comp-input-text-default-color);
|
|
27
|
+
font-family: var(--comp-input-text-font-family);
|
|
28
|
+
font-size: var(--comp-input-text-size);
|
|
29
|
+
font-weight: var(--comp-input-text-font-weight);
|
|
30
|
+
padding: var(--ref-spacing-xxs) var(--ref-spacing-sm);
|
|
31
|
+
|
|
26
32
|
&::placeholder {
|
|
27
|
-
color:
|
|
33
|
+
color: var(--comp-input-text-placeholder-color);
|
|
28
34
|
}
|
|
29
35
|
// Disabled
|
|
30
36
|
&:disabled {
|
|
31
|
-
background:
|
|
32
|
-
|
|
33
|
-
color: $form-input-placeholder-font-color;
|
|
37
|
+
background-color: var(--comp-input-fill-disabled-color);
|
|
38
|
+
color: var(--comp-input-text-disabled-color);
|
|
34
39
|
}
|
|
35
40
|
// Focus
|
|
36
41
|
&:focus:not(.transparent) {
|
|
37
|
-
border-color:
|
|
42
|
+
border-color: var(--comp-input-border-focused-color);
|
|
38
43
|
}
|
|
39
44
|
// Invalid
|
|
40
|
-
&.invalid:not([disabled]):not(.transparent),
|
|
41
|
-
&.ng-invalid.ng-dirty.ng-touched:not([disabled]):not(.transparent) {
|
|
42
|
-
border: 1px solid
|
|
45
|
+
&.invalid:not([disabled]):not(.transparent):not(:focus):not(:hover),
|
|
46
|
+
&.ng-invalid.ng-dirty.ng-touched:not([disabled]):not(:focus):not(:hover):not(.transparent) {
|
|
47
|
+
border: 1px solid var(--comp-input-border-error-color);
|
|
43
48
|
}
|
|
44
49
|
// Valid
|
|
45
|
-
&.valid:not([disabled]):not(.transparent) {
|
|
46
|
-
border: 1px solid
|
|
50
|
+
&.valid:not([disabled]):not(:focus):not(:hover):not(.transparent) {
|
|
51
|
+
border: 1px solid var(--comp-input-border-success-color);
|
|
47
52
|
}
|
|
48
53
|
|
|
49
54
|
// Transparent
|
|
@@ -58,7 +63,7 @@ input, textarea {
|
|
|
58
63
|
|
|
59
64
|
// Hover
|
|
60
65
|
&:not(.transparent):not(.valid):not(.invalid):not(:focus):not([disabled]):hover {
|
|
61
|
-
border-color:
|
|
66
|
+
border-color: var(--comp-input-border-hover-color);
|
|
62
67
|
}
|
|
63
68
|
}
|
|
64
69
|
|
|
@@ -66,12 +71,12 @@ input, textarea {
|
|
|
66
71
|
display: flex;
|
|
67
72
|
flex-direction: row;
|
|
68
73
|
width: 180px;
|
|
69
|
-
color:
|
|
70
|
-
border-radius:
|
|
74
|
+
color: var(--comp-input-text-default-color);
|
|
75
|
+
border-radius: var(--comp-input-border-radius);
|
|
71
76
|
|
|
72
77
|
input {
|
|
73
78
|
box-sizing: border-box;
|
|
74
|
-
padding:
|
|
79
|
+
padding: var(--ref-spacing-xxs) var(--ref-spacing-lg) var(--ref-spacing-xxs) var(--ref-spacing-sm);
|
|
75
80
|
width: 100%;
|
|
76
81
|
}
|
|
77
82
|
|
|
@@ -81,21 +86,16 @@ input, textarea {
|
|
|
81
86
|
right: 26px;
|
|
82
87
|
height: 15px;
|
|
83
88
|
width: 0;
|
|
84
|
-
color:
|
|
89
|
+
color: var(--comp-input-icon-color);
|
|
85
90
|
}
|
|
86
91
|
|
|
87
92
|
input:focus + .input-group-append {
|
|
88
|
-
color:
|
|
93
|
+
color: var(--comp-input-border-focused-color);
|
|
89
94
|
}
|
|
90
95
|
|
|
91
96
|
&.disabled {
|
|
92
|
-
color:
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
.input-group-append {
|
|
96
|
-
background: map_get($colors-grey, 5);
|
|
97
|
-
color: map_get($colors-grey, 20);
|
|
98
|
-
}
|
|
97
|
+
background-color: var(--comp-input-fill-disabled-color);
|
|
98
|
+
color: var(--comp-input-border-disabled-color);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
&.full-width {
|
|
@@ -105,15 +105,15 @@ input, textarea {
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
form.submitted {
|
|
108
|
-
input,
|
|
108
|
+
input,
|
|
109
|
+
textarea {
|
|
109
110
|
// Invalid
|
|
110
111
|
&.ng-invalid:not([disabled]):not(.transparent) {
|
|
111
|
-
border: 1px solid
|
|
112
|
+
border: 1px solid var(--comp-input-border-error-color);
|
|
112
113
|
}
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
|
|
116
|
-
|
|
117
117
|
textarea {
|
|
118
118
|
resize: none;
|
|
119
119
|
}
|
|
@@ -3,24 +3,22 @@
|
|
|
3
3
|
.mat-button-toggle-group {
|
|
4
4
|
height: 36px;
|
|
5
5
|
border-radius: 4px;
|
|
6
|
-
border:none;
|
|
6
|
+
border: none;
|
|
7
7
|
|
|
8
8
|
.mat-button-toggle {
|
|
9
9
|
margin-left: -1px;
|
|
10
|
-
height: 34px;
|
|
11
|
-
line-height: 34px;
|
|
12
10
|
color: map_get($colors-grey, 100);
|
|
13
11
|
font-weight: bold;
|
|
14
|
-
border: 1px solid
|
|
12
|
+
border: 1px solid map_get($colors-grey, 20);
|
|
15
13
|
|
|
16
14
|
&.mat-button-toggle-checked {
|
|
17
15
|
color: map_get($colors-electric-blue, 100);
|
|
18
|
-
border: 1px solid map_get($colors-electric-blue, 100);
|
|
16
|
+
border: 1px solid map_get($colors-electric-blue, 100) !important;
|
|
19
17
|
background: white;
|
|
20
18
|
z-index: 1;
|
|
21
19
|
|
|
22
20
|
&:hover {
|
|
23
|
-
border: 1px solid map_get($colors-electric-blue, 100);
|
|
21
|
+
border: 1px solid map_get($colors-electric-blue, 100) !important;
|
|
24
22
|
color: map_get($colors-electric-blue, 100);
|
|
25
23
|
background: white;
|
|
26
24
|
z-index: 1;
|
|
@@ -31,23 +29,22 @@
|
|
|
31
29
|
&:hover {
|
|
32
30
|
background: white;
|
|
33
31
|
box-sizing: border-box;
|
|
34
|
-
border: 1px solid map_get($colors-electric-blue, 100);
|
|
32
|
+
border: 1px solid map_get($colors-electric-blue, 100) !important;
|
|
35
33
|
color: map_get($colors-grey, 100);
|
|
36
34
|
height: 100%;
|
|
37
35
|
z-index: 1;
|
|
38
36
|
.mat-button-toggle-focus-overlay {
|
|
39
|
-
opacity: 0!important;
|
|
37
|
+
opacity: 0 !important;
|
|
40
38
|
}
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
button {
|
|
44
|
-
margin-top: -2px;
|
|
45
42
|
height: 36px;
|
|
46
43
|
line-height: 36px;
|
|
47
44
|
}
|
|
48
45
|
|
|
49
46
|
span {
|
|
50
|
-
|
|
47
|
+
padding: 0 $padding-m;
|
|
51
48
|
height: 36px;
|
|
52
49
|
line-height: 36px;
|
|
53
50
|
&.mat-button-toggle-focus-overlay {
|
|
@@ -58,11 +55,10 @@
|
|
|
58
55
|
.mat-button-toggle:first-of-type {
|
|
59
56
|
border-bottom-left-radius: $border-radius;
|
|
60
57
|
border-top-left-radius: $border-radius;
|
|
61
|
-
margin-left:
|
|
58
|
+
margin-left: 0 !important;
|
|
62
59
|
}
|
|
63
60
|
.mat-button-toggle:last-of-type {
|
|
64
61
|
border-bottom-right-radius: $border-radius;
|
|
65
62
|
border-top-right-radius: $border-radius;
|
|
66
63
|
}
|
|
67
64
|
}
|
|
68
|
-
|