imbric-theme 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
@@ -78,12 +78,12 @@ export const DynamicSelect = ({
|
|
78
78
|
whiteSpace: "nowrap",
|
79
79
|
overflow: "hidden",
|
80
80
|
// display: "inline-grid"
|
81
|
-
maxHeight: "38px",
|
81
|
+
// maxHeight: "38px",
|
82
82
|
}),
|
83
83
|
|
84
84
|
container: (base) => ({
|
85
85
|
...base,
|
86
|
-
width: "max-content",
|
86
|
+
// width: "max-content",
|
87
87
|
minWidth: "100%",
|
88
88
|
}),
|
89
89
|
|
@@ -103,7 +103,7 @@ export const RowTable = ({
|
|
103
103
|
<tbody>
|
104
104
|
{slice.map((item, index) => (
|
105
105
|
|
106
|
-
<tr style={{ background: item.colorRow }} className={getStyles({ 'tr-content': isClickRow })} onClick={(e) => { onClickRow(e, item) }} key={index}>
|
106
|
+
<tr style={{ background: item.colorRow }} className={getStyles({ 'tr-content': isClickRow }, 'tr')} onClick={(e) => { onClickRow(e, item) }} key={index}>
|
107
107
|
|
108
108
|
{columnsData.map((itemTd, indexTd) => (
|
109
109
|
itemTd.activeView ?
|
@@ -4,6 +4,11 @@
|
|
4
4
|
|
5
5
|
}
|
6
6
|
|
7
|
+
.tr {
|
8
|
+
/* border: 1px solid rgba(0, 0, 0, 0.1); */
|
9
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
10
|
+
}
|
11
|
+
|
7
12
|
.tbl-content {
|
8
13
|
height: max-content;
|
9
14
|
overflow-x: auto;
|
@@ -18,7 +23,7 @@
|
|
18
23
|
font-weight: 300;
|
19
24
|
font-size: 12px;
|
20
25
|
color: var(--color-font-base);
|
21
|
-
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
|
26
|
+
/* border-bottom: solid 1px rgba(0, 0, 0, 0.1); */
|
22
27
|
overflow: hidden;
|
23
28
|
text-overflow: ellipsis;
|
24
29
|
/* white-space: nowrap; */
|