mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-02-10 18:05:16 +08:00
fix bug 74845
This commit is contained in:
@ -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 {
|
||||
|
||||
@ -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">
|
||||
|
||||
Reference in New Issue
Block a user