+
{!hasChanges &&
files.items.some((folder) => folder.items.length > 0) ? (
@@ -155,7 +155,7 @@ function WorkspaceDirectory({
) : (
)}
-
Name
+
Name
diff --git a/frontend/src/index.css b/frontend/src/index.css
index b8109f4113f..a971f91eaf3 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -872,6 +872,12 @@ dialog::backdrop {
color: #fff;
}
+.file-row {
+ border-left: none !important;
+ border-right: none !important;
+ border-top: none !important;
+}
+
.file-row:nth-child(even) {
@apply bg-theme-bg-primary;
background-color: var(--theme-file-row-even);
@@ -890,6 +896,11 @@ dialog::backdrop {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
+[data-theme="light"] .file-row.selected:nth-child(even),
+[data-theme="light"] .file-row.selected:nth-child(odd) {
+ border-bottom: 1px solid rgba(222, 222, 222, 0.5);
+}
+
/* Flex upload modal to be a column when on small screens so that the UI
does not extend the close button beyond the viewport. */
@media (max-width: 1330px) {