@flux-ui/statistics 3.1.6 → 3.1.8
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/index.css +11 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/css/Base.module.scss +3 -1
- package/src/css/PercentageBar.module.scss +8 -1
package/dist/index.css
CHANGED
|
@@ -160,8 +160,10 @@
|
|
|
160
160
|
scale: 0.75;
|
|
161
161
|
transition: color 0.2s var(--swift-out);
|
|
162
162
|
}
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
@media (hover: hover) {
|
|
164
|
+
.statistics-base-header-info:hover {
|
|
165
|
+
color: var(--foreground-prominent);
|
|
166
|
+
}
|
|
165
167
|
}
|
|
166
168
|
|
|
167
169
|
.statistics-base-header-info + .statistics-base-header-icon {
|
|
@@ -729,8 +731,14 @@
|
|
|
729
731
|
transition: var(--transition-default);
|
|
730
732
|
transition-property: height, margin, flex-grow, opacity;
|
|
731
733
|
}
|
|
734
|
+
@media (hover: hover) {
|
|
735
|
+
.statistics-percentage-bar-segment:hover {
|
|
736
|
+
height: 16px;
|
|
737
|
+
margin-top: -2px;
|
|
738
|
+
margin-bottom: -2px;
|
|
739
|
+
}
|
|
740
|
+
}
|
|
732
741
|
|
|
733
|
-
.statistics-percentage-bar-segment:hover,
|
|
734
742
|
.statistics-percentage-bar-segment.is-hovered {
|
|
735
743
|
height: 16px;
|
|
736
744
|
margin-top: -2px;
|