Added style for Golden Layout's close button.

This commit is contained in:
jtuu 2019-11-05 16:48:35 +02:00
parent 8247934e78
commit 065b6333a6

View File

@ -36,6 +36,20 @@
cursor: default; cursor: default;
} }
#root .lm_header .lm_controls .lm_close {
/* a white 9x9 X shape */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAQUlEQVR4nHXOQQ4AMAgCQeT/f6aXpsGK3jSTuCVJAAr7iBdoAwCKd0nwfaAdHbYERw5b44+E8JoBjEYGMBq5gAYP3usUDu2IvoUAAAAASUVORK5CYII=);
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
opacity: 0.4;
transition: opacity 300ms ease;
}
#root .lm_header .lm_controls .lm_close:hover {
opacity: 1;
}
#root .lm_content { #root .lm_content {
overflow: visible; overflow: visible;
} }