@archerjessop/utilities 4.6.14 → 4.6.16
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/dist/styles/base.css +1 -18
- package/dist/styles/components.css +4 -0
- package/package.json +1 -1
package/dist/styles/base.css
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
--color-danger: #dc3545;
|
|
7
7
|
--color-warning: #ffc107;
|
|
8
8
|
--color-info: #17a2b8;
|
|
9
|
+
--color-warning-background: #ffc10725;
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
|
|
@@ -161,22 +162,4 @@
|
|
|
161
162
|
/* Grid */
|
|
162
163
|
--grid-gap: var(--spacing-xl);
|
|
163
164
|
--grid-gap-small: var(--spacing-lg);
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/* Test class */
|
|
167
|
-
.test-styles {
|
|
168
|
-
background: var(--color-primary);
|
|
169
|
-
color: white;
|
|
170
|
-
padding: var(--spacing-xl) var(--spacing-xxxl);
|
|
171
|
-
border-radius: var(--border-radius);
|
|
172
|
-
font-size: var(--font-size-md);
|
|
173
|
-
font-weight: var(--font-weight-semibold);
|
|
174
|
-
border: 1px solid var(--border-color);
|
|
175
|
-
cursor: pointer;
|
|
176
|
-
display: inline-block;
|
|
177
|
-
text-decoration: none;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.test-styles:hover {
|
|
181
|
-
background: var(--color-primary-hover);
|
|
182
165
|
}
|
|
@@ -97,6 +97,10 @@
|
|
|
97
97
|
color: var(--color-dark-red) !important;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
.danger-background {
|
|
101
|
+
background-color: var(--color-warning-background) !important;
|
|
102
|
+
}
|
|
103
|
+
|
|
100
104
|
.cash-flow-negative .red-if-negative:hover {
|
|
101
105
|
color: var(--color-dark-red-hover) !important;
|
|
102
106
|
}
|