feat: back-to-search button, retry site search, update checker, nsis installer

This commit is contained in:
2026-03-14 14:25:52 +03:00
parent 14da54f204
commit 6c314b614d
6 changed files with 150 additions and 11 deletions

View File

@@ -1323,3 +1323,64 @@ body {
.modal-btn-yes { background: #E50914; color: #fff; }
.modal-btn-no { background: rgba(255,255,255,0.1); color: #ccc; }
.modal-btn-ok { background: rgba(255,255,255,0.1); color: #ccc; }
/* ---- Update banner ---- */
.update-banner {
position: fixed;
bottom: 16px;
right: 16px;
z-index: 9999;
background: #1a1a1a;
border: 1px solid rgba(229,9,20,0.4);
border-radius: 8px;
padding: 10px 14px;
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
color: #fff;
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.update-banner-btn {
background: #E50914;
color: #fff;
border: none;
border-radius: 5px;
padding: 4px 12px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
}
.update-banner-close {
background: none;
border: none;
color: #777;
cursor: pointer;
font-size: 13px;
padding: 0;
line-height: 1;
}
.update-banner-close:hover { color: #fff; }
/* ---- Retry btn ---- */
.ms-retry-btn {
background: none;
border: none;
color: #aaa;
cursor: pointer;
padding: 2px 6px;
display: inline-flex;
align-items: center;
gap: 4px;
border-radius: 4px;
transition: color 0.15s;
}
.ms-retry-btn:hover { color: #fff; }
.ms-retry-standalone {
margin-top: 12px;
font-size: 13px;
color: #E50914;
display: block;
}
.ms-retry-standalone:hover { color: #ff4444; }