45 lines
864 B
CSS
45 lines
864 B
CSS
.file-item {
|
|
width: 100%;
|
|
height: 22px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.file-item:hover {
|
|
background-color: rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.file-item:active {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.file-item:has(input:checked) {
|
|
background-color: rgb(55, 55, 61);
|
|
}
|
|
|
|
.file-item:has(input:checked):focus {
|
|
background-color: rgb(4, 57, 94);
|
|
outline-color: rgb(0, 120, 212);
|
|
}
|
|
|
|
.indent-guide {
|
|
border-right: 1px solid rgba(88,88,88,0.4);
|
|
width: 8px;
|
|
display: inline;
|
|
height: 100%;
|
|
}
|
|
|
|
.file-icon {
|
|
display: flex;
|
|
height: 16px;
|
|
width: 16px;
|
|
font-size: 16px;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 6px;
|
|
margin-left: 6px;
|
|
color: #519aba;
|
|
}
|