1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#ev-fullscreen-toolbar {
-GtkToolbar-shadow-type: none;
}
#ev-loading-message {
background-color: @theme_bg_color;
color: @theme_fg_color;
border-radius: 10px;
padding: 10px;
}
.content-view.document-page {
border-style: solid;
border-width: 3px 3px 6px 4px;
border-image: url("resource:///org/gnome/evince/ui/thumbnail-frame.png") 3 3 6 4;
background-color: @theme_bg_color;
}
evview {
background-color: @theme_bg_color;
}
evview:selected {
background-color: @theme_selected_bg_color;
}
evview.document-page {
background-color: white;
padding: 0;
}
evview.document-page.inverted {
background-color: black;
}
evsidebarthumbnails.page-thumbnail {
background-color: white;
border: 1px solid black;
}
evsidebarthumbnails.page-thumbnail.inverted {
background-color: black;
}
@binding-set MoveCursor {
unbind "<Control>p";
unbind "<Control>n";
}
iconview {
-gtk-key-bindings: MoveCursor;
}
evpresentationview {
background-color: black;
}
evpresentationview.white-mode {
background-color: white;
}
.inline-toolbar {
border-width: 0 0 1px;
border-radius: 0;
}
|