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

adjustments.css « tabs « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 814f812be86860e20e34653a46d450ec430decd5 (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
#tab-adjustments-templates {
    display: none;
}

.tab-adjustments .range .marker, .tab-adjustments .channel-slider .noUi-connect {
    background: #37a8db;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.6);
}

.noUi-target {
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.6);
}

.noUi-background {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.6);
    background: #D2D2D2;
}

.tab-adjustments .adjustments {
    width: 100%;
    border-spacing: 0;
}

.tab-adjustments td {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #cccccc;
}

.tab-adjustments .range:first-child {
    border-top: 0;
}

.tab-adjustments .range:last-child {
    border-bottom: 0;
}

.tab-adjustments .adjustments thead td {
    text-align: center;
    white-space: nowrap;
    padding: 10px 10px;
    background-color: #828885;
    color: white;
}

.tab-adjustments .adjustments thead td:first-child {
    border-top-left-radius: 5px;
}

.tab-adjustments .adjustments thead td:last-child {
    border-top-right-radius: 5px;
}

.tab-adjustments .adjustment:nth-child(odd) {
    background-color: #f4f4f4;
}

.tab-adjustments .adjustments {
    background-color: #e4e4e4;
}

.tab-adjustments .adjustment td {
    text-align: center;
}

.tab-adjustments .adjustment .info {
    width: 5%;
    height: 80px;
}

.tab-adjustments .adjustment .info .enabling {
    white-space: nowrap;
}

.tab-adjustments .adjustment .channelInfo {
    width: 5%;
    padding: 0 10px;
}

.tab-adjustments .adjustment .channelInfo .limits {
    padding: 5px 0;
}

.tab-adjustments .adjustment .range {
    width: 65%;
    padding: 0 20px;
}

.tab-adjustments .adjustment .range .channel-slider {
    margin-top: -28px;
}

.tab-adjustments .adjustment .range .marker {
    position: absolute;
    left: 50%;
    top: 27px;
    height: 13px;
    width: 6px;
    margin-left: -3px;
    border-radius: 3px;
}

.tab-adjustments .adjustment .functionSelection {
    width: 5%;
}

.tab-adjustments .adjustment .adjustmentSlot {
    width: 5%;
}

.tab-adjustments .adjustment .functionSwitchChannel {
    width: 5%;
}