From b012ac4c8f2571fc65cd32bf645b2a02e6e3eb8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Tue, 16 Feb 2021 19:05:56 +0100 Subject: [PATCH] Fix typos --- css/styles.css | 4 ++-- src/revealers.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/styles.css b/css/styles.css index 74c70597..a30b9362 100644 --- a/css/styles.css +++ b/css/styles.css @@ -75,10 +75,10 @@ radio { font-size: 23px; text-shadow: none; } -.reavealertop { +.revealertop { background: transparent; } -.tvmode .reavealertop { +.tvmode .revealertop { min-height: 88px; box-shadow: inset 0px 200px 10px -132px rgba(0,0,0,0.4); font-family: 'Cantarell', sans-serif; diff --git a/src/revealers.js b/src/revealers.js index e939b412..00be6abe 100644 --- a/src/revealers.js +++ b/src/revealers.js @@ -36,7 +36,7 @@ class ClapperCustomRevealer extends Gtk.Revealer else this._setHideTimeout(); - /* Restore focusability after we are done */ + /* Restore focus ability after we are done */ if(!isReveal) this.set_can_focus(true); this._timedReveal(isReveal, REVEAL_TIME); @@ -133,7 +133,7 @@ class ClapperRevealerTop extends CustomRevealer orientation: Gtk.Orientation.VERTICAL, }); revealerBox.add_css_class('osd'); - revealerBox.add_css_class('reavealertop'); + revealerBox.add_css_class('revealertop'); this.headerBar = new HeaderBar(); revealerBox.append(this.headerBar);