guify
Version:
A simple GUI for inspecting and changing JS variables
43 lines (37 loc) • 1.03 kB
CSS
@import "../variables.css";
.guify-button {
box-sizing: border-box ;
color: var(--color-text-secondary);
background-color: var(--color-component-background);
position: absolute;
text-align: center;
height: var(--size-component-height);
line-height: var(--size-component-height);
padding-top: 0px;
padding-bottom: 0px;
width: calc(100% - var(--size-label-width));
border: none;
cursor: pointer;
right: 0;
font-family: inherit;
}
.guify-button:focus {
outline:none;
}
.guify-button::-moz-focus-inner {
border:0;
}
.guify-button:hover,
.guify-button:focus {
color: var(--color-text-hover);
background-color: var(--color-component-foreground);
}
.guify-button:active {
color: var(--color-text-active) ;
background-color: var(--color-component-active) ;
}
*.disabled > .guify-button {
pointer-events: none;
background-color: var(--color-component-background-disabled);
color: var(--color-text-disabled);
}