@agorapulse/ui-theme 15.0.16 → 15.0.18
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-15.0.18.tgz +0 -0
- package/assets/desktop_variables.css +2 -0
- package/assets/mobile_variables.css +2 -0
- package/assets/style/components-custom-style/_ng-select.scss +16 -4
- package/package.json +1 -1
- package/src/tokens/component/radio.json +11 -0
- package/src/tokens/reference/transition.json +9 -0
- package/src/tokens/system/radio.json +11 -0
- package/agorapulse-ui-theme-15.0.16.tgz +0 -0
|
Binary file
|
|
@@ -124,6 +124,7 @@
|
|
|
124
124
|
--ref-spacing-xl: 40px;
|
|
125
125
|
--ref-spacing-xxl: 48px;
|
|
126
126
|
--ref-spacing-xxxl: 60px;
|
|
127
|
+
--ref-transition-duration: 250ms;
|
|
127
128
|
--sys-border-color-default: #EAECEF;
|
|
128
129
|
--sys-border-color-active: #178DFE;
|
|
129
130
|
--sys-border-color-error: #E81313;
|
|
@@ -180,6 +181,7 @@
|
|
|
180
181
|
--sys-color-feature-lock-text: #6554C0;
|
|
181
182
|
--sys-icon-sm: 14px;
|
|
182
183
|
--sys-icon-md: 16px;
|
|
184
|
+
--sys-radio-transition-duration: 250ms;
|
|
183
185
|
--sys-text-color-default: #344563;
|
|
184
186
|
--sys-text-color-light: #5D6A82;
|
|
185
187
|
--sys-text-color-error: #E81313;
|
|
@@ -124,6 +124,7 @@
|
|
|
124
124
|
--ref-spacing-xl: 40px;
|
|
125
125
|
--ref-spacing-xxl: 48px;
|
|
126
126
|
--ref-spacing-xxxl: 60px;
|
|
127
|
+
--ref-transition-duration: 250ms;
|
|
127
128
|
--sys-border-color-default: #EAECEF;
|
|
128
129
|
--sys-border-color-active: #178DFE;
|
|
129
130
|
--sys-border-color-error: #E81313;
|
|
@@ -180,6 +181,7 @@
|
|
|
180
181
|
--sys-color-feature-lock-text: #6554C0;
|
|
181
182
|
--sys-icon-sm: 14px;
|
|
182
183
|
--sys-icon-md: 16px;
|
|
184
|
+
--sys-radio-transition-duration: 250ms;
|
|
183
185
|
--sys-text-color-default: #344563;
|
|
184
186
|
--sys-text-color-light: #5D6A82;
|
|
185
187
|
--sys-text-color-error: #E81313;
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.ng-select {
|
|
11
|
-
div,
|
|
11
|
+
div,
|
|
12
|
+
span {
|
|
12
13
|
font-weight: normal !important;
|
|
13
14
|
}
|
|
14
15
|
input {
|
|
@@ -39,6 +40,11 @@
|
|
|
39
40
|
ap-symbol {
|
|
40
41
|
padding-right: $padding-s;
|
|
41
42
|
}
|
|
43
|
+
ap-avatar {
|
|
44
|
+
ap-symbol {
|
|
45
|
+
padding: 0 !important;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
42
48
|
}
|
|
43
49
|
}
|
|
44
50
|
}
|
|
@@ -53,7 +59,7 @@
|
|
|
53
59
|
&.ng-select-single {
|
|
54
60
|
.ng-select-container {
|
|
55
61
|
.ng-value-container {
|
|
56
|
-
.ng-input
|
|
62
|
+
.ng-input {
|
|
57
63
|
padding-left: $padding-m;
|
|
58
64
|
}
|
|
59
65
|
}
|
|
@@ -94,7 +100,8 @@ form.submitted {
|
|
|
94
100
|
}
|
|
95
101
|
.ng-dropdown-panel-items {
|
|
96
102
|
padding: $padding-s 0;
|
|
97
|
-
.ng-option,
|
|
103
|
+
.ng-option,
|
|
104
|
+
.ng-optgroup {
|
|
98
105
|
padding: $padding-s $padding-m;
|
|
99
106
|
span {
|
|
100
107
|
color: $form-control-selected-font-color;
|
|
@@ -102,10 +109,15 @@ form.submitted {
|
|
|
102
109
|
ap-symbol {
|
|
103
110
|
padding-right: $padding-s;
|
|
104
111
|
}
|
|
112
|
+
ap-avatar {
|
|
113
|
+
ap-symbol {
|
|
114
|
+
padding: 0 !important;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
105
117
|
.checkmark {
|
|
106
118
|
ap-symbol {
|
|
107
119
|
padding-right: 0;
|
|
108
|
-
}
|
|
120
|
+
}
|
|
109
121
|
}
|
|
110
122
|
}
|
|
111
123
|
div {
|
package/package.json
CHANGED
|
Binary file
|