diff options
author | Carlos Garcia Campos <[email protected]> | 2012-12-23 11:28:46 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-07 10:07:45 +0200 |
commit | 027a6581125c209d5f495877657af9e0fcb99678 (patch) | |
tree | 6d40e425426130ebea09657efba1e473e4fd175b /shell | |
parent | df069ae28496c75f14aba837cbb3e2e9556250db (diff) | |
download | atril-027a6581125c209d5f495877657af9e0fcb99678.tar.bz2 atril-027a6581125c209d5f495877657af9e0fcb99678.tar.xz |
view: Fix page background rendering while loading
origin commit:
https://git.gnome.org/browse/evince/commit/?h=gnome-3-8&id=38528f9
Diffstat (limited to 'shell')
-rw-r--r-- | shell/atril.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/atril.css b/shell/atril.css index dd9f4c92..aa8fd65e 100644 --- a/shell/atril.css +++ b/shell/atril.css @@ -10,6 +10,7 @@ } evview.document-page { + background-color: white; border-color: black; border-style: solid; border-width: 1px; @@ -19,6 +20,7 @@ evview.document-page { } evview.document-page:active { + background-color: white; border-color: @theme_selected_bg_color; border-style: solid; border-width: 1px; @@ -27,6 +29,10 @@ evview.document-page:active { padding: 0; } +evview.document-page.inverted { + background-color: black; +} + evpresentationview { background-color: black; } |