"src/vscode:/vscode.git/clone" did not exist on "7e23d5c4e41fd29138a2614af18af47c3ed80345"
search.scss 995 Bytes
Newer Older
Lijiao's avatar
Lijiao committed
1
/* some buttons in trial-detail table */
2
.allList {
3
4
    width: 96%;
    margin: 0 auto;
5
    margin-top: 15px;
6
    position: relative;
7

8
    &-compare {
9
        margin-top: 15px;
10
    }
11
12

    /* compare button style */
13
    &-button-gap {
14
        margin-right: 10px;
15
16
17
18
    }

}

19
20
/* each row's Intermediate btn -> Modal */
.selectKeys {
21
    /* intermediate result is dict, select box for keys */
22
    .select {
23
24
        margin-right: 6%;
        margin-bottom: 15px;
25
    }
26
27

    .ms-Dropdown {
28
29
30
        width: 120px;
    }
}
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

$filterConditionsHeight: 54px;

.filterConditions {
    height: $filterConditionsHeight;
    line-height: $filterConditionsHeight;
    padding: 0 15px;

    .btn-vertical-middle {
        margin-top: 11px;
    }

    .input {
        width: 100px;
        height: 24px;
        margin-top: 13px;
        border: 1px solid #333;
        border-radius: 20px;
        outline: none;
    }

    .and {
        margin: 0 4px;
    }
}

.ms-ContextualMenu-Callout {
    display: block;
}