HighContrast: print dialog fixes

Fix up the paper drawing.
This commit is contained in:
Matthias Clasen
2019-12-24 12:29:16 -05:00
parent 1ac8bb0128
commit 10d260ec71
3 changed files with 45 additions and 0 deletions

View File

@@ -3549,3 +3549,30 @@ button.emoji-section:backdrop { /* Dodge stuff inherited from backdrop button */
color: $selected_fg_color;
}
}
/****************
* Print dialog *
*****************/
printdialog {
drawing {
color: $fg_color;
background: none;
border: none;
padding: 0;
&:backdrop {
color: $backdrop_fg_color;
border-color: $backdrop_borders_color;
}
paper {
background: white;
color: black;
border: 1px solid $borders_color;
}
}
.dialog-action-box { margin: 12px; }
}

View File

@@ -1621,3 +1621,12 @@ button.emoji-section:checked label, button.emoji-section:backdrop:checked label
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
.emoji :hover { background: #ddd; color: #000; }
/**************** Print dialog * */
printdialog drawing { color: #fff; background: none; border: none; padding: 0; }
printdialog drawing:backdrop { color: #fff; border-color: #737373; }
printdialog drawing paper { background: white; color: black; border: 1px solid gray; }
printdialog .dialog-action-box { margin: 12px; }

View File

@@ -1627,3 +1627,12 @@ button.emoji-section:checked label, button.emoji-section:backdrop:checked label
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
.emoji :hover { background: #000; color: #fff; }
/**************** Print dialog * */
printdialog drawing { color: #000; background: none; border: none; padding: 0; }
printdialog drawing:backdrop { color: #000; border-color: #8d8d8d; }
printdialog drawing paper { background: white; color: black; border: 1px solid gray; }
printdialog .dialog-action-box { margin: 12px; }