Refactor toolbar buttons across various pages to unify styling

- Updated button classes for consistency in the playersoftware-page, playlist-page, resolution-page, schedule-page, settings-page, syncgroup-page, tag-page, task-page, template-page, transition-page, user-page, and usergroup-page.
- Removed unnecessary text from button titles and ensured all buttons have the 'ots-toolbar-btn' class for uniformity.
- Cleaned up the code by removing commented-out sections and ensuring proper indentation.
This commit is contained in:
Matt Batchelder
2026-02-07 14:50:40 -05:00
parent 1c5c23f100
commit 86030cb881
34 changed files with 2614 additions and 554 deletions

View File

@@ -904,19 +904,29 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
background-size: 48px 48px, cover;
}
body.login-page .container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
}
.login-card,
.login-panel,
.auth-card,
.xibo-login-box,
#login-box {
width: 100%;
max-width: 560px;
border-radius: 12px;
padding: 32px 36px;
background: var(--login-panel-bg);
border: 1px solid rgba(255,255,255,0.04);
box-shadow: var(--ots-shadow-lg);
max-width: 520px;
border-radius: 16px;
padding: 36px 40px 34px;
background: linear-gradient(180deg, rgba(7,12,22,0.92), rgba(10,16,30,0.9));
border: 1px solid rgba(255,255,255,0.08);
box-shadow: 0 28px 70px rgba(2, 6, 23, 0.55);
color: var(--ots-text);
backdrop-filter: blur(14px);
}
.login-card .login-logo,
@@ -942,23 +952,24 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
/* Brand text next to logo on login */
.login-brand {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 18px;
gap: 10px;
margin-bottom: 18px;
}
.login-brand .login-logo {
width: 92px;
height: 92px;
width: 72px;
height: 72px;
display: inline-block;
}
.login-brand-text {
color: var(--ots-text);
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.01em;
font-size: 1.2rem;
font-weight: 600;
letter-spacing: 0.02em;
}
.login-card h1,
@@ -972,8 +983,9 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
.login-card .lead,
.login-panel .lead {
text-align: center;
color: var(--ots-text-muted);
color: rgba(226,232,240,0.74);
margin-bottom: 18px;
font-size: 0.95rem;
}
.login-card .form-group,
@@ -989,12 +1001,12 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
.login-panel input[type="email"],
.login-panel input[type="password"] {
width: 100%;
background: linear-gradient(180deg, rgba(255,255,255,0.016), rgba(255,255,255,0.01));
border: 1px solid rgba(255,255,255,0.06);
background: rgba(11, 18, 33, 0.65);
border: 1px solid rgba(148, 163, 184, 0.18);
color: var(--ots-text);
padding: 14px 16px;
border-radius: 12px;
font-size: 1rem;
padding: 12px 14px;
border-radius: 10px;
font-size: 0.98rem;
line-height: 1.25;
transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
@@ -1003,9 +1015,9 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
.login-panel input:focus,
.login-card .form-control:focus {
outline: none;
border-color: rgba(255,138,0,0.95);
background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
box-shadow: 0 8px 22px rgba(0,0,0,0.32), 0 0 0 6px rgba(255,138,0,0.04);
border-color: rgba(255,138,0,0.85);
background: rgba(11, 18, 33, 0.75);
box-shadow: 0 10px 26px rgba(0,0,0,0.38), 0 0 0 5px rgba(255,138,0,0.08);
}
.login-card input::placeholder,
@@ -1034,13 +1046,13 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
gap: 8px;
width: 100%;
padding: 10px 14px;
background: rgba(255,255,255,0.03);
color: var(--ots-text);
background: #f8fafc;
color: #0b1221 !important;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.8);
font-weight: 600;
box-shadow: none;
transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
box-shadow: 0 10px 22px rgba(2,6,23,0.35);
transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.login-card .btn-signin .icon,
@@ -1054,15 +1066,16 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
.login-card .btn-signin:hover,
.login-panel .btn-signin:hover {
background: rgba(255,255,255,0.06);
border-color: rgba(255,255,255,0.18);
background: #ffffff;
border-color: rgba(255,255,255,0.95);
transform: translateY(-1px);
}
.login-card .btn-signin:focus,
.login-panel .btn-signin:focus {
outline: none;
box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 6px rgba(255,138,0,0.04);
border-color: rgba(255,138,0,0.28);
box-shadow: 0 10px 24px rgba(0,0,0,0.32), 0 0 0 5px rgba(255,138,0,0.18);
border-color: rgba(255,138,0,0.45);
}
.login-card .forgot-link,
@@ -1075,7 +1088,7 @@ body.login, body.login-page, .xibo-login, #login, .login-wrapper {
/* Small screens: compress card padding */
@media (max-width: 520px) {
.login-card, .login-panel { padding: 20px; border-radius: 10px; }
.login-card, .login-panel { padding: 24px; border-radius: 12px; }
.login-card .login-logo .logo-icon { width: 72px; height: 72px; }
}
@@ -1129,7 +1142,7 @@ body.login-page::before {
left: -8%;
top: -6%;
background: radial-gradient(circle at 30% 30%, rgba(79,140,255,0.65), rgba(79,140,255,0.18) 35%, transparent 50%);
animation: ots-blob-move-1 20s ease-in-out infinite alternate !important;
animation: ots-blob-move-1 16s ease-in-out infinite alternate !important;
}
.ots-login-blob--2 {
@@ -1138,7 +1151,7 @@ body.login-page::before {
right: 6%;
bottom: 18%;
background: radial-gradient(circle at 60% 40%, rgba(255,138,0,0.45), rgba(255,138,0,0.14) 36%, transparent 55%);
animation: ots-blob-move-2 26s ease-in-out infinite alternate !important;
animation: ots-blob-move-2 20s ease-in-out infinite alternate !important;
}
.ots-login-blob--3 {
@@ -1147,7 +1160,11 @@ body.login-page::before {
left: 18%;
bottom: -4%;
background: radial-gradient(circle at 40% 60%, rgba(94,200,255,0.28), rgba(94,200,255,0.08) 40%, transparent 60%);
animation: ots-blob-move-3 22s ease-in-out infinite alternate !important;
animation: ots-blob-move-3 18s ease-in-out infinite alternate !important;
}
.ots-login-bg {
animation-duration: 10s !important;
}
/* Disable other animations/transitions on the login page so only blobs animate */

File diff suppressed because it is too large Load Diff