"vscode:/vscode.git/clone" did not exist on "28bc60dcab1290933c35e77e5b28a95285c34703"
panel.scss 1.02 KB
Newer Older
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
64
$buttonBorderRadius: 23px;

.config {
    position: fixed;
    right: 0;
    z-index: 1000;

    .ms-Button--default {
        padding: 0 8px;
        margin-bottom: 12px;
        border: none;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08);
        border-radius: $buttonBorderRadius 0 0 $buttonBorderRadius;
        font-size: 12px;
        text-align: left;

        .ms-Button-label {
            font-weight: normal;
        }
    }

    .integralBtn {
        display: none;
    }

    .margin {
        margin-left: 10px;
    }
}

.container {
    text-align: right;

    .icon {
        min-width: 50px;

        i {
            font-size: 16px;
        }
    }

    &:hover {
        .icon {
            display: none;
        }

        .integralBtn {
            display: block;
            color: #fff;
            border: 1px solid blue;
            background-color: #0071bc;

            i {
                font-size: 14px;
            }
        }
    }
}

.ms-Fabric {
    .ms-Panel-commands {
        margin: 0;
    }
}