diff options
author | William Jon McCann <[email protected]> | 2012-12-23 10:49:58 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-05 17:52:41 +0200 |
commit | dc1432d75bf5650b6f17d4d95df58758a05a4cf6 (patch) | |
tree | 416b726843c9ccc2651714f80342f3a2a8035d95 /shell | |
parent | bc7af6015676aee9d14c2c4dd522c484c4551d2a (diff) | |
download | atril-dc1432d75bf5650b6f17d4d95df58758a05a4cf6.tar.bz2 atril-dc1432d75bf5650b6f17d4d95df58758a05a4cf6.tar.xz |
view: Use a rendered frame instead of custom border
So it can be styled with CSS.
https://bugzilla.gnome.org/show_bug.cgi?id=653294
origin commit:
https://git.gnome.org/browse/evince/commit/?h=gnome-3-8&id=7a6b53a
https://git.gnome.org/browse/evince/commit/?h=gnome-3-8&id=4657961
Diffstat (limited to 'shell')
-rw-r--r-- | shell/atril.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/shell/atril.css b/shell/atril.css index 9cffc6be..dd9f4c92 100644 --- a/shell/atril.css +++ b/shell/atril.css @@ -9,6 +9,24 @@ padding: 8px; } +evview.document-page { + border-color: black; + border-style: solid; + border-width: 1px; + border-radius: 0px; + border-image: none; + padding: 0; +} + +evview.document-page:active { + border-color: @theme_selected_bg_color; + border-style: solid; + border-width: 1px; + border-radius: 0px; + border-image: none; + padding: 0; +} + evpresentationview { background-color: black; } |