@provoly/hypervisor 1.9.2 → 1.9.3
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/src/lib/general/last-events/last-events.component.mjs +3 -3
- package/fesm2022/provoly-hypervisor.mjs +2 -2
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/components/_m-hvy-event-summary-item.scss +13 -8
- package/styles/components/_o-hvy-last-events.scss +1 -0
package/package.json
CHANGED
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
&__event-icon-container {
|
|
78
78
|
display: flex;
|
|
79
79
|
justify-content: center;
|
|
80
|
-
align-items:
|
|
81
|
-
height:
|
|
82
|
-
width:
|
|
80
|
+
align-items: flex-start;
|
|
81
|
+
height: 2rem;
|
|
82
|
+
width: 2rem;
|
|
83
83
|
z-index: 1;
|
|
84
84
|
position: relative;
|
|
85
85
|
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
background-color: transparent;
|
|
120
120
|
|
|
121
121
|
&:after {
|
|
122
|
-
--side:
|
|
122
|
+
--side: 35px;
|
|
123
123
|
position: absolute;
|
|
124
124
|
content: '';
|
|
125
125
|
border-left: calc(var(--side) / 2) solid transparent;
|
|
@@ -161,8 +161,8 @@
|
|
|
161
161
|
&:after {
|
|
162
162
|
position: absolute;
|
|
163
163
|
content: '';
|
|
164
|
-
width:
|
|
165
|
-
height:
|
|
164
|
+
width: 2rem;
|
|
165
|
+
height: 2rem;
|
|
166
166
|
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
|
|
167
167
|
}
|
|
168
168
|
|
|
@@ -188,8 +188,9 @@
|
|
|
188
188
|
|
|
189
189
|
&__event-icon {
|
|
190
190
|
z-index: 2;
|
|
191
|
-
width:
|
|
192
|
-
height:
|
|
191
|
+
width: 2.7em;
|
|
192
|
+
height: 2.7em;
|
|
193
|
+
-webkit-mask-position: top!important;
|
|
193
194
|
}
|
|
194
195
|
|
|
195
196
|
&__date {
|
|
@@ -198,3 +199,7 @@
|
|
|
198
199
|
font-size: toRem(12);
|
|
199
200
|
}
|
|
200
201
|
}
|
|
202
|
+
|
|
203
|
+
.last-events-icon-tooltip {
|
|
204
|
+
transform: none!important;
|
|
205
|
+
}
|