mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-10-17 07:18:32 +00:00

* make dialogs scroll when scaling up the UI * add unit of measure to settings step input * wrap settings dialog items when scaling up the UI * fix dialogs width when scaling up the UI * rework board config UI to make it scale up better * refactor ide updater dialog: move buttons outside the dialog content * refactor ide updater dialog: clean-up code and rename events * fix board config dialog title case and and remove double ellipsis
31 lines
596 B
CSS
31 lines
596 B
CSS
#firmware-uploader-dialog-container > .dialogBlock {
|
|
width: 600px;
|
|
}
|
|
|
|
.firmware-uploader-dialog .theia-select {
|
|
border: none !important;
|
|
}
|
|
.firmware-uploader-dialog .arduino-select__control {
|
|
height: 31px;
|
|
background: var(--theia-menubar-selectionBackground) !important;
|
|
}
|
|
|
|
.firmware-uploader-dialog .dialogRow > button{
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.firmware-uploader-dialog #firmware-select {
|
|
flex: unset;
|
|
}
|
|
|
|
.firmware-uploader-dialog .success {
|
|
color: #1DA086;
|
|
}
|
|
|
|
.firmware-uploader-dialog .warn {
|
|
color: #C11F09;
|
|
}
|
|
|
|
.firmware-uploader-dialog .status-icon {
|
|
margin-right: 10px;
|
|
} |