Convert all six-digit HEX colors to RGBA colors
This commit is contained in:
parent
403a994556
commit
e3c0181357
@ -26,12 +26,12 @@ html {
|
|||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background-color: #f4f4f4;
|
background-color: rgba(244, 244, 244, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
header h1 {
|
header h1 {
|
||||||
border-bottom: 1px solid #d8d8d8;
|
border-bottom: 1px solid rgba(216, 216, 216, 1);
|
||||||
color: #858585;
|
color: rgba(133, 133, 133, 1);
|
||||||
font-size: 23px;
|
font-size: 23px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@ -230,7 +230,7 @@ canvas {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#errorWrapper {
|
#errorWrapper {
|
||||||
background: none repeat scroll 0 0 #FF5555;
|
background: none repeat scroll 0 0 rgba(255, 85, 85, 1);
|
||||||
color: rgba(255, 255, 255, 1);
|
color: rgba(255, 255, 255, 1);
|
||||||
left: 0;
|
left: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -250,7 +250,7 @@ canvas {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#errorMoreInfo {
|
#errorMoreInfo {
|
||||||
background-color: #FFFFFF;
|
background-color: rgba(255, 255, 255, 1);
|
||||||
color: rgba(0, 0, 0, 1);
|
color: rgba(0, 0, 0, 1);
|
||||||
padding: 0.3rem;
|
padding: 0.3rem;
|
||||||
margin: 0.3rem;
|
margin: 0.3rem;
|
||||||
|
@ -157,7 +157,7 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 200;
|
z-index: 200;
|
||||||
max-width: 20em;
|
max-width: 20em;
|
||||||
background-color: #FFFF99;
|
background-color: rgba(255, 255, 153, 1);
|
||||||
box-shadow: 0px 2px 5px rgba(136, 136, 136, 1);
|
box-shadow: 0px 2px 5px rgba(136, 136, 136, 1);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
|
@ -34,7 +34,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #404040;
|
background-color: rgba(64, 64, 64, 1);
|
||||||
background-image: url(images/texture.png);
|
background-image: url(images/texture.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -217,7 +217,7 @@ html[dir='rtl'] #outerContainer.sidebarOpen #viewerContainer:not(.pdfPresentatio
|
|||||||
#toolbarSidebar {
|
#toolbarSidebar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
background-color: #424242; /* fallback */
|
background-color: rgba(66, 66, 66, 1); /* fallback */
|
||||||
background-image: url(images/texture.png),
|
background-image: url(images/texture.png),
|
||||||
linear-gradient(rgba(77, 77, 77, 0.99), rgba(64, 64, 64, 0.95));
|
linear-gradient(rgba(77, 77, 77, 0.99), rgba(64, 64, 64, 0.95));
|
||||||
}
|
}
|
||||||
@ -252,7 +252,7 @@ html[dir='rtl'] #sidebarResizer {
|
|||||||
#toolbarContainer, .findbar, .secondaryToolbar {
|
#toolbarContainer, .findbar, .secondaryToolbar {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
background-color: #474747; /* fallback */
|
background-color: rgba(71, 71, 71, 1); /* fallback */
|
||||||
background-image: url(images/texture.png),
|
background-image: url(images/texture.png),
|
||||||
linear-gradient(rgba(82, 82, 82, 0.99), rgba(69, 69, 69, 0.95));
|
linear-gradient(rgba(82, 82, 82, 0.99), rgba(69, 69, 69, 0.95));
|
||||||
}
|
}
|
||||||
@ -456,7 +456,7 @@ html[dir='ltr'] .doorHangerRight:before {
|
|||||||
|
|
||||||
#findMsg {
|
#findMsg {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: #A6B7D0;
|
color: rgba(166, 183, 208, 1);
|
||||||
}
|
}
|
||||||
#findMsg:empty {
|
#findMsg:empty {
|
||||||
display: none;
|
display: none;
|
||||||
@ -901,7 +901,7 @@ html[dir="rtl"] #viewOutline.toolbarButton::before {
|
|||||||
top: 1px;
|
top: 1px;
|
||||||
/* Create a filled circle, with a diameter of 9 pixels, using only CSS: */
|
/* Create a filled circle, with a diameter of 9 pixels, using only CSS: */
|
||||||
content: '';
|
content: '';
|
||||||
background-color: #70DB55;
|
background-color: rgba(112, 219, 85, 1);
|
||||||
height: 9px;
|
height: 9px;
|
||||||
width: 9px;
|
width: 9px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
@ -1314,7 +1314,7 @@ html[dir='rtl'] .outlineItemToggler::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#errorWrapper {
|
#errorWrapper {
|
||||||
background: none repeat scroll 0 0 #FF5555;
|
background: none repeat scroll 0 0 rgba(255, 85, 85, 1);
|
||||||
color: rgba(255, 255, 255, 1);
|
color: rgba(255, 255, 255, 1);
|
||||||
left: 0;
|
left: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -1336,7 +1336,7 @@ html[dir='rtl'] .outlineItemToggler::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#errorMoreInfo {
|
#errorMoreInfo {
|
||||||
background-color: #FFFFFF;
|
background-color: rgba(255, 255, 255, 1);
|
||||||
color: rgba(0, 0, 0, 1);
|
color: rgba(0, 0, 0, 1);
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
margin: 3px;
|
margin: 3px;
|
||||||
@ -1375,7 +1375,7 @@ html[dir='rtl'] .outlineItemToggler::before {
|
|||||||
color: rgba(217, 217, 217, 1);
|
color: rgba(217, 217, 217, 1);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
background-color: #474747; /* fallback */
|
background-color: rgba(71, 71, 71, 1); /* fallback */
|
||||||
background-image: url(images/texture.png),
|
background-image: url(images/texture.png),
|
||||||
linear-gradient(rgba(82, 82, 82,0.99), rgba(69, 69, 69, 0.95));
|
linear-gradient(rgba(82, 82, 82,0.99), rgba(69, 69, 69, 0.95));
|
||||||
border: 1px solid rgba(0, 0, 0, 0.5);
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
||||||
@ -1460,7 +1460,7 @@ html[dir='rtl'] #documentPropertiesOverlay .row > * {
|
|||||||
|
|
||||||
#PDFBug {
|
#PDFBug {
|
||||||
background: none repeat scroll 0 0 rgba(255, 255, 255, 1);
|
background: none repeat scroll 0 0 rgba(255, 255, 255, 1);
|
||||||
border: 1px solid #666666;
|
border: 1px solid rgba(102, 102, 102, 1);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 32px;
|
top: 32px;
|
||||||
right: 0;
|
right: 0;
|
||||||
@ -1470,9 +1470,9 @@ html[dir='rtl'] #documentPropertiesOverlay .row > * {
|
|||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
#PDFBug .controls {
|
#PDFBug .controls {
|
||||||
background:#EEEEEE;
|
background: rgba(238, 238, 238, 1);
|
||||||
border-bottom: 1px solid #666666;
|
border-bottom: 1px solid rgba(102, 102, 102, 1);
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
#PDFBug .panels {
|
#PDFBug .panels {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user