table.scss 1.26 KB
Newer Older
Lijiao's avatar
Lijiao committed
1
/* react-json-tree background */
2
.description ul,
3
#allList ul {
4
    background: none;
Lijiao's avatar
Lijiao committed
5
6
}

7
.tabScroll {
Lijiao's avatar
Lijiao committed
8
9
    height: 324px;
    overflow: hidden;
10
11

    #succeTable .commonTableStyle {
Lijiaoa's avatar
Lijiaoa committed
12
        overflow-y: auto;
Lijiao's avatar
Lijiao committed
13
14
    }
}
Lijiao's avatar
Lijiao committed
15

16
17
18
#succeTable,
#tableList {
    .commonTableStyle .leftTitle div {
Lijiao's avatar
Lijiao committed
19
20
        text-align: left;
    }
21
22

    .durationsty {
Lijiao's avatar
Lijiao committed
23
24
        width: 80%;
        margin: 0 auto;
25
26

        div {
Lijiao's avatar
Lijiao committed
27
28
29
30
31
            text-align: right;
            margin-right: 9px;
        }
    }
}
32

33
.margin-mediate {
34
35
36
    margin: 0 10px;
}

37
38
.detail-button {
    &-operation {
39
        min-width: 44px;
40
        border: none;
41
        margin-right: 10px;
42
    }
43
44

    i {
45
        color: #fff;
46
    }
47
}
48

49
.detail-table {
50
    padding-top: 5px;
51
}
52
53

.columns-height {
54
    max-height: 335px;
Lijiaoa's avatar
Lijiaoa committed
55
    overflow-y: auto;
56
}
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75

$checkboxwidth: 17px;

.detail-check {
    .ms-Checkbox-checkbox {
        width: $checkboxwidth;
        height: $checkboxwidth;
        border-radius: 50%;
        border: none;

        &:hover {
            border: 1px solid grey;
        }

        i {
            width: 12px;
        }
    }
}
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91

/* trial table: open row style */
.logpath {
    margin: 10px 0 10px 10px;
    font-size: 14px;

    .logName {
        color: #268bd2;
        margin-right: 5px;
    }

    .error {
        color: #cb4b16;
    }
}