42 lines
784 B
CSS
42 lines
784 B
CSS
.folder-icon-button {
|
|
flex: 0 0 86px;
|
|
width: 86px;
|
|
min-width: 86px;
|
|
height: 68px;
|
|
display: grid;
|
|
grid-template-rows: 34px 1fr;
|
|
place-items: center;
|
|
gap: 4px;
|
|
padding: 4px;
|
|
color: #000000;
|
|
background: transparent;
|
|
border: 1px solid transparent;
|
|
font-family: inherit;
|
|
font-size: 12px;
|
|
line-height: 12px;
|
|
}
|
|
|
|
.folder-icon-button img {
|
|
width: 34px;
|
|
height: 34px;
|
|
object-fit: contain;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
.folder-icon-button:hover,
|
|
.folder-icon-button:focus-visible {
|
|
color: #ffffff;
|
|
background: #000078;
|
|
border: 1px dotted #ffffff;
|
|
outline: none;
|
|
}
|
|
|
|
.folder-icon-button-disabled {
|
|
color: #606060;
|
|
}
|
|
|
|
.folder-icon-button-disabled img {
|
|
filter: grayscale(.9);
|
|
opacity: .75;
|
|
}
|