logPanel.scss 1.16 KB
Newer Older
1
2
3
4
5
$buttonsMarginTop: 45px;
$buttonsMarginBottom: 7px;
$navBarHeight: 56px;
$navBarMarginBottom: 18px;

6
.download {
7
8
9
10
11
12
    button,
    button:active,
    button:hover {
        color: #fff;
        border: none;
    }
13
14
15
16
}

/* office-fabric-ui */
.ms-Panel-main {
17
18
    width: 55%;
    background: #fff;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

    .ms-Panel-content {
        padding: 0;
    }

    .ms-Pivot {
        line-height: 56px;
        padding: 0 38px;
        background: #f2f2f2;

        .ms-Pivot-linkContent:hover {
            border-bottom: 2px solid #ccc;
        }

        .is-selected {
            .ms-Pivot-linkContent:hover {
                border: none;
            }
        }
    }
}

Lijiaoa's avatar
Lijiaoa committed
41
42
43
44
45
46
.logPanel {
    .ms-Panel-main {
        width: 80%;
    }
}

47
48
49
50
51
52
53
54
55
56
57
58
.panel {
    padding: 0 38px;
}

// for log panel editor
.logMargin {
    margin-top: 20px;
}

.panelName {
    line-height: $navBarHeight;
    margin-bottom: $navBarMarginBottom;
59
    font-size: 14px;
60
    font-weight: 500;
v-liguo's avatar
v-liguo committed
61
62
}

Lijiao's avatar
Lijiao committed
63
/* log drawer download & close button's row */
64
.buttons {
65
    margin: $buttonsMarginTop 0 $buttonsMarginBottom 0;
66
67
68
69

    .close {
        text-align: right;
    }
v-liguo's avatar
v-liguo committed
70
}
71
72

.configClose {
73
    margin: $buttonsMarginTop 0 $buttonsMarginBottom 0;
74
}