UI a menu a FA

This commit is contained in:
JiriUhlir
2026-06-15 09:57:24 +02:00
parent 40069c8969
commit 3bb762d08a
8 changed files with 117 additions and 38 deletions
+56
View File
@@ -816,6 +816,62 @@ input[readonly] {
color: var(--danger-dark);
}
.action-icons-cell {
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.action-icons {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
}
.action-icons form {
margin: 0;
display: inline-flex;
}
.icon-action {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
min-height: 38px;
padding: 0;
border: 1px solid var(--border);
border-radius: 8px;
background: white;
color: var(--secondary);
font-size: 16px;
line-height: 1;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.icon-action:hover,
.icon-action:focus-visible {
background: #eef6f9;
color: var(--secondary-dark);
border-color: var(--secondary);
text-decoration: none;
outline: none;
}
.icon-action-danger {
color: var(--danger);
}
.icon-action-danger:hover,
.icon-action-danger:focus-visible {
background: var(--danger-bg);
color: var(--danger-dark);
border-color: var(--danger);
}
.running-row td {
background: var(--warning-bg);
}
File diff suppressed because one or more lines are too long
+6
View File
@@ -0,0 +1,6 @@
/*!
* Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2023 Fonticons, Inc.
*/
:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}
Binary file not shown.
Binary file not shown.