@monolith-forensics/monolith-ui 1.3.26 → 1.3.28
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.
|
@@ -30,15 +30,21 @@ export const TR = styled.div `
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
&[data-focused="true"] {
|
|
33
|
-
border
|
|
34
|
-
|
|
33
|
+
border: 1px solid transparent;
|
|
34
|
+
outline: 1px solid ${({ theme }) => theme.palette.primary.main};
|
|
35
|
+
outline-offset: -1px;
|
|
35
36
|
|
|
36
37
|
.mfui-td {
|
|
37
|
-
border-
|
|
38
|
-
|
|
38
|
+
border-bottom: 1px solid transparent;
|
|
39
|
+
background-color: ${({ theme }) => theme.palette.primary.main}20;
|
|
39
40
|
}
|
|
40
41
|
}
|
|
41
42
|
|
|
43
|
+
// Select the row above the focused row
|
|
44
|
+
&:has(+ .mfui-tr[data-focused="true"]) .mfui-td {
|
|
45
|
+
border-bottom: 1px solid transparent;
|
|
46
|
+
}
|
|
47
|
+
|
|
42
48
|
&:hover > .mfui-td {
|
|
43
49
|
background-color: ${({ theme }) => theme.palette.action.hover};
|
|
44
50
|
}
|
package/dist/theme/variants.js
CHANGED
|
@@ -177,11 +177,11 @@ const lightVariant = {
|
|
|
177
177
|
error: "#f44336",
|
|
178
178
|
},
|
|
179
179
|
text: {
|
|
180
|
-
default: "#
|
|
181
|
-
primary:
|
|
182
|
-
|
|
180
|
+
default: "#000",
|
|
181
|
+
primary: customBlue[500],
|
|
182
|
+
error: "#f44336",
|
|
183
|
+
secondary: "#a1a1a1",
|
|
183
184
|
alternate: "#000",
|
|
184
|
-
error: "#FFF",
|
|
185
185
|
},
|
|
186
186
|
},
|
|
187
187
|
};
|
|
@@ -294,7 +294,8 @@ const darkVariant = merge(lightVariant, {
|
|
|
294
294
|
error: "#f44336",
|
|
295
295
|
},
|
|
296
296
|
text: {
|
|
297
|
-
primary:
|
|
297
|
+
primary: customBlue[500],
|
|
298
|
+
error: "#f44336",
|
|
298
299
|
secondary: "rgba(255, 255, 255, 0.6)",
|
|
299
300
|
alternate: "rgba(255, 255, 255, 0.6)",
|
|
300
301
|
},
|