Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 23 additions & 12 deletions src/resources/solid-custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4493,6 +4493,15 @@ html.dark .solid-paginator-btn:hover:not(:disabled),
box-shadow: -8px 0 12px -12px rgba(15, 23, 42, 0.18);
}

.solid-data-table-td.solid-tree-actions-cell {
vertical-align: middle;
}

.solid-data-table-td.solid-tree-actions-cell > div {
align-items: center;
min-height: 100%;
}

.solid-data-table-head .solid-tree-group-header-cell {
min-height: 42px;
z-index: 10 !important;
Expand Down Expand Up @@ -4684,25 +4693,27 @@ html.dark .solid-paginator-btn:hover:not(:disabled),
}

.solid-tree-row-menu-trigger {
width: 28px;
height: 28px;
min-width: 28px;
padding: 0;
border-radius: 8px;
border: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
background: var(--background);
color: color-mix(in srgb, var(--foreground) 78%, transparent);
display: inline-flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
border-radius: 9px;
border: 1px solid transparent;
background: transparent;
color: color-mix(in srgb, var(--foreground) 76%, transparent);
cursor: pointer;
transition:
background-color 120ms ease,
border-color 120ms ease,
background 120ms ease,
color 120ms ease;
}

.solid-tree-row-menu-trigger:hover {
background: color-mix(in srgb, var(--accent) 92%, transparent);
border-color: color-mix(in srgb, var(--border) 74%, transparent);
color: var(--foreground);
.solid-tree-row-menu-trigger:hover,
.solid-tree-row-menu-trigger[data-state="open"] {
background: var(--accent);
color: var(--accent-foreground);
}

.solid-tree-row-menu .solid-dropdown-menu-item {
Expand Down
6 changes: 2 additions & 4 deletions src/resources/themes/solid-light-modern/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -741,17 +741,15 @@
border-color: var(--solid-border-default) !important;
}

.solid-row-menu-trigger,
.solid-tree-row-menu-trigger {
.solid-row-menu-trigger {
background: #f3ebdd !important;
background-color: #f3ebdd !important;
border-color: var(--solid-border-default) !important;
color: #4e4338 !important;
box-shadow: none !important;
}

.solid-row-menu-trigger:hover,
.solid-tree-row-menu-trigger:hover {
.solid-row-menu-trigger:hover {
background: #ede2d1 !important;
background-color: #ede2d1 !important;
color: #2e2e2e !important;
Expand Down