Various changes and improvements.

Added warning message when console is opened, this is in preparation for alpha.
Added a new background image. Restored random backgrounds on launch (for now).
Changed the overlay dismiss/cancel buttons from anchors to buttons.
This commit is contained in:
Daniel Scalzi
2018-04-26 02:01:46 -04:00
parent 2f66d44824
commit 4b8133474d
7 changed files with 33 additions and 9 deletions

View File

@@ -1326,14 +1326,17 @@ p {
}
/* Main overlay content anchor styles. */
#overlayContent a {
#overlayContent a,
#overlayDismiss {
color: rgba(202, 202, 202, 0.75);
transition: 0.25s ease;
}
#overlayContent a:hover {
#overlayContent a:hover,
#overlayDismiss {
color: rgba(255, 255, 255, 0.75);
}
#overlayContent a:active {
#overlayContent a:active,
#overlayDismiss {
color: rgba(165, 165, 165, 0.75);
}
@@ -1401,6 +1404,10 @@ p {
font-size: 10px;
text-decoration: none;
padding-top: 2.5px;
background: none;
border: none;
outline: none;
cursor: pointer;
}
#overlayDismiss:hover {
color: rgba(255, 255, 255, 0.75);
@@ -1640,6 +1647,10 @@ p {
padding-top: 2.5px;
color: rgba(202, 202, 202, 0.75);
transition: 0.25s ease;
background: none;
border: none;
outline: none;
cursor: pointer;
}
#serverSelectCancel:hover {
color: rgba(255, 255, 255, 0.75);