style: atualizar design dos botoes para estilo slim e flat
Build and Deploy (Gitea Actions) / build-and-deploy (push) Successful in 2m40s
Details
Build and Deploy (Gitea Actions) / build-and-deploy (push) Successful in 2m40s
Details
This commit is contained in:
parent
094640bffb
commit
757029f80e
|
|
@ -299,57 +299,71 @@ body {
|
||||||
.stat-change.up { color: var(--success); }
|
.stat-change.up { color: var(--success); }
|
||||||
.stat-change.down { color: var(--danger); }
|
.stat-change.down { color: var(--danger); }
|
||||||
|
|
||||||
/* === BUTTONS === */
|
|
||||||
.btn {
|
.btn {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
padding: 10px 20px;
|
padding: 8px 16px;
|
||||||
border-radius: var(--radius-sm);
|
border-radius: 6px;
|
||||||
font-size: 14px;
|
font-size: 13.5px;
|
||||||
font-weight: 600;
|
font-weight: 500;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border: none;
|
border: none;
|
||||||
transition: all 0.2s ease;
|
transition: all 0.15s ease;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background: var(--gradient-primary);
|
background: var(--accent);
|
||||||
color: white;
|
color: white;
|
||||||
box-shadow: var(--shadow-glow);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.btn-primary:hover {
|
||||||
transform: translateY(-1px);
|
background: var(--accent-hover);
|
||||||
box-shadow: 0 0 40px rgba(108,99,255,0.3);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary {
|
.btn-secondary {
|
||||||
background: var(--bg-elevated);
|
background: transparent;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
border: 1px solid var(--border-color);
|
border: 1px solid var(--border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary:hover { border-color: var(--accent); }
|
.btn-secondary:hover {
|
||||||
|
background: var(--bg-elevated);
|
||||||
|
border-color: var(--text-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
.btn-danger {
|
.btn-danger {
|
||||||
background: var(--danger-bg);
|
background: transparent;
|
||||||
color: var(--danger);
|
color: var(--danger);
|
||||||
border: 1px solid rgba(239,68,68,0.2);
|
border: 1px solid rgba(239,68,68,0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-danger:hover {
|
||||||
|
background: var(--danger-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-ghost {
|
.btn-ghost {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
padding: 8px 12px;
|
padding: 6px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-card); }
|
.btn-ghost:hover {
|
||||||
|
color: var(--text-primary);
|
||||||
|
background: var(--bg-elevated);
|
||||||
|
}
|
||||||
|
|
||||||
.btn-sm { padding: 6px 14px; font-size: 13px; }
|
.btn-sm {
|
||||||
.btn-icon { padding: 8px; border-radius: var(--radius-sm); }
|
padding: 5px 12px;
|
||||||
|
font-size: 12.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-icon {
|
||||||
|
padding: 6px;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
/* === FORMS === */
|
/* === FORMS === */
|
||||||
.form-group { margin-bottom: 20px; }
|
.form-group { margin-bottom: 20px; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue