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/ports.css
parentd1d724efb3d49c60892901b6a64e784fc572ee0c (diff)
CSS files moved to src folder
Diffstat (limited to 'src/css/tabs/ports.css')
-rw-r--r--src/css/tabs/ports.css98
1 files changed, 98 insertions, 0 deletions
diff --git a/src/css/tabs/ports.css b/src/css/tabs/ports.css
new file mode 100644
index 00000000..ab40e07a
--- /dev/null
+++ b/src/css/tabs/ports.css
@@ -0,0 +1,98 @@
+.tab-ports {
+ position: relative;
+}
+
+#tab-ports-templates {
+ display: none;
+}
+
+.tab-ports table {
+ margin-bottom: 10px;
+ width: 100%;
+ border-collapse: collapse;
+}
+
+.tab-ports table, .tab-ports table th, .tab-ports table td {
+ border-left: 0px;
+ border-right: 0px;
+ border-top: 0px;
+}
+
+.tab-ports table tr td:first-child {
+ text-align: left;
+}
+
+.tab-ports table td {
+ border-bottom: 1px solid #e4e4e4;
+ padding: 6px 5px 7px 5px;
+ border-left: 1px solid #e4e4e4;
+ border-right: 1px solid #e4e4e4;
+}
+
+.tab-ports table thead tr:first-child, .tab-ports table tr:nth-child(even) {
+ background-color: #f9f9f9;
+}
+
+.tab-ports table thead tr:first-child {
+ background-color: #e4e4e4;
+ font-size: 12px;
+ height: 25px;
+ font-family: 'open_sansregular', Arial;
+ border-top: 0px;
+ border-right: 0px;
+ border-left: 0px;
+}
+
+.tab-ports .function input {
+ vertical-align: -2px;
+}
+
+.tab-ports .function label {
+ margin-right: 5px;
+}
+
+.tab-ports select {
+ border: 1px solid silver;
+ margin-right: 3px;
+}
+
+.tab-ports .require-support {
+ display: none;
+}
+
+.tab-ports.supported .require-support {
+ display: block;
+}
+
+.tab-ports .require-upgrade {
+ display: block;
+}
+
+.tab-ports.supported .require-upgrade {
+ display: none;
+}
+
+.tab-ports .ports thead td {
+ text-align: left;
+ white-space: nowrap;
+ padding: 5px 7px;
+ background-color: #828885;
+ color: white;
+}
+
+.tab-ports .ports thead td:first-child {
+ border-top-left-radius: 5px;
+ border-left: 0px;
+}
+
+.tab-ports .ports thead td:last-child {
+ border-top-right-radius: 5px;
+ border-right: 0px;
+}
+
+@media only screen and (max-width: 1055px) , only screen and (max-device-width: 1055px) {
+ .tab-ports table thead tr:first-child {
+ font-size: 12px;
+ height: 22px;
+ }
+} \ No newline at end of file