@mirweb/mir-web-components 2.2.2 → 2.2.4
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.
|
@@ -50,8 +50,10 @@ defineProps({
|
|
|
50
50
|
</script>
|
|
51
51
|
|
|
52
52
|
<style lang="scss" scoped>
|
|
53
|
+
@use "../../../assets/scss/variables.scss" as *;
|
|
54
|
+
|
|
53
55
|
.table-section {
|
|
54
|
-
max-width:
|
|
56
|
+
max-width: $max-width;
|
|
55
57
|
margin: 0px auto;
|
|
56
58
|
padding: 0px;
|
|
57
59
|
overflow-x: visible;
|
|
@@ -68,13 +70,13 @@ defineProps({
|
|
|
68
70
|
|
|
69
71
|
:deep(p) {
|
|
70
72
|
a {
|
|
71
|
-
color:
|
|
73
|
+
color: $blue-600;
|
|
72
74
|
text-decoration: 0.3px underline;
|
|
73
75
|
font-weight: 500;
|
|
74
76
|
|
|
75
77
|
&:hover {
|
|
76
|
-
color:
|
|
77
|
-
transition: color
|
|
78
|
+
color: $blue-800;
|
|
79
|
+
transition: $transition-color;
|
|
78
80
|
}
|
|
79
81
|
}
|
|
80
82
|
}
|
|
@@ -98,19 +100,24 @@ defineProps({
|
|
|
98
100
|
.table-row {
|
|
99
101
|
display: flex;
|
|
100
102
|
flex-direction: row;
|
|
103
|
+
background-color: $blue-100;
|
|
101
104
|
}
|
|
102
105
|
|
|
103
106
|
.table-row.even-row {
|
|
104
|
-
background-color:
|
|
107
|
+
background-color: $white;
|
|
105
108
|
}
|
|
106
109
|
|
|
107
110
|
.table-row.highlight {
|
|
108
|
-
background-color:
|
|
111
|
+
background-color: $blue-300;
|
|
109
112
|
min-height: 90px;
|
|
110
113
|
}
|
|
111
114
|
|
|
112
115
|
.table-row.highlight:first-of-type {
|
|
113
116
|
border-radius: 0.4rem 0.4rem 0 0;
|
|
117
|
+
|
|
118
|
+
.table-cell {
|
|
119
|
+
border-radius: 0.4rem 0.4rem 0 0;
|
|
120
|
+
}
|
|
114
121
|
}
|
|
115
122
|
|
|
116
123
|
.table-cell {
|
|
@@ -158,12 +165,12 @@ defineProps({
|
|
|
158
165
|
}
|
|
159
166
|
|
|
160
167
|
:deep(.hover-description) {
|
|
161
|
-
display: none;
|
|
168
|
+
display: none;
|
|
162
169
|
position: absolute;
|
|
163
170
|
top: 0px;
|
|
164
171
|
left: 30px;
|
|
165
|
-
background-color:
|
|
166
|
-
color:
|
|
172
|
+
background-color: $white;
|
|
173
|
+
color: $blue-900;
|
|
167
174
|
font-size: 14px;
|
|
168
175
|
white-space: normal;
|
|
169
176
|
z-index: 100;
|
|
@@ -172,10 +179,10 @@ defineProps({
|
|
|
172
179
|
width: max-content;
|
|
173
180
|
max-width: 200px;
|
|
174
181
|
padding: 15px;
|
|
175
|
-
box-shadow:
|
|
182
|
+
box-shadow: $box-shadow;
|
|
176
183
|
}
|
|
177
184
|
|
|
178
185
|
:deep(.hover-dots:hover .hover-description) {
|
|
179
|
-
display: block;
|
|
186
|
+
display: block;
|
|
180
187
|
}
|
|
181
188
|
</style>
|