diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-10-20 20:53:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 20:53:18 -0400 |
commit | 9bda0a9eb43e127fdaa0066fba7e3e73c9f74812 (patch) | |
tree | bb76c4263d757ecdd59cb126f8cc31d8ffba93a3 /ext/bg/css/popup-preview.css | |
parent | ecbac2c5ea4aecfb4d43d5beb20792f644e334d0 (diff) |
Popup preview fixes (#948)
* Select just the text node and not its container
* Make background color transparent by default
Diffstat (limited to 'ext/bg/css/popup-preview.css')
-rw-r--r-- | ext/bg/css/popup-preview.css | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/ext/bg/css/popup-preview.css b/ext/bg/css/popup-preview.css index fd8df47a..3828d236 100644 --- a/ext/bg/css/popup-preview.css +++ b/ext/bg/css/popup-preview.css @@ -16,16 +16,13 @@ */ html { - --text-color: #333333; - --background-color: #ffffff; - --theme-transition: background-color 0.25s linear 0s, color 0.25s linear 0s; - transition: var(--theme-transition); - background-color: var(--background-color); - color: var(--text-color); + transition: background-color 0.25s linear 0s, color 0.25s linear 0s; + background-color: rgba(255, 255, 255, 0); + color: #333333; } html.dark { - --text-color: #d4d4d4; - --background-color: #1e1e1e; + color: #d4d4d4; + background-color: #1e1e1e; } html, body { @@ -99,7 +96,9 @@ body { top: 0; right: 0; bottom: 0; - background-color: var(--background-color); +} +.example-text-input:not([hidden])+.example-text { + visibility: hidden; } .popup-placeholder { |