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
|
#ev-fullscreen-toolbar {
}
#ev-loading-message {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
border-radius: 3px;
padding: 8px;
}
evview.document-page {
background-color: white;
border-color: black;
border-style: solid;
border-width: 1px;
border-radius: 0px;
border-image: none;
padding: 0;
}
evview.document-page:active {
background-color: white;
border-color: @theme_selected_bg_color;
border-style: solid;
border-width: 1px;
border-radius: 0px;
border-image: none;
padding: 0;
}
evview.document-page.inverted {
background-color: black;
}
evpresentationview {
background-color: black;
}
evpresentationview.white-mode {
background-color: white;
}
|