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
diff options
context:
space:
mode:
authorPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2017-06-04 20:29:50 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2017-06-04 20:29:50 +0300
commit36358ae175c2742ab27ead1de41751fd7d1ccc45 (patch)
tree14357eaf3cf69baae9f3e2c2ea79b1f36f2de92a /src/css/tabs/cli.css
parentd1d724efb3d49c60892901b6a64e784fc572ee0c (diff)
CSS files moved to src folder
Diffstat (limited to 'src/css/tabs/cli.css')
-rw-r--r--src/css/tabs/cli.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/css/tabs/cli.css b/src/css/tabs/cli.css
new file mode 100644
index 00000000..52597896
--- /dev/null
+++ b/src/css/tabs/cli.css
@@ -0,0 +1,59 @@
+.tab-cli {
+ height: 100%;
+}
+
+.tab-cli .content_wrapper {
+ height: calc(100% - 50px);
+}
+
+.tab-cli p {
+ padding: 0;
+ border: 0 dotted silver;
+}
+
+.tab-cli .note {
+ margin-bottom: 20px;
+}
+
+.tab-cli .backdrop {
+ border: 1px solid silver;
+ margin-top: 0;
+ height: calc(100% - 90px); /* - (p, textarea) */
+ background: rgba(0, 0, 0, 0.75) url("../../../images/light-wide-1.svg") no-repeat 50% 80%;
+ background-size: 600px;
+ border-radius: 5px;
+ box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.80);
+ width: 100%;
+}
+
+.tab-cli .window {
+ height: 100%;
+ width: 100%;
+ padding: 5px;
+ overflow-y: scroll;
+ overflow-x: hidden;
+ font-family: monospace;
+ color: white;
+ box-sizing: border-box;
+ -webkit-user-select: text;
+ float: left;
+}
+
+.tab-cli textarea {
+ -webkit-box-sizing: border-box;
+ width: 100%;
+ margin-top: 8px;
+ height: 22px;
+ line-height: 20px;
+ padding-left: 5px;
+ border: 1px solid silver;
+ resize: none;
+}
+
+.tab-cli #content-watermark {
+ z-index: 0;
+}
+
+.tab-cli .window .wrapper {
+ white-space: pre-wrap;
+} \ No newline at end of file