mediacube-ui 0.1.368 → 0.1.369
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/patterns/McTable/McTable/McTable.vue +11 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.369](https://github.com/MediaCubeCo/mcui/compare/v0.1.368...v0.1.369) (2025-03-25)
|
|
6
|
+
|
|
5
7
|
### [0.1.368](https://github.com/MediaCubeCo/mcui/compare/v0.1.367...v0.1.368) (2025-03-25)
|
|
6
8
|
|
|
7
9
|
### [0.1.367](https://github.com/MediaCubeCo/mcui/compare/v0.1.366...v0.1.367) (2025-03-24)
|
package/package.json
CHANGED
|
@@ -776,17 +776,18 @@ export default {
|
|
|
776
776
|
}
|
|
777
777
|
|
|
778
778
|
.vxe-body--row {
|
|
779
|
-
&.row
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
779
|
+
&.row {
|
|
780
|
+
&--current {
|
|
781
|
+
td,
|
|
782
|
+
th {
|
|
783
|
+
background-color: color-mix(in srgb, var(--color-main) 10%, #fff 90%) !important;
|
|
784
|
+
}
|
|
783
785
|
}
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
background-color: $color-hover-gray;
|
|
786
|
+
&--hover {
|
|
787
|
+
td:last-child,
|
|
788
|
+
td:first-child {
|
|
789
|
+
background-color: $color-hover-gray;
|
|
790
|
+
}
|
|
790
791
|
}
|
|
791
792
|
}
|
|
792
793
|
}
|