mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 14:40:36 -06:00
- Updated PHP opening tags from `<?PHP` to `<?php` for consistency. - Reformatted code for improved readability in Syslog.page. - Added a new function `fillAvailableHeight` in BodyInlineJS.php to dynamically resize elements for better layout. - Updated CSS to remove unnecessary gap and margin for a cleaner design in Syslog.css. - Enhanced the syslog controls and output structure for improved usability.
27 lines
431 B
CSS
27 lines
431 B
CSS
input#max {
|
|
width: 60px;
|
|
}
|
|
|
|
.syslog-controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.label {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin: 0;
|
|
padding: .2rem .6rem;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
margin: 0;
|
|
}
|
|
} |