Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 15 additions & 0 deletions apps/web/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,7 @@ button {

.ribbon-search-input::placeholder {
color: var(--fg-muted);
user-select: none;
}

.ribbon-actions {
Expand Down Expand Up @@ -394,6 +395,7 @@ button {
align-items: center;
gap: 12px;
padding: 24px 12px;
user-select: none;
}

.sidebar-no-tome-message {
Expand Down Expand Up @@ -423,6 +425,7 @@ button {
flex-direction: column;
gap: 8px;
padding: 4px;
user-select: none;
}

.search-input,
Expand All @@ -449,6 +452,7 @@ button {
background: var(--bg);
color: var(--fg);
font-size: 12px;
user-select: none;
}

/* Search/results and find/replace UI */
Expand All @@ -464,6 +468,10 @@ button {
padding: 0;
}

.tag-list {
user-select: none;
}

.search-results {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -912,6 +920,7 @@ button {
align-items: center;
gap: 8px;
margin-right: 8px;
user-select: none;
}

.status-action-btn {
Expand Down Expand Up @@ -945,6 +954,7 @@ button {
height: 100%;
overflow: auto;
padding: 0 8px 24px;
user-select: none;
}

.settings-view-header {
Expand Down Expand Up @@ -1016,6 +1026,7 @@ button {
color: var(--fg);
padding: 6px 8px;
font-size: 13px;
user-select: none;
}

.settings-import-btn {
Expand Down Expand Up @@ -1623,6 +1634,7 @@ button {
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
user-select: none;
}

.image-note-preview {
Expand Down Expand Up @@ -1686,6 +1698,7 @@ button {
opacity: 0.55;
transition: opacity 0.15s ease;
pointer-events: none;
user-select: none;
}

.mode-float:hover,
Expand Down Expand Up @@ -1752,6 +1765,7 @@ button {
color: var(--fg);
font-size: 12px;
padding: 3px 6px;
user-select: none;
}

.editor-find-btn {
Expand Down Expand Up @@ -2000,6 +2014,7 @@ button {
padding: 6px 10px;
min-height: 40px;
border-bottom: 1px solid var(--border);
user-select: none;
}

.editor-toolbar-main,
Expand Down
2 changes: 2 additions & 0 deletions packages/note-boards/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@
color: var(--fg-muted);
border-radius: 8px;
padding: 6px 8px;
user-select: none;
}

.board-add-card:hover {
Expand All @@ -376,6 +377,7 @@
border-radius: 10px;
color: var(--fg-muted);
padding: 8px 14px;
user-select: none;
}

.board-add-column:hover {
Expand Down
2 changes: 2 additions & 0 deletions packages/note-calendar/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
color: var(--fg-muted);
border-bottom: 1px solid var(--border);
text-align: center;
user-select: none;
}

.calendar-cell {
Expand All @@ -60,6 +61,7 @@
color: var(--fg);
text-align: left;
overflow: hidden;
user-select: none;
}

.calendar-cell--muted {
Expand Down
1 change: 1 addition & 0 deletions packages/note-canvas/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
flex-direction: column;
height: 100%;
min-height: 0;
user-select: none;
}

.canvas-meta {
Expand Down
1 change: 1 addition & 0 deletions packages/note-grid/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
border-left: 1px solid var(--border);
padding: 8px;
overflow: auto;
user-select: none;
}

.grid-layers-head {
Expand Down
2 changes: 2 additions & 0 deletions packages/note-mermaid/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
gap: 2px;
padding: 6px 10px;
border-block: 1px solid var(--border);
user-select: none;
}

.mermaid-body {
Expand Down Expand Up @@ -54,6 +55,7 @@
align-items: flex-start;
justify-content: center;
background: var(--bg);
user-select: none;
}

.mermaid-diagram {
Expand Down
8 changes: 8 additions & 0 deletions packages/note-tables/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
font-size: 13px;
}

.data-grid th {
user-select: none;
}

.data-grid th,
.data-grid td {
border: 1px solid var(--border);
Expand Down Expand Up @@ -92,6 +96,7 @@
min-width: 34px;
text-align: center;
color: var(--fg-muted);
user-select: none;
}

.grid-gutter .grid-rownum {
Expand All @@ -112,12 +117,14 @@ tr:hover .grid-rownum {

tr:hover .grid-row-delete {
display: inline;
margin-inline: -12px; /* Subtract padding so it doesn't change the cell's size */
}

.table-grid-cell {
min-width: 120px;
height: 28px;
cursor: cell;
user-select: none;
}

.grid-cell--selected {
Expand Down Expand Up @@ -163,6 +170,7 @@ tr:hover .grid-row-delete {
color: var(--fg);
font: inherit;
padding: 3px 6px;
user-select: none;
}

.grid-select:focus {
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/island.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
gap: 2px;
border-bottom: 1px solid var(--border-subtle);
flex-shrink: 0;
user-select: none;
}

/* Island body — scrollable or flex content area */
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
min-width: 168px;
display: flex;
flex-direction: column;
user-select: none;
}

/* Popup menu — relative-anchored dropdown (e.g. overflow, status-bar theme picker) */
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
display: flex;
flex-direction: column;
padding: 4px;
user-select: none;
}

/* Panel section — collapsible card inside a group */
Expand Down