"src/targets/vscode:/vscode.git/clone" did not exist on "877b8c442576dd512dae492142a7456f7cb38485"
panel.scss 1.29 KB
Newer Older
1
2
3
$buttonBorderRadius: 23px;

.config {
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    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;
    }
25

26
27
28
    .margin {
        margin-left: 10px;
    }
29
30
31
}

.container {
32
    text-align: right;
33

34
35
    .icon {
        min-width: 50px;
36

37
38
39
40
        i {
            font-size: 16px;
        }
    }
41

42
43
    .maxScrBtn {
        width: 150px;
44

45
46
47
48
49
50
        &:hover {
            color: #fff;
            border: 1px solid blue;
            background-color: #0071bc;
        }
    }
51

52
    .configBtn i {
53
        margin-left: -40px;
54
    }
55

56
57
58
59
    .logBtn i {
        margin-left: -25px;
    }

60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
    &:hover {
        .icon {
            display: none;
        }

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

            i {
                font-size: 14px;
            }
        }
    }
76
77
78
}

.ms-Fabric {
79
80
81
    .ms-Panel-commands {
        margin: 0;
    }
82
}