@plangrid/structure
Version:
CSS structure library
67 lines (61 loc) • 1.15 kB
CSS
.preset-box {
box-sizing: border-box;
max-height: 100%;
max-width: 100%;
border-radius: 0;
border-width: 0;
padding: 0;
margin: 0;
}
.preset-input {
border-radius: 0;
border-style: inset;
border-width: 0;
box-sizing: border-box;
display: inline-block;
font: inherit;
margin: 0;
max-height: 100%;
max-width: 100%;
overflow: visible;
padding: 0;
text-transform: none;
}
.preset-textarea {
border-radius: 0;
border-style: inset;
border-width: 0;
box-sizing: border-box;
display: inline-block;
font: inherit;
margin: 0;
max-height: 100%;
max-width: 100%;
overflow: auto;
padding: 0;
text-transform: none;
}
.preset-button {
-moz-appearance: none;
-webkit-appearance: none;
border-radius: 0;
border-style: solid;
border-width: 0;
box-sizing: border-box;
display: inline-block;
font: inherit;
margin: 0;
max-height: 100%;
max-width: 100%;
overflow: visible;
padding: 0;
text-transform: none;
touch-action: manipulation;
}
.preset-button::-moz-focus-inner {
border-style: none;
padding: 0;
}
.preset-button:-moz-focusring {
outline: 1px dotted ButtonText;
}