mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-10-08 02:48: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
77 lines
1.7 KiB
CSS
77 lines
1.7 KiB
CSS
#certificate-uploader-dialog-container > .dialogBlock {
|
|
width: 600px;
|
|
}
|
|
|
|
.certificate-uploader-dialog .theia-select {
|
|
border: none !important;
|
|
}
|
|
.certificate-uploader-dialog .arduino-select__control {
|
|
height: 31px;
|
|
background: var(--theia-dropdown-background) !important;
|
|
}
|
|
|
|
.certificate-uploader-dialog .dialogRow > button{
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.certificate-uploader-dialog .certificate-list {
|
|
border: 1px solid var(--theia-editorWidget-border);
|
|
border-radius: 2px;;
|
|
color: var(--theia-editor-foreground);
|
|
background-color: var(--theia-editor-background);
|
|
overflow: auto;
|
|
height: 120px;
|
|
flex: 1;
|
|
}
|
|
.certificate-uploader-dialog .certificate-list .certificate-row {
|
|
display: flex;
|
|
padding: 6px 10px 5px 10px
|
|
}
|
|
.certificate-uploader-dialog .certificate-list .certificate-row:hover {
|
|
background-color: var(--theia-list-activeSelectionBackground);
|
|
}
|
|
|
|
.certificate-uploader-dialog .upload-status {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
}
|
|
.certificate-uploader-dialog .success {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #1DA086;
|
|
}
|
|
|
|
.certificate-uploader-dialog .warn {
|
|
color: #C11F09;
|
|
}
|
|
|
|
.certificate-uploader-dialog .status-icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.certificate-uploader-dialog .add-cert-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.certificate-uploader-dialog .add-cert-btn .caret {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.certificate-add {
|
|
padding: 16px;
|
|
border-radius: 3px;
|
|
border: 1px solid var(--theia-editorWidget-border);
|
|
color: var(--theia-editorWidget-foreground);
|
|
background-color: var(--theia-editorWidget-background);
|
|
}
|
|
|
|
.certificate-add input {
|
|
margin-top: 12px;
|
|
padding: 0 12px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
}
|