mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-19 12:57:17 +00:00
17 lines
589 B
CSS
17 lines
589 B
CSS
/* Show the dirty indicator on unclosable widgets. On hover, it should still show the dot instead of the X. */
|
|
/* https://github.com/arduino/arduino-pro-ide/issues/380 */
|
|
.p-TabBar.theia-app-centers
|
|
.p-TabBar-tab.p-mod-closable.a-mod-uncloseable.theia-mod-dirty
|
|
> .p-TabBar-tabCloseIcon:before {
|
|
content: "\ea71";
|
|
}
|
|
|
|
.monaco-list-row.show-file-icons.focused {
|
|
background-color: var(--theia-quickInputList-focusBackground);
|
|
}
|
|
|
|
.monaco-editor .view-overlays .compiler-error {
|
|
background-color: var(--theia-inputValidation-errorBackground);
|
|
opacity: 0.4 !important;
|
|
}
|