@pie-players/pie-theme 0.3.51 → 0.3.53
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/components.css +10 -2
- package/package.json +1 -1
package/dist/components.css
CHANGED
|
@@ -106,7 +106,11 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.pie-image-scroll:focus-visible {
|
|
109
|
-
outline: 2px solid
|
|
109
|
+
outline: 2px solid
|
|
110
|
+
var(
|
|
111
|
+
--pie-focus-ring-color,
|
|
112
|
+
var(--pie-focus-outline, var(--pie-button-focus-outline, #1a73e8))
|
|
113
|
+
);
|
|
110
114
|
outline-offset: 2px;
|
|
111
115
|
}
|
|
112
116
|
|
|
@@ -130,7 +134,11 @@
|
|
|
130
134
|
}
|
|
131
135
|
|
|
132
136
|
.pie-table-scroll:focus-visible {
|
|
133
|
-
outline: 2px solid
|
|
137
|
+
outline: 2px solid
|
|
138
|
+
var(
|
|
139
|
+
--pie-focus-ring-color,
|
|
140
|
+
var(--pie-focus-outline, var(--pie-button-focus-outline, #1a73e8))
|
|
141
|
+
);
|
|
134
142
|
outline-offset: 2px;
|
|
135
143
|
}
|
|
136
144
|
|