@adamjanicki/ui 1.1.1 → 1.1.3
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 +1 -1
- package/style.css +13 -3
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -100,11 +100,15 @@
|
|
|
100
100
|
/* Modal */
|
|
101
101
|
--ajui-layer-backdrop-background: rgba(0, 0, 0, 0.4);
|
|
102
102
|
/* Link */
|
|
103
|
-
--ajui-link-color: #
|
|
103
|
+
--ajui-link-color: #009ef3;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
a:not(
|
|
107
|
-
|
|
106
|
+
a:focus:not(:focus-visible) {
|
|
107
|
+
outline: none;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
a:not([disabled]):focus-visible,
|
|
111
|
+
button:not([disabled]):focus-visible {
|
|
108
112
|
outline: 3px solid var(--ajui-link-color);
|
|
109
113
|
outline-offset: 0;
|
|
110
114
|
}
|
|
@@ -269,6 +273,12 @@ a {
|
|
|
269
273
|
display: flex;
|
|
270
274
|
align-items: center;
|
|
271
275
|
flex-direction: row;
|
|
276
|
+
overflow: scroll;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.ajui-icon-input input {
|
|
280
|
+
background-color: transparent;
|
|
281
|
+
width: 100%;
|
|
272
282
|
}
|
|
273
283
|
|
|
274
284
|
.ajui-input-default {
|