otimus-library 0.1.98 → 0.2.0
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/esm2022/lib/components/oc-key-value/oc-key-value.component.mjs +3 -3
- package/esm2022/lib/components/oc-modal/oc-modal.component.mjs +3 -3
- package/fesm2022/otimus-library.mjs +4 -4
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/components/table/table.shui.scss +40 -41
- package/styles/patterns/shui/colors.shui.scss +3 -3
package/package.json
CHANGED
|
@@ -1,50 +1,49 @@
|
|
|
1
1
|
@use '../../variables.scss';
|
|
2
2
|
|
|
3
|
-
.shui
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
3
|
+
.shui .oc.table,
|
|
4
|
+
.shui.oc.table {
|
|
5
|
+
width: 100%;
|
|
6
|
+
border-collapse: collapse;
|
|
7
|
+
margin: 20px 0;
|
|
8
|
+
font-size: 1em;
|
|
9
|
+
font-family: 'Arial', sans-serif;
|
|
10
|
+
|
|
11
|
+
thead {
|
|
12
|
+
min-height: 50px;
|
|
13
|
+
height: 50px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
tr {
|
|
17
|
+
background-color: white;
|
|
18
|
+
transition: 0.1s ease;
|
|
19
|
+
border: none;
|
|
20
|
+
border-top: 0;
|
|
21
|
+
border-bottom: 0;
|
|
15
22
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
transition: 0.1s ease;
|
|
19
|
-
border: none;
|
|
20
|
-
border-top: 0;
|
|
21
|
-
border-bottom: 0;
|
|
22
|
-
|
|
23
|
-
&:hover {
|
|
24
|
-
filter: brightness(0.95);
|
|
25
|
-
}
|
|
23
|
+
&:hover {
|
|
24
|
+
filter: brightness(0.95);
|
|
26
25
|
}
|
|
26
|
+
}
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
th, td {
|
|
29
|
+
padding: 15px;
|
|
30
|
+
text-align: left;
|
|
31
|
+
}
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
33
|
+
th {
|
|
34
|
+
background-color: transparent;
|
|
35
|
+
border-bottom: 1px solid rgba(variables.$color-shui-ui-5, 0.75);
|
|
36
|
+
color: variables.$color-shui-ui-1;
|
|
37
|
+
font-weight: 600;
|
|
38
|
+
padding: 12px 15px;
|
|
39
|
+
}
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
td {
|
|
42
|
+
border-bottom: 1px solid rgba(variables.$color-shui-ui-6, 0.5);
|
|
43
|
+
font-size: 0.9rem;
|
|
44
|
+
}
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
46
|
+
&.striped tr:nth-child(even) {
|
|
47
|
+
background-color: white;
|
|
49
48
|
}
|
|
50
|
-
}
|
|
49
|
+
}
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
color: variables.$color-shui-ui-7;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
&.ui-
|
|
52
|
-
color: variables.$color-shui-ui-8;
|
|
51
|
+
&.ui-8, &.p-1 {
|
|
52
|
+
color: variables.$color-shui-ui-8 !important;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
// Functional color classes
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
background-color: variables.$color-shui-ui-7;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
&.ui-8,
|
|
121
|
+
&.ui-8, &.p-1 {
|
|
122
122
|
background-color: variables.$color-shui-ui-8;
|
|
123
123
|
}
|
|
124
124
|
|