1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Merge pull request #851 from iNavFlight/dzikuvx-mandatory-defaults-dialog

Defaults dialog
This commit is contained in:
Paweł Spychalski 2019-11-20 09:58:33 +01:00 committed by GitHub
commit 7cce386aab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 586 additions and 203 deletions

View file

@ -0,0 +1,45 @@
.defaults-dialog__background {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: black;
opacity: 0.75;
z-index: 2001;
}
.defaults-dialog__content {
background-color: #efefef;
border-radius: 2px;
z-index: 2002;
position: absolute;
width: 500px;
height: 320px;
overflow-y: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
padding: 1em;
}
.defaults-dialog__content--wrapper {
overflow-y: auto;
}
.defaults-dialog__info {
font-size: 1.3em;
}
.defaults_btn {
float: none;
display: block;
margin-top: 1em;
}
.defaults_btn a {
font-size: 1.4em;
line-height: 25px;
}