mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 09:45:37 +03:00
CSS Tweaks
This commit is contained in:
parent
683e68b036
commit
257855b457
3 changed files with 546 additions and 546 deletions
|
@ -20,12 +20,12 @@
|
||||||
|
|
||||||
.tab-led-strip .mainGrid .gPoint {
|
.tab-led-strip .mainGrid .gPoint {
|
||||||
float: left;
|
float: left;
|
||||||
border: solid 2px #000;
|
border: solid 1px #ADADAD;
|
||||||
width: 28px;
|
width: 30px;
|
||||||
height: 28px;
|
height: 30px;
|
||||||
margin: 3px;
|
margin: 3px;
|
||||||
border-radius: 7px;
|
border-radius: 3px;
|
||||||
background: rgba(0,0,0,.3);
|
background: #ececec;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,9 +52,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .gPoint.mode-a { /* Armed Mode */
|
.tab-led-strip .gPoint.mode-a { /* Armed Mode */
|
||||||
background: blue;
|
background: rgb(52, 155, 255);
|
||||||
box-shadow: inset 0 0 30px rgba(0, 0, 0, .7);
|
box-shadow: inset 0 0 30px rgba(0, 0, 0, .7);
|
||||||
border-color: blue;
|
border-color: rgb(52, 155, 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .gPoint.mode-t { /* Armed Mode */
|
.tab-led-strip .gPoint.mode-t { /* Armed Mode */
|
||||||
|
@ -84,13 +84,13 @@
|
||||||
.tab-led-strip .wire {
|
.tab-led-strip .wire {
|
||||||
color: rgba(255,255,255,.5);
|
color: rgba(255,255,255,.5);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 25px;
|
font-size: 23px;
|
||||||
text-shadow: 1px 1px rgba(0,0,0,.4);
|
text-shadow: 1px 1px rgba(0,0,0,.4);
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
display: block;
|
display: block;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
margin-top: -32px;
|
margin-top: -29px;
|
||||||
width: 28px;
|
width: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.gridWire .gPoint {
|
.gridWire .gPoint {
|
||||||
background: #333 !important;
|
background: #CAFFCD !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*function buttons*/
|
/*function buttons*/
|
||||||
|
@ -164,48 +164,47 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .indicators .north {
|
.tab-led-strip .indicators .north {
|
||||||
top: -4px;
|
top: -5px;
|
||||||
left: 7px;
|
left: 10px;
|
||||||
border-left: 7px solid transparent;
|
border-left: 5px solid transparent;
|
||||||
border-right: 7px solid transparent;
|
border-right: 5px solid transparent;
|
||||||
border-bottom: 7px solid rgba(0,0,0,.8);
|
border-bottom: 5px solid rgba(0,0,0,.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .indicators .south {
|
.tab-led-strip .indicators .south {
|
||||||
bottom: -2px;
|
bottom: -5px;
|
||||||
left: 7px;
|
left: 10px;
|
||||||
border-left: 7px solid transparent;
|
border-left: 5px solid transparent;
|
||||||
border-right: 7px solid transparent;
|
border-right: 5px solid transparent;
|
||||||
border-top: 7px solid rgba(0,0,0,.8);
|
border-top: 5px solid rgba(0,0,0,.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .indicators .east {
|
.tab-led-strip .indicators .east {
|
||||||
bottom: 8px;
|
bottom: 10px;
|
||||||
right: -5px;
|
right: -5px;
|
||||||
border-top: 7px solid transparent;
|
border-top: 5px solid transparent;
|
||||||
border-bottom: 7px solid transparent;
|
border-bottom: 5px solid transparent;
|
||||||
border-left: 7px solid rgba(0,0,0,.8);
|
border-left: 5px solid rgba(0,0,0,.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .indicators .west {
|
.tab-led-strip .indicators .west {
|
||||||
bottom: 8px;
|
bottom: 10px;
|
||||||
left: -5px;
|
left: -5px;
|
||||||
border-top: 7px solid transparent;
|
border-top: 5px solid transparent;
|
||||||
border-bottom: 7px solid transparent;
|
border-bottom: 5px solid transparent;
|
||||||
border-right: 7px solid rgba(0,0,0,.8);
|
border-right: 5px solid rgba(0,0,0,.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .indicators .up {
|
.tab-led-strip .indicators .up {
|
||||||
top: 0px;
|
top: -1px;
|
||||||
left: 2px;
|
left: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .indicators .down {
|
.tab-led-strip .indicators .down {
|
||||||
bottom: 17px;
|
bottom: 13px;
|
||||||
right: 10px;
|
right: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.tab-led-strip .dir-n .north {display: inline;}
|
.tab-led-strip .dir-n .north {display: inline;}
|
||||||
.tab-led-strip .dir-s .south {display: inline;}
|
.tab-led-strip .dir-s .south {display: inline;}
|
||||||
.tab-led-strip .dir-e .east {display: inline;}
|
.tab-led-strip .dir-e .east {display: inline;}
|
||||||
|
@ -226,6 +225,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 160px;
|
height: 160px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .tempOutput {
|
.tab-led-strip .tempOutput {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: rgba(0,0,0,.2);
|
background: rgba(0,0,0,.2);
|
||||||
|
@ -257,7 +257,6 @@
|
||||||
float: right;
|
float: right;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .wires-remaining div {
|
.tab-led-strip .wires-remaining div {
|
||||||
|
@ -275,12 +274,13 @@
|
||||||
/*******JQUERYUI**********/
|
/*******JQUERYUI**********/
|
||||||
|
|
||||||
.tab-led-strip .ui-selected {
|
.tab-led-strip .ui-selected {
|
||||||
box-shadow: inset 0 0 30px rgba(255, 255, 255, 1) !important;
|
box-shadow: inset 0 0 40px rgba(255, 255, 255, 1) !important;
|
||||||
|
border: solid 1px #000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .ui-selecting {
|
.tab-led-strip .ui-selecting {
|
||||||
box-shadow: inset 0 0 30px rgba(255, 255, 255, .7) !important;
|
box-shadow: inset 0 0 40px rgba(255, 255, 255, 1) !important;
|
||||||
border: solid 2px #c0c0c0 !important;
|
border: solid 1px #000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-led-strip .ui-selectable-helper {
|
.tab-led-strip .ui-selectable-helper {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue