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

Commit 88beff9

Browse files
committed
tweaks to top nav
1 parent d3d2721 commit 88beff9

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

src/injected-content/pages/site-wide.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ export function apply(settings, user) {
1818
$("a[href='/dashboard/onboarding']").hide();
1919
});
2020

21-
waitForElementAvailablity("[class*='getEmbersButtonBackground'").then(emberBtn => {
22-
emberBtn.css('background', 'transparent');
21+
waitForElementAvailablity("[class*='getEmbersButton_'").then(emberBtn => {
22+
emberBtn.css('margin', '0');
23+
emberBtn
24+
.children()
25+
.first()
26+
.css('background', 'transparent');
2327
emberBtn
2428
.find("[class^='content_']")
2529
.contents()

src/injected-content/scss/_info-panel.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
display: flex;
33
flex-direction: column;
44
height: 100%;
5-
margin: auto 0;
6-
margin-right: 10px;
5+
margin: auto 10px auto 5px;
76
font-size: 14px;
87
font-family: Industrywf, "Segoe UI", sans-serif !important;
98
#me-username {

src/injected-content/scss/themes/_elixr-dark.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ body.elixr-dark {
1515
background-image: none !important;
1616
}
1717

18-
b-app .view-area {
19-
background: #1d243a;
20-
}
21-
2218
b-nav-host div[class^="navContainer"][class*="collapsed"] div[class^="content"] {
2319
background: #2E333A !important;
2420
}
@@ -181,5 +177,9 @@ body.elixr-dark {
181177
b-more-menu-mobile > .more-menu {
182178
background: #1d1f23 !important;
183179
}
184-
180+
181+
// keep dashboard area blue for now
182+
b-app .view-area {
183+
background: #1d243a;
184+
}
185185
}

src/injected-content/scss/themes/_elixr-obsidian.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,5 +198,10 @@ body.elixr-obsidian {
198198
b-more-menu-mobile > .more-menu {
199199
background: $headerSecondary !important;
200200
}
201+
202+
// keep dashboard area blue for now
203+
b-app .view-area {
204+
background: #1d243a;
205+
}
201206

202207
}

0 commit comments

Comments
 (0)