otimus-library 0.3.9 → 0.3.11

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.
@@ -1,50 +1,50 @@
1
- @use '../../variables.scss';
2
-
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;
22
-
23
- &:hover {
24
- background-color: #F5F5F5 !important;
25
- }
26
-
27
- }
28
-
29
- th, td {
30
- padding: 15px;
31
- text-align: left;
32
- }
33
-
34
- th {
35
- background-color: transparent;
36
- border-bottom: 1px solid rgba(variables.$color-shui-ui-5, 0.75);
37
- color: variables.$color-shui-ui-1;
38
- font-weight: 600;
39
- padding: 12px 15px;
40
- }
41
-
42
- td {
43
- border-bottom: 1px solid rgba(variables.$color-shui-ui-6, 0.5);
44
- font-size: 0.9rem;
45
- }
46
-
47
- &.striped tr:nth-child(even) {
48
- background-color: white;
49
- }
50
- }
1
+ @use '../../variables.scss';
2
+
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;
22
+
23
+ &:hover {
24
+ background-color: #F5F5F5 !important;
25
+ }
26
+
27
+ }
28
+
29
+ th, td {
30
+ padding: 15px;
31
+ text-align: left;
32
+ }
33
+
34
+ th {
35
+ background-color: transparent;
36
+ border-bottom: 1px solid rgba(variables.$color-shui-ui-5, 0.75);
37
+ color: variables.$color-shui-ui-1;
38
+ font-weight: 600;
39
+ padding: 12px 15px;
40
+ }
41
+
42
+ td {
43
+ border-bottom: 1px solid rgba(variables.$color-shui-ui-6, 0.5);
44
+ font-size: 0.9rem;
45
+ }
46
+
47
+ &.striped tr:nth-child(even) {
48
+ background-color: white;
49
+ }
50
+ }
@@ -1,27 +1,27 @@
1
- .oc-tooltip {
2
- margin: 0;
3
- position: absolute;
4
- padding: 0.35rem 0.7rem;
5
- font-size: 0.9rem;
6
- font-weight: 500;
7
- background-color: #F8F9FF;
8
- border: 1px solid white;
9
- border-radius: 0.75rem;
10
- box-shadow: 0px 3px 6.5px 0px rgba(0, 0, 0, 0.20);
11
- transition: 0.15s ease;
12
- max-width: 400px;
13
- z-index: 1000;
14
- pointer-events: none;
15
- animation: show-up 0.15s ease;
16
- &.mouse-tracking {
17
- border-top-left-radius: 0;
18
- }
19
- }
20
-
21
- @keyframes show-up {
22
- from {
23
- opacity: 0;
24
- } to {
25
- opacity: 1;
26
- }
1
+ .oc-tooltip {
2
+ margin: 0;
3
+ position: absolute;
4
+ padding: 0.35rem 0.7rem;
5
+ font-size: 0.9rem;
6
+ font-weight: 500;
7
+ background-color: #F8F9FF;
8
+ border: 1px solid white;
9
+ border-radius: 0.75rem;
10
+ box-shadow: 0px 3px 6.5px 0px rgba(0, 0, 0, 0.20);
11
+ transition: 0.15s ease;
12
+ max-width: 400px;
13
+ z-index: 1000;
14
+ pointer-events: none;
15
+ animation: show-up 0.15s ease;
16
+ &.mouse-tracking {
17
+ border-top-left-radius: 0;
18
+ }
19
+ }
20
+
21
+ @keyframes show-up {
22
+ from {
23
+ opacity: 0;
24
+ } to {
25
+ opacity: 1;
26
+ }
27
27
  }