31 lines
585 B
CSS
31 lines
585 B
CSS
.ripcrypt .AllItemSheetV1 {
|
|
--input-height: 1rem;
|
|
--col-gap: 8px;
|
|
|
|
display: grid;
|
|
grid-template-rows: minmax(0, 1fr);
|
|
grid-auto-rows: minmax(0, 1fr);
|
|
column-gap: var(--col-gap);
|
|
|
|
background: var(--base-background);
|
|
color: var(--base-text);
|
|
|
|
> :nth-child(odd) {
|
|
background: var(--alt-row-background);
|
|
color: var(--alt-row-text);
|
|
}
|
|
|
|
label, .label {
|
|
box-sizing: border-box;
|
|
padding: 2px 4px;
|
|
text-transform: uppercase;
|
|
font-size: var(--font-size-14);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.input-group {
|
|
display: contents;
|
|
}
|
|
}
|