Separate Faktiska workflow and refine symbol picker

This commit is contained in:
b0txec
2026-08-18 22:45:14 +03:00
parent ffb89024f1
commit 82199b8a45
7 changed files with 29 additions and 24 deletions
+7 -7
View File
@@ -1,16 +1,15 @@
.weatherIconButton {
font-family: 'Daira by LTV grafika';
font-size: 30px;
display: inline-block;
background-color: #ccc;
padding: 3px 4px;
margin: 0 3px;
display:inline-flex;align-items:center;justify-content:center;
width:46px;height:46px;min-height:46px;
background:#f4f6f8;border:1px solid #d9e0e8;border-radius:10px;
padding:0;margin:0;
cursor: pointer;
}
.weatherIconButton:hover {
background-color: #333;
color: white;
background:#e9eef4;border-color:#aebccc;color:#17212d;
}
.weatherIconInput {
@@ -23,4 +22,5 @@
font-size: 20px;
color: white;
}
.weatherIconButton.selected{background:var(--accent);color:#fff;box-shadow:0 0 0 2px var(--accent-pale)}
.weatherIconButton.selected{background:#17212d;border-color:#17212d;color:#fff;box-shadow:0 0 0 3px var(--accent-pale)}
.weatherIconButton:focus-visible{outline:3px solid var(--accent-soft);outline-offset:2px}