Welcome to mirror list, hosted at ThFree Co, Russian Federation.

servos.css « tabs « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de4b664e080b5301ef36f94859dda734900f1b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
.tab-servos .title {
    margin-top: 0;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #e4e4e4;
    border-bottom: 0;
    background-color: #DADADA;
    color: #797979;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.tab-servos table {
    margin-bottom: 10px;
    width: 100%;
    border-collapse: collapse;
}

.tab-servos table, .tab-servos table th, .tab-servos table td {
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.tab-servos input[type="number"]::-webkit-inner-spin-button {
    border: 0;
}

.tab-servos .directions .direction select {
    height: 19px;
    line-height: 19px;
}

.tab-servos table th {
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    border: 1px solid #e4e4e4;
}

.tab-servos table td {
    border-bottom: 1px solid #e4e4e4;
    padding: 6px 5px 7px 5px;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
}

.tab-servos table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tab-servos table .main {
    font-weight: bold;
    text-align: center;
    background-color: #ececec;
}

.tab-servos table .channel {
    width: 22px;
    text-align: center;
}

.tab-servos table input {
    border: 1px solid silver;
    border-radius: 3px;
}

.tab-servos table select {
    border: 1px solid silver;
}

.tab-servos table .channel input {
    vertical-align: middle;
}

.tab-servos table input[type="number"] {
    display: block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: right;
}

.tab-servos .direction .name {
    float: left;
    display: block;
    width: 60px;
}

.tab-servos .direction .alternate {
    float: left;
    display: block;
    width: 60px;
}

.tab-servos .direction .first {
    float: left;
    margin: 2px 10px 0 20px;
}

.tab-servos .direction .second {
    float: left;
    margin: 2px 10px 0 0;
}

.tab-servos .direction .rate {
    width: 110px;
    height: 20px;
    text-align: center;
}

.tab-servos .live {
    float: left;
    margin-top: 0px;
}

.tab-servos .live span {
    float: left;
}

.tab-servos .live input {
    float: left;
    margin: 0 0 0 5px;
}

.tab-servos .buttons {
    width: calc(100% - 20px);
    position: absolute;
    bottom: 10px;
}

.tab-servos .live span {
    margin-right: 10px;
}

.tab-servos .wide {
    width: 120px;
} 

.tab-servos .short {
    width: 32px;
}