mirror of
https://github.com/unraid/webgui.git
synced 2026-05-19 12:49:33 -05:00
40 lines
539 B
CSS
40 lines
539 B
CSS
/* Status colors */
|
|
span.red {
|
|
color: var(--orange-300);
|
|
}
|
|
span.blue {
|
|
color: var(--blue-700);
|
|
}
|
|
span.green {
|
|
color: var(--green-800);
|
|
}
|
|
span.vshift {
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
/* Input styles */
|
|
input.gap {
|
|
margin-right: 6px;
|
|
}
|
|
input.form {
|
|
font-size: 1rem;
|
|
padding: 5px 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
/* Utility classes */
|
|
select.slim {
|
|
min-width: 47px;
|
|
margin-left: 4px;
|
|
}
|
|
input.slim {
|
|
width: 32px;
|
|
margin-left: 8px;
|
|
}
|
|
.hide {
|
|
display: none;
|
|
}
|
|
select.ctrl {
|
|
margin-right: 20px;
|
|
}
|