guify
Version:
A simple GUI for inspecting and changing JS variables
35 lines (28 loc) • 841 B
CSS
@import "../variables.css";
.guify-value-input {
position: absolute;
background-color: var(--color-component-background);
padding-left: 1%;
height: var(--size-component-height);
display: inline-block;
overflow: hidden;
border: none;
color: var(--color-text-secondary);
user-select: text;
cursor: text;
line-height: var(--size-component-height);
word-break: break-all;
box-sizing: border-box ;
-moz-box-sizing: border-box ;
-webkit-box-sizing: border-box ;
font-family: var(--font-family-for-input);
border-radius: 0;
}
.guify-value-input-right {
right: 0 ;
}
.disabled .guify-value-input {
pointer-events: none;
background-color: var(--color-component-background-disabled);
color: var(--color-text-disabled);
}