aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2019-05-01 14:30:17 +0200
committerTeddy Wing2019-05-01 14:30:17 +0200
commit6f12d5feee09725cea71a741ddac4acad0ffbb24 (patch)
tree7f8a0466c89c2505955fc1a31b6ce974e10efee3
parent1daa01861d55999e6afa9ba06071351deca2e0f9 (diff)
downloadmuttagen-6f12d5feee09725cea71a741ddac4acad0ffbb24.tar.bz2
Change `MESSAGE_PAGER` class
Use a class from a deeper element in the hierarchy. This way the action buttons above messages aren't inverted.
-rw-r--r--index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.ts b/index.ts
index d6d99f6..eb34825 100644
--- a/index.ts
+++ b/index.ts
@@ -9,7 +9,7 @@ type GmailCSSClass = string;
const TOOLS_PANEL: GmailCSSClass = 'bAw';
const SIDEBAR: GmailCSSClass = 'aeN';
-const MESSAGE_PAGER: GmailCSSClass = 'nH';
+const MESSAGE_PAGER: GmailCSSClass = 'AO';
type GmailCSSDefinitions = { [selector in GmailCSSClass]: string };