mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-12-22 03:32:12 -08:00
Add cancel button to login options for later.
This commit is contained in:
parent
2e0ece9d0b
commit
8b23847c29
@ -970,19 +970,15 @@ body, button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#loginOptionsContent {
|
#loginOptionsContent {
|
||||||
background: rgba(0, 0, 0, 0.50);
|
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
height: 450px;
|
position: relative;
|
||||||
width: 350px;
|
top: -5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loginOptionsMainContent {
|
.loginOptionsMainContent {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: relative;
|
|
||||||
height: 100%;
|
|
||||||
padding-top: 25px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.loginOptionActions {
|
.loginOptionActions {
|
||||||
@ -1016,6 +1012,35 @@ body, button {
|
|||||||
text-shadow: 0px 0px 20px white;
|
text-shadow: 0px 0px 20px white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#loginOptionCancelContainer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loginOptionCancelButton {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
padding: 2px 0px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: lightgrey;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: none;
|
||||||
|
transition: 0.25s ease;
|
||||||
|
}
|
||||||
|
#loginOptionCancelButton:hover,
|
||||||
|
#loginOptionCancelButton:focus {
|
||||||
|
text-shadow: 0px 0px 20px lightgrey;
|
||||||
|
}
|
||||||
|
#loginOptionCancelButton:active {
|
||||||
|
text-shadow: 0px 0px 20px rgba(211, 211, 211, 0.75);
|
||||||
|
color: rgba(211, 211, 211, 0.75);
|
||||||
|
}
|
||||||
|
#loginOptionCancelButton:disabled {
|
||||||
|
color: rgba(211, 211, 211, 0.75);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* *
|
* *
|
||||||
|
@ -25,6 +25,9 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="loginOptionCancelContainer" style="display: none;">
|
||||||
|
<button id="loginOptionCancelButton">Cancel</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="./assets/js/scripts/loginOptions.js"></script>
|
<script src="./assets/js/scripts/loginOptions.js"></script>
|
||||||
|
Loading…
Reference in New Issue
Block a user