slideNavBtns.scss 2.44 KB
Newer Older
1
$buttonBorderRadius: 23px;
2
$errorseriscolor: #FC615C;
3
.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
}
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142

.experiment-error {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 455px;
    min-width: 300px;
    padding: 28px 32px;
    border-radius: 8px;
    box-shadow: 0px 4px 16px rgba(78, 97, 123, 0.2);
    background-color: #fff;
    
    .head {
        height: 27px;
        line-height: 27px;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;

        .title {
            color: $errorseriscolor;
        }

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

        .icon{
            width: 25px;
            height: 25px;
            background-color: $errorseriscolor;
            border-radius: 50%;
            margin-right: 15px;
            
            i{
                font-size: 21px;
                color: #fff;
                margin-left: 2px;
            }
        }
    }

    .message {
        line-height: 24px;
    }

    &-buttons {
        margin-top: 10px;
    }

    .detailsBtn {
        width: 113px;
        height: 32px;
        color: #fff;
        background: $errorseriscolor;
        border: none;
        border-radius: 6px;
    }
}