mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-06 00:48:35 +00:00
13 lines
605 B
CSS
13 lines
605 B
CSS
/* Do not show the `close` icon for editor, but show the dirty state. */
|
|
.p-TabBar.theia-app-centers .p-TabBar-tab.p-mod-closable:hover > .p-TabBar-tabCloseIcon,
|
|
.p-TabBar.theia-app-centers .p-TabBar-tab.p-mod-current > .p-TabBar-tabCloseIcon {
|
|
background-image: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.p-TabBar.theia-app-centers .p-TabBar-tab.p-mod-closable.theia-mod-dirty:hover > .p-TabBar-tabCloseIcon,
|
|
.p-TabBar.theia-app-centers .p-TabBar-tab.p-mod-closable.theia-mod-dirty > .p-TabBar-tabCloseIcon:hover {
|
|
background-size: 10px;
|
|
background-image: var(--theia-icon-circle);
|
|
cursor: pointer;
|
|
} |