@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-left: 1px solid ${({ theme }) => theme.palette.primary.main};
34
- border-right: 1px solid ${({ theme }) => theme.palette.primary.main};
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-top: 1px solid ${({ theme }) => theme.palette.primary.main};
38
- border-bottom: 1px solid ${({ theme }) => theme.palette.primary.main};
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
  }
@@ -177,11 +177,11 @@ const lightVariant = {
177
177
  error: "#f44336",
178
178
  },
179
179
  text: {
180
- default: "#FFF",
181
- primary: "#FFF",
182
- secondary: "#000",
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: "rgba(255, 255, 255, 0.95)",
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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolith-forensics/monolith-ui",
3
- "version": "1.3.26",
3
+ "version": "1.3.28",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "author": "Matt Danner (Monolith Forensics LLC)",