Skip to content

Commit

Permalink
empty action cursor adjustemnt, sidebur nav headers adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminezequiel committed Dec 29, 2024
1 parent 1d90c75 commit 97f24d8
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 15 deletions.
21 changes: 17 additions & 4 deletions src/components/hider.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
.view-header {
display: none;
}
// .view-header {
// display: none;
// }

// .nav-header {
// display: none;
// }

.nav-header {
display: none;
align-items: flex-start;
justify-content: flex-start;
display: flex;
padding: var(--size-2-2);
width: 100%;
padding-top: calc(var(--size-4-2) + 1px); // align with sidebar icons

// idea of border that emulates light
// border-bottom: rgb(from var(--gray-25) r g b / 0.8) 1px solid;
// box-shadow: 0 -1px 0px 0px rgb(from var(--gray-100) r g b / 0.3) inset;
}
39 changes: 35 additions & 4 deletions src/components/menus.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
.theme-dark {
--nav-item-color-active: var(--gray-700);
--nav-item-background-active: var(--gray-100);
--modal-border-color: var(--gray-200)
}

// .vertical-tab-header {
// box-shadow: 4px 400px 160px var(--gray-50) inset !important ;
// }

.nav-file-title.is-active {
// IDEA: maybe add a specific indicator for active file?
// &::before {
// content: '->';
// width: 16px;
// height: 16px;
// position: absolute;
// left: var(--size-2-3);
// color: var(--gray-400);
// }
}

.sidebar-toggle-button.mod-left {
border-right: 1px solid var(--divider-color);
}
Expand Down Expand Up @@ -30,10 +52,15 @@
.theme-dark {
--interactive-normal: var(--gray-100);
--interactive-hover: var(--gray-200);
--interactive-accent: var(--blue-200);
--interactive-accent-hover: var(--blue-300);
--interactive-accent: var(--sea-green-600);
--interactive-accent-hover: var(--sea-green-600);
--text-on-accent: var(--gray-25);
--input-font-weight: 600;
--checkbox-border-color: var(--gray-300)
}
.HyperMD-task-line[data-task="x"] {
color: var(--gray-400) !important;
}

.theme-light {
--interactive-normal: var(--gray-25)
}
Expand All @@ -60,4 +87,8 @@

// body {
// --tab-container-background: var(--gray-50)
// }
// }

.sidebar-toggle-button {
min-width: 40px;
}
3 changes: 3 additions & 0 deletions src/foundations/text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ body {
}


.empty-state-action {
cursor: pointer;
}
36 changes: 29 additions & 7 deletions theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 97f24d8

Please sign in to comment.