mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 06:59:56 -06:00
- Increased the width of the input.port class from `50px` to `64px` to enhance the layout and usability. [COMPLETE] Should I continue to the next item?
48 lines
756 B
CSS
48 lines
756 B
CSS
span[class^="rx"] {
|
|
margin-right: 40px;
|
|
}
|
|
span.access-type {
|
|
display: inline-block;
|
|
width: 35%;
|
|
white-space: normal;
|
|
}
|
|
@media (max-width: 1920px) {
|
|
span.access-type {
|
|
width: 20%;
|
|
}
|
|
}
|
|
div[id^="block-wg"] {
|
|
margin-bottom: 30px;
|
|
}
|
|
.preset {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
input.mask {
|
|
width: 30px;
|
|
}
|
|
input.port {
|
|
width: 64px;
|
|
}
|
|
input.ok {
|
|
color: #f2f2f2;
|
|
background: #4f8a10;
|
|
}
|
|
input.nok {
|
|
color: #f2f2f2;
|
|
background: #f0000c;
|
|
}
|
|
i.key-off {
|
|
opacity: 0.3;
|
|
cursor: default !important;
|
|
}
|
|
input:user-invalid {
|
|
border-bottom-color: #e22828;
|
|
}
|
|
input:-moz-ui-invalid {
|
|
border-bottom-color: #e22828;
|
|
}
|