mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 14:40:36 -06:00
- Removed unnecessary margin adjustments for .vshift and .hshift classes in Eth0.css and default-base.css. - Added a new rule to fix the margin-top for UD titles to prevent overlapping with tabs.
36 lines
492 B
CSS
36 lines
492 B
CSS
/* Status colors */
|
|
span.red {
|
|
color: var(--orange-300);
|
|
}
|
|
span.blue {
|
|
color: var(--blue-700);
|
|
}
|
|
span.green {
|
|
color: var(--green-800);
|
|
}
|
|
/* 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;
|
|
}
|