Convert all RGB colors to RGBA colors

This commit is contained in:
Tim van der Meij 2019-12-25 14:19:09 +01:00
parent 3717dcdf57
commit dd1c8a9149
No known key found for this signature in database
GPG Key ID: 8C3FD2925A5F2762
2 changed files with 7 additions and 6 deletions

View File

@ -35,8 +35,7 @@
.textLayer .highlight { .textLayer .highlight {
margin: -1px; margin: -1px;
padding: 1px; padding: 1px;
background-color: rgba(180, 0, 170, 1);
background-color: rgb(180, 0, 170);
border-radius: 4px; border-radius: 4px;
} }
@ -53,10 +52,12 @@
} }
.textLayer .highlight.selected { .textLayer .highlight.selected {
background-color: rgb(0, 100, 0); background-color: rgba(0, 100, 0, 1);
} }
.textLayer ::selection { background: rgb(0,0,255); } .textLayer ::selection {
background: rgba(0, 0, 255, 1);
}
.textLayer .endOfContent { .textLayer .endOfContent {
display: block; display: block;

View File

@ -466,7 +466,7 @@ html[dir='ltr'] .doorHangerRight:before {
} }
#findInput.notFound { #findInput.notFound {
background-color: rgb(255, 102, 102); background-color: rgba(255, 102, 102, 1);
} }
#toolbarViewerMiddle { #toolbarViewerMiddle {
@ -1511,7 +1511,7 @@ html[dir='rtl'] #documentPropertiesOverlay .row > * {
} }
#viewer.textLayer-visible .canvasWrapper { #viewer.textLayer-visible .canvasWrapper {
background-color: rgb(128,255,128); background-color: rgba(128, 255, 128, 1);
} }
#viewer.textLayer-visible .canvasWrapper canvas { #viewer.textLayer-visible .canvasWrapper canvas {