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:
authorPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-11-02 17:24:56 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-11-02 17:24:56 +0300
commitf18696ab9a17ab6f4195430c61236954860cb7dd (patch)
tree8a09d8268ecf3784c080213cd397537db461d7c0 /src
parent0016746d93ad23e6b81d26ac221ce119cceb3273 (diff)
Dummy 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..bd6e1e44
--- /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: 280px;
+ 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