feat: add monet support in MMRL

This commit is contained in:
KOWX712
2025-03-25 15:05:26 +08:00
parent 6a26150e50
commit b11fe1dd61
10 changed files with 139 additions and 283 deletions
+9 -31
View File
@@ -7,7 +7,8 @@
width: 90%;
max-width: 600px;
height: 80vh;
background-color: #fff;
color: var(--text-primary);
background-color: var(--bg-secondary);
border-radius: 15px;
display: flex;
flex-direction: column;
@@ -19,18 +20,18 @@
display: flex;
align-items: center;
padding: 10px;
border-bottom: 2px solid #ccc;
border-bottom: 2px solid var(--border-color);
}
.current-path .separator {
color: #6E6E6E;
color: var(--text-secondary);
padding: 0 4px;
}
.back-button {
background: none;
border: none;
fill: #6E6E6E;
fill: var(--border-color);
user-select: none;
}
@@ -39,13 +40,14 @@
font-size: 16px;
overflow: scroll;
white-space: nowrap;
user-select: none;
}
.close-selector {
background: none;
border: none;
font-size: 20px;
color: #ccc;
color: var(--border-color);
padding: 0 5px;
}
@@ -66,7 +68,7 @@
align-items: center;
padding: 10px;
border-radius: 8px;
background-color: #fff;
background-color: var(--bg-secondary);
position: relative;
overflow: hidden;
user-select: none;
@@ -75,7 +77,7 @@
.file-item svg {
flex-shrink: 0;
margin-right: 10px;
fill: #6E6E6E;
fill: var(--text-secondary);
}
.file-item span {
@@ -83,28 +85,4 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (prefers-color-scheme: dark) {
.file-selector {
background-color: #343434;
color: #fff;
}
.file-selector-header {
border-bottom: 2px solid #232323;
}
.file-item {
background-color: #343434;
}
.current-path .separator {
color: #C2C2C2;
}
.file-item svg,
.back-button {
fill: #C2C2C2;
}
}