@primer/brand-css 0.65.1 → 0.66.0-rc.443f0fba
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/components/IDE/IDE.css +2 -2
- package/components/forms/ControlGroup/ControlGroup.css +1 -1
- package/components/forms/FormControl/FormControl.css +1 -1
- package/components/forms/Select/Select.css +3 -3
- package/components/forms/TextInput/TextInput.css +4 -4
- package/components/forms/Textarea/Textarea.css +3 -3
- package/components/river/river-shared.css +1 -1
- package/package.json +1 -1
package/components/IDE/IDE.css
CHANGED
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
|
|
225
225
|
.IDE--glass .IDE__Editor-tab {
|
|
226
226
|
background: transparent;
|
|
227
|
-
color: var(--brand-color-text-
|
|
227
|
+
color: var(--brand-color-text-muted);
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
.IDE--glass .IDE__Editor-tab--active {
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
|
|
243
243
|
.IDE__Editor-tab[disabled] {
|
|
244
244
|
cursor: not-allowed;
|
|
245
|
-
color: var(--brand-color-text-
|
|
245
|
+
color: var(--brand-color-text-muted) !important;
|
|
246
246
|
opacity: 0.7;
|
|
247
247
|
}
|
|
248
248
|
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.Select::-moz-placeholder {
|
|
29
|
-
color: var(--brand-color-text-
|
|
29
|
+
color: var(--brand-color-text-muted);
|
|
30
30
|
opacity: 1;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.Select::placeholder {
|
|
34
|
-
color: var(--brand-color-text-
|
|
34
|
+
color: var(--brand-color-text-muted);
|
|
35
35
|
opacity: 1;
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.Select--error {
|
|
149
|
-
border-color: var(--brand-color-
|
|
149
|
+
border-color: var(--brand-color-danger-fg);
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.TextInput::-moz-placeholder {
|
|
16
|
-
color: var(--brand-color-text-
|
|
16
|
+
color: var(--brand-color-text-muted);
|
|
17
17
|
opacity: 1;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.TextInput::placeholder {
|
|
21
|
-
color: var(--brand-color-text-
|
|
21
|
+
color: var(--brand-color-text-muted);
|
|
22
22
|
opacity: 1;
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
|
|
126
126
|
.TextInput-wrapper--error,
|
|
127
127
|
.TextInput-wrapper--error.TextInput-wrapper--disabled {
|
|
128
|
-
border-color: var(--brand-color-
|
|
128
|
+
border-color: var(--brand-color-danger-fg);
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
/*
|
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
|
|
270
270
|
.TextInput-leading-text--error,
|
|
271
271
|
.TextInput-trailing-text--error {
|
|
272
|
-
border-color: var(--brand-color-
|
|
272
|
+
border-color: var(--brand-color-danger-fg);
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.Textarea::-moz-placeholder {
|
|
16
|
-
color: var(--brand-color-text-
|
|
16
|
+
color: var(--brand-color-text-muted);
|
|
17
17
|
opacity: 1;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.Textarea::placeholder {
|
|
21
|
-
color: var(--brand-color-text-
|
|
21
|
+
color: var(--brand-color-text-muted);
|
|
22
22
|
opacity: 1;
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
.Textarea-wrapper--error,
|
|
134
134
|
.Textarea-wrapper--error.Textarea-wrapper--disabled {
|
|
135
|
-
border-color: var(--brand-color-
|
|
135
|
+
border-color: var(--brand-color-danger-fg);
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
|