Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaweł Spychalski <pspychalski@gmail.com>2019-11-20 11:58:33 +0300
committerGitHub <noreply@github.com>2019-11-20 11:58:33 +0300
commit7cce386aabf5192b4f29eab89ddf9da6d3f2cdc6 (patch)
tree70720dd49ceb49aa559131e0f4599685f421c496 /src
parentde4b5c85bafed61fe150fbe77ee4b9b5c205745f (diff)
parent4b43259f9e63c9db286f22c8ee1dbc9a1469a09e (diff)
Merge pull request #851 from iNavFlight/dzikuvx-mandatory-defaults-dialog
Defaults dialog
Diffstat (limited to 'src')
-rw-r--r--src/css/defaults_dialog.css45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/css/defaults_dialog.css b/src/css/defaults_dialog.css
new file mode 100644
index 00000000..7dcf0860
--- /dev/null
+++ b/src/css/defaults_dialog.css
@@ -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;
+} \ No newline at end of file