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

logic.css « css « src - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f70c9e6e7d18dacb54f040fe16f4c9f0070d9fb1 (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
.logic__background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.75;
    z-index: 2001;
}

.logic__content {
    position: fixed;
    top: 2em;
    bottom: 2em;
    left: 4em;
    right: 4em;
    background-color: #efefef;
    border-radius: 2px;
    z-index: 2002;
    padding: 2em;
}

.logic__content--wrapper {
    overflow-y: auto;
    margin-bottom: 30px;
    position: absolute;
    left: 2em;
    right: 2em;
    top: 65px;
    bottom: 35px;
}

input.logic_element__operand--value {
    float: none;
    width: 9em;
}

.logic__content--buttons {
    left: 0;
    right: 0;
}

.logic_cell__operandA,
.logic_cell__operandB {
    text-align: left;
}

.logic_cell__active_marker {
    border: 1px solid #aaa;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    display: inline-block;
}

.logic_cell__active_marker--active {
    background-color:rgb(55, 168, 219);
}

.logic_cell__active_marker--inactive {
    background-color:transparent;
}