mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-08 09:58:34 +00:00
76 lines
1.8 KiB
CSS
76 lines
1.8 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;
|
|
}
|