feat: thumbnails added
This commit is contained in:
@@ -318,6 +318,104 @@ button:disabled {
|
||||
background: var(--color-list-row-hover);
|
||||
}
|
||||
|
||||
.entry-name {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.entry-media-slot {
|
||||
width: 28px;
|
||||
min-width: 28px;
|
||||
height: 28px;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: 6px;
|
||||
background: var(--color-button-secondary-bg);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.entry-media-slot img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.entry-media-icon {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.entry-media-icon.folder::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 1px;
|
||||
top: 4px;
|
||||
width: 12px;
|
||||
height: 8px;
|
||||
border: 1.5px solid var(--color-text-muted);
|
||||
border-radius: 2px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.entry-media-icon.folder::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 2px;
|
||||
top: 2px;
|
||||
width: 5px;
|
||||
height: 3px;
|
||||
border: 1.5px solid var(--color-text-muted);
|
||||
border-bottom: 0;
|
||||
border-radius: 2px 2px 0 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.entry-media-icon.file::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 2px;
|
||||
top: 1px;
|
||||
width: 9px;
|
||||
height: 12px;
|
||||
border: 1.5px solid var(--color-text-muted);
|
||||
border-radius: 2px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.entry-media-icon.file::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: 1px;
|
||||
top: 1px;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
background: var(--color-button-secondary-bg);
|
||||
border-top: 1.5px solid var(--color-text-muted);
|
||||
border-right: 1.5px solid var(--color-text-muted);
|
||||
transform: skew(-12deg, -12deg);
|
||||
}
|
||||
|
||||
.entry-label {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.settings-option {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin: 10px 0 8px;
|
||||
}
|
||||
|
||||
.list li.is-selected {
|
||||
background: var(--color-selection-bg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user