slideNavBtns.scss 2.71 KB
Newer Older
1
$buttonBorderRadius: 23px;
Lijiaoa's avatar
Lijiaoa committed
2
3
$errorseriscolor: #fc615c;

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

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

.container {
33
    text-align: right;
34

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

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

43
44
    .maxScrBtn {
        width: 150px;
45

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

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

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

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

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

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

.ms-Fabric {
80
81
82
    .ms-Panel-commands {
        margin: 0;
    }
83
}
84
85
86
87
88
89
90

.experiment-error {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 455px;
    min-width: 300px;
Lijiaoa's avatar
Lijiaoa committed
91
    padding: 24px;
92
    border-radius: 8px;
Lijiaoa's avatar
Lijiaoa committed
93
94
    border: 1px solid #f8f8f8;
    box-shadow: 0 4px 16px rgba(78, 97, 123, 0.2);
95
    background-color: #fff;
Lijiaoa's avatar
Lijiaoa committed
96

97
98
99
    .head {
        height: 27px;
        line-height: 27px;
Lijiaoa's avatar
Lijiaoa committed
100
        font-size: 18px;
101
        font-weight: 700;
Lijiaoa's avatar
Lijiaoa committed
102
        margin-bottom: 12px;
103
104
105
106
107
108
109
110
111
112

        .title {
            color: $errorseriscolor;
        }

        .close {
            position: absolute;
            right: 30px;
        }

Lijiaoa's avatar
Lijiaoa committed
113
114
115
        .icon {
            width: 24px;
            height: 24px;
116
117
            background-color: $errorseriscolor;
            border-radius: 50%;
Lijiaoa's avatar
Lijiaoa committed
118
119
120
121
122
123
124
125
            margin-right: 10px;
            margin-top: 1px;

            i {
                display: block;
                text-align: center;
                font-size: 14px;
                font-weight: 600;
126
                color: #fff;
Lijiaoa's avatar
Lijiaoa committed
127
128
                position: relative;
                top: -1px;
129
130
131
132
133
134
135
136
137
            }
        }
    }

    .message {
        line-height: 24px;
    }

    &-buttons {
Lijiaoa's avatar
Lijiaoa committed
138
        margin-top: 16px;
139
140
141
    }

    .detailsBtn {
Lijiaoa's avatar
Lijiaoa committed
142
143
        height: 30px;
        font-size: 12px;
144
145
146
147
        color: #fff;
        background: $errorseriscolor;
        border: none;
        border-radius: 6px;
Lijiaoa's avatar
Lijiaoa committed
148
149
150
151
152
        padding: 0 12px;

        .ms-Button-label {
            font-size: 12px;
        }
153
    }
Lijiaoa's avatar
Lijiaoa committed
154
}