Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit 43acec5

Browse files
committed
fix: rename tag css to navigation
1 parent 57335c8 commit 43acec5

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

app/javascripts/renderer/renderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ async function configureWindow(mainThread: any) {
208208
const sheet = window.document.styleSheets[0];
209209
if (isMacOS) {
210210
sheet.insertRule(
211-
'#tags-column { padding-top: 25px !important; }',
211+
'#navigation { padding-top: 25px !important; }',
212212
sheet.cssRules.length
213213
);
214214
}

app/stylesheets/renderer.css

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
transition: 0.15s padding ease;
1010
}
1111

12-
.mac-desktop #app.collapsed-notes.collapsed-tags #editor-column {
12+
.mac-desktop #app.collapsed-notes.collapsed-navigation #editor-column {
1313
padding-top: 18px;
1414
}
1515

16-
.mac-desktop #app.collapsed-tags #notes-column {
16+
.mac-desktop #app.collapsed-navigation #notes-column {
1717
padding-top: 18px;
1818
}
1919

@@ -67,16 +67,17 @@ panel-resizer {
6767
}
6868

6969
/* Required for BrowserWindow titleBarStyle: 'hiddenInset' */
70-
.mac-desktop .tags,
71-
.mac-desktop #tags-title-bar,
70+
.mac-desktop #navigation,
71+
.mac-desktop #navigation .section-title-bar,
7272
.mac-desktop #notes-title-bar,
7373
.mac-desktop #editor-title-bar,
7474
.mac-desktop #lock-screen {
7575
-webkit-app-region: drag;
7676
}
7777

7878
input,
79-
.tags .content,
80-
.component-view-container {
79+
#navigation #navigation-content,
80+
.component-view-container,
81+
.panel-resizer {
8182
-webkit-app-region: no-drag;
8283
}

0 commit comments

Comments
 (0)