fix bug 74845

This commit is contained in:
Dmitry-Ilyushechkin
2025-06-09 20:08:58 +03:00
parent 57cf7d4c8f
commit 96077ed1bd
2 changed files with 41 additions and 7 deletions

View File

@ -2091,9 +2091,40 @@ li.menu-item {
}
}
.status-field.hbox {
padding-bottom: 10px;
}
#idx-update-status-text {
font-size: 14px;
}
#idx-update-status-icon {
min-width: 28px;
width: 28px;
height: 28px;
margin-right: 8px;
&[data-icon=success] {
fill: #95C038;
}
&[data-icon=error] {
fill: #FF6F3D;
}
&[data-icon=load], &[data-icon=lastcheck] {
fill: #5DC0E8;
}
&[data-icon=load] {
animation: rotate 1.5s linear infinite;
}
@keyframes rotate {
to {
transform: rotate(360deg);
}
}
}
}
#idx-update-btnaction {

View File

@ -72,13 +72,16 @@
var _lang = utils.Lang;
const _updates_status = `<section id="idx-update-cnt">
<div class="status-field">
<label id="idx-update-status-text"></label>
</div>
<div class="status-field">
<button id="idx-update-btnaction" class="btn btn--landing"></button>
</div>
</section>`;
<div class="status-field hbox">
<svg class="icon" id="idx-update-status-icon">
<use href=""></use>
</svg>
<label id="idx-update-status-text"></label>
</div>
<div class="status-field">
<button id="idx-update-btnaction" class="btn btn--landing"></button>
</div>
</section>`;
let _html = `<div class="flexbox">
<div class="box-ver">
<section class="hbox">