Added option to dismiss Java download prompt.

You will be given an option to install Java manually. Selecting this will bring you to a final prompt which gives some useful information about installing Java and where you can find help. You have two options on this prompt. The first is to simply aknowledge it, which will dismiss it. The second is to go back to the first prompt.
This commit is contained in:
Daniel Scalzi
2018-04-14 22:20:59 -04:00
parent 66a3854a24
commit 631c3cd6d4
3 changed files with 74 additions and 8 deletions

View File

@@ -1417,6 +1417,12 @@ p {
font-weight: bold;
}
#overlayActionContainer {
display: flex;
flex-direction: column;
justify-content: center;
}
#overlayAcknowledge {
background: none;
border: 1px solid #ffffff;
@@ -1436,4 +1442,18 @@ p {
#overlayAcknowledge:active {
border-color: rgba(255, 255, 255, 0.75);
color: rgba(255, 255, 255, 0.75);
}
#overlayDismiss {
font-family: 'Avenir Book';
font-weight: bold;
font-size: 10px;
text-decoration: none;
padding-top: 2.5px;
}
#overlayDismiss:hover {
color: rgba(255, 255, 255, 0.75);
}
#overlayDismiss:active {
color: rgba(165, 165, 165, 0.75);
}