ordering-ui-admin-external 1.21.0 → 1.21.1
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/_bundles/{ordering-ui-admin.3d1c23579efceb29694a.js → ordering-ui-admin.54438e43781a1b813286.js} +2 -2
- package/_modules/components/Orders/OrdersTable/styles.js +1 -1
- package/package.json +1 -1
- package/src/components/Orders/OrdersTable/styles.js +2 -2
- /package/_bundles/{ordering-ui-admin.3d1c23579efceb29694a.js.LICENSE.txt → ordering-ui-admin.54438e43781a1b813286.js.LICENSE.txt} +0 -0
|
@@ -45,7 +45,7 @@ var Table = _styledComponents.default.table(_templateObject5 || (_templateObject
|
|
|
45
45
|
return (_props$theme$colors4 = props.theme.colors) === null || _props$theme$colors4 === void 0 ? void 0 : _props$theme$colors4.headingColor;
|
|
46
46
|
});
|
|
47
47
|
exports.Table = Table;
|
|
48
|
-
var OrderTbody = _styledComponents.default.tbody(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n border-bottom: 1px solid ", ";\n cursor: pointer;\n\n &[data-status=\"delayed\"] {\n background-color: ", ";\n td {\n border-top: 1px solid ", " !important;\n border-bottom: 1px solid ", " !important;\n }\n }\n &[data-status=\"at_risk\"] {\n background-color: ", ";\n td {\n border-top: 1px solid ", " !important;\n border-bottom: 1px solid ", " !important;\n }\n }
|
|
48
|
+
var OrderTbody = _styledComponents.default.tbody(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n border-bottom: 1px solid ", ";\n cursor: pointer;\n\n /* &[data-status=\"delayed\"] {\n background-color: ", ";\n td {\n border-top: 1px solid ", " !important;\n border-bottom: 1px solid ", " !important;\n }\n }\n &[data-status=\"at_risk\"] {\n background-color: ", ";\n td {\n border-top: 1px solid ", " !important;\n border-bottom: 1px solid ", " !important;\n }\n } */\n &:hover {\n background-color: ", ";\n }\n &.active {\n background-color: ", ";\n td {\n border-top: 1px solid ", " !important;\n border-bottom: 1px solid ", " !important;\n }\n }\n"])), function (props) {
|
|
49
49
|
return props.theme.colors.borderColor;
|
|
50
50
|
}, function (props) {
|
|
51
51
|
return props.theme.colors.danger100;
|
package/package.json
CHANGED
|
@@ -102,7 +102,7 @@ export const OrderTbody = styled.tbody`
|
|
|
102
102
|
border-bottom: 1px solid ${props => props.theme.colors.borderColor};
|
|
103
103
|
cursor: pointer;
|
|
104
104
|
|
|
105
|
-
&[data-status="delayed"] {
|
|
105
|
+
/* &[data-status="delayed"] {
|
|
106
106
|
background-color: ${props => props.theme.colors.danger100};
|
|
107
107
|
td {
|
|
108
108
|
border-top: 1px solid ${props => props.theme.colors.danger} !important;
|
|
@@ -115,7 +115,7 @@ export const OrderTbody = styled.tbody`
|
|
|
115
115
|
border-top: 1px solid ${props => props.theme.colors.warning} !important;
|
|
116
116
|
border-bottom: 1px solid ${props => props.theme.colors.warning} !important;
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
} */
|
|
119
119
|
&:hover {
|
|
120
120
|
background-color: ${props => props.theme.colors.lightPrimary};
|
|
121
121
|
}
|