experiment.scss 1.33 KB
Newer Older
1
2
$pageMargin: 24px;

3
.expBackground {
4
5
6
7
8
9
10
11
12
    background: #f2f2f2;
    height: 100%;

    .content {
        /* TODO: here is 32 rather than $pageMargin is because experiment page `content` position */
        margin-top: 32px;
        margin-bottom: $pageMargin;
        background: #fff;
    }
13
14
15
}

.experimentList {
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
    padding: $pageMargin 42px;

    .ms-DetailsRow {
        &:hover,
        &:focus {
            background: #f3f2f1 !important;
        }
    }

    .box {
        margin-top: 20px;

        .search {
            width: 90%;

            &-input {
                width: 330px;
            }
        }

        .filter {
            width: 10%;
            text-align: right;

            &-button-open {
                background: #f3f2f1;
            }
        }
    }

    .filter-condition {
        margin-top: 26px;

        .reset {
            width: 80px;
            position: relative;
            top: 29px;
        }

        &-status {
            width: 194px;
        }

        &-platform {
            width: 150px;
        }
62
63
64
65

        &-date {
            width: 162px;
        }
66
67
68
69
70
71
72
73
74
75
76
    }

    .hidden {
        display: none;
    }

    .margin {
        margin-left: 10px;
    }

    .idColor {
Lijiaoa's avatar
Lijiaoa committed
77
        color: #615f5d;
78
79
80
81
82
    }

    .ms-DetailsRow:focus {
        background: #e1dfdd;
    }
83
}
84
85

.gray-port {
86
    color: #bebebe;
87
}