mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 23:20:35 -06:00
- Removed unnecessary margin and transform properties from buttons for improved layout consistency. - This change continues the effort to enhance visual consistency across the plugin.
52 lines
999 B
CSS
52 lines
999 B
CSS
:root {
|
|
--vm-machines-file-tree-background: var(--black);
|
|
}
|
|
|
|
.Theme--azure:root,
|
|
.Theme--white:root {
|
|
--vm-machines-file-tree-background: var(--gray-100);
|
|
}
|
|
|
|
.errortext {
|
|
color: var(--red-800); /* Condensed from: #ef3d47 */
|
|
display: none;
|
|
}
|
|
.basic {
|
|
display: block;
|
|
}
|
|
.advanced {
|
|
display: none;
|
|
}
|
|
#winvirtio {
|
|
display: none;
|
|
}
|
|
#download_status {
|
|
margin-left: 5px;
|
|
color: var(--gray-500); /* Condensed from: #777 */
|
|
display: none;
|
|
}
|
|
#download_button {
|
|
cursor: pointer;
|
|
color: var(--blue-700); /* Condensed from: #08c */
|
|
display: none;
|
|
}
|
|
#download_button.fa-spin {
|
|
cursor: default;
|
|
color: var(--gray-500); /* Condensed from: #777 */
|
|
}
|
|
#download_button span {
|
|
font-family: clear-sans;
|
|
}
|
|
#download_button.fa-spin span {
|
|
font-family: clear-sans;
|
|
display: none;
|
|
}
|
|
#remove_button {
|
|
cursor: pointer;
|
|
color: var(--red-800); /* Condensed from: #ef3d47 */
|
|
display: none;
|
|
}
|
|
#remove_button span {
|
|
font-family: clear-sans;
|
|
}
|