WiFi sections hiding, STA auto enable on scan click, Terminal colors preview, better explanations, CONFIGURABLE UART
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -1,5 +1,13 @@
|
||||
@import "buttons";
|
||||
|
||||
#{$all-text-inputs}, select, label.select-wrap {
|
||||
width: $form-field-w;
|
||||
}
|
||||
|
||||
input[type="number"], input.short, select.short {
|
||||
width: $form-field-w/2;
|
||||
}
|
||||
|
||||
#{$all-text-inputs}, select {
|
||||
border: 0 none;
|
||||
border-bottom: 2px solid $c-form-highlight;
|
||||
|
||||
@@ -1,14 +1,6 @@
|
||||
// Unified Form wrapper
|
||||
form { @include naked(); }
|
||||
|
||||
#{$all-text-inputs}, select, label.select-wrap {
|
||||
width: $form-field-w;
|
||||
}
|
||||
|
||||
input[type="number"], input.short {
|
||||
width: $form-field-w/2;
|
||||
}
|
||||
|
||||
.Box.errors {
|
||||
.list {
|
||||
color: crimson;
|
||||
@@ -45,7 +37,8 @@ input[type="number"], input.short {
|
||||
}
|
||||
}
|
||||
|
||||
&.buttons {
|
||||
// buttons2 is the same style, but different selector for use in the admin page
|
||||
&.buttons, &.buttons2 {
|
||||
margin: 16px auto;
|
||||
input, .button {
|
||||
margin-right: dist(-1);
|
||||
|
||||
@@ -79,9 +79,19 @@
|
||||
|
||||
.Row.explain {
|
||||
max-width: 600px; margin-left: 0;
|
||||
line-height: 1.2;
|
||||
|
||||
@include media($phone) {
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
&.nomargintop {
|
||||
margin-top: 12px !important;
|
||||
}
|
||||
|
||||
&.padleft {
|
||||
|
||||
}
|
||||
}
|
||||
&.mobopen .Row.explain {
|
||||
margin-top: 12px; // default from .Row
|
||||
@@ -97,11 +107,12 @@
|
||||
h2 {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
padding-right: 1.3rem;
|
||||
padding: 2px 1.3rem 2px 5px;
|
||||
margin: 0 -5px 0 -5px;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
right: 4px;
|
||||
content: '▸';
|
||||
|
||||
top:50%;
|
||||
|
||||
@@ -48,3 +48,13 @@
|
||||
color: $c-form-label-fg;
|
||||
}
|
||||
}
|
||||
|
||||
#content {
|
||||
// fade in effect
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s ease-in;
|
||||
}
|
||||
|
||||
#content.load {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
padding: dist(-2);
|
||||
margin-bottom: dist(-2);
|
||||
margin-top: dist(-2);
|
||||
font-size: 110%;
|
||||
}
|
||||
|
||||
#ap-noscan {
|
||||
|
||||
Reference in New Issue
Block a user