mirror of
git://f0xx.org/ac/ac-platform-web
synced 2026-07-29 03:38:33 +03:00
feat(platform-web): global form styles, register.js, footer i18n
Signed-off-by: Anton Afanasyeu <a.afanasieff@gmail.com>
This commit is contained in:
@@ -1592,20 +1592,62 @@ button.report-tag--filter:hover {
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
}
|
||||
.tag-field input[type="text"] {
|
||||
padding: 8px 10px;
|
||||
border-radius: 6px;
|
||||
.tag-field input[type="text"],
|
||||
.tag-field input[type="url"],
|
||||
.tag-field input[type="email"],
|
||||
.tag-field input[type="number"],
|
||||
.tag-field input[type="password"],
|
||||
.tag-field input[type="search"],
|
||||
.tag-field select,
|
||||
.tag-field textarea {
|
||||
padding: 10px 12px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border);
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
font-size: 14px;
|
||||
min-width: 10rem;
|
||||
}
|
||||
.tag-field input:focus,
|
||||
.tag-field select:focus,
|
||||
.tag-field textarea:focus {
|
||||
outline: 2px solid var(--accent);
|
||||
outline-offset: 1px;
|
||||
}
|
||||
.tag-field select {
|
||||
cursor: pointer;
|
||||
appearance: auto;
|
||||
}
|
||||
.tag-editor-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
.data-table select,
|
||||
#rbac-users-table select {
|
||||
padding: 8px 10px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border);
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
font-size: 14px;
|
||||
min-width: 8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
.data-table select:focus,
|
||||
#rbac-users-table select:focus {
|
||||
outline: 2px solid var(--accent);
|
||||
outline-offset: 1px;
|
||||
}
|
||||
.register-countdown-wrap {
|
||||
margin: 1rem 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.register-countdown-wrap strong {
|
||||
font-variant-numeric: tabular-nums;
|
||||
margin-left: 0.35rem;
|
||||
}
|
||||
.tag-editor-status--err { color: var(--danger); }
|
||||
.tag-preset-bar {
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user