@bcgov-sso/common-react-components 1.20.6 → 1.20.7
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/cjs/index.js
CHANGED
|
@@ -12631,6 +12631,7 @@ const Alert = (props) => (React__default["default"].createElement(DefaultAlert,
|
|
|
12631
12631
|
|
|
12632
12632
|
const TABLE_BACKGROUND_COLOR = '#ededed';
|
|
12633
12633
|
const TABLE_ROW_ACTIVE_COLOR = '#4950FA';
|
|
12634
|
+
const TABLE_ROW_HOVER_COLOR = '#fdb913';
|
|
12634
12635
|
const TABLE_ROW_HEIGHT = 40;
|
|
12635
12636
|
const TABLE_ROW_HEIGHT_MINI = 40;
|
|
12636
12637
|
const TABLE_ROW_SPACING = 5;
|
|
@@ -12675,16 +12676,16 @@ const Table = qe.table `
|
|
|
12675
12676
|
|
|
12676
12677
|
${(props) => !props.readOnly &&
|
|
12677
12678
|
`
|
|
12678
|
-
&:hover {
|
|
12679
|
-
background-color: ${TABLE_ROW_ACTIVE_COLOR};
|
|
12680
|
-
color: #fff;
|
|
12681
|
-
cursor: pointer;
|
|
12682
|
-
}
|
|
12683
12679
|
&.active {
|
|
12684
12680
|
background-color: ${TABLE_ROW_ACTIVE_COLOR};
|
|
12685
12681
|
color: #fff;
|
|
12686
12682
|
font-weight: bold;
|
|
12687
12683
|
}
|
|
12684
|
+
&:hover {
|
|
12685
|
+
background-color: ${TABLE_ROW_HOVER_COLOR};
|
|
12686
|
+
color: #fff;
|
|
12687
|
+
cursor: pointer;
|
|
12688
|
+
}
|
|
12688
12689
|
`}
|
|
12689
12690
|
}
|
|
12690
12691
|
}
|