Convert all RGB colors to RGBA colors
This commit is contained in:
parent
3717dcdf57
commit
dd1c8a9149
@ -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;
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user