panel.scss 1019 Bytes
Newer Older
1
2
3
$buttonBorderRadius: 23px;

.config {
4
5
6
	position: fixed;
	right: 0;
	z-index: 1000;
7

8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
	.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;
	}
29
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
45
46
47
48
49
50
51
52
53
54
	.maxScrBtn {
		width: 150px;

		&:hover {
			color: #fff;
			border: 1px solid blue;
			background-color: #0071bc;
		}
	}

    .configBtn i{
        margin-left: -40px;
55
    }
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
    
    .logBtn i {
        margin-left: -25px;
    }

	&: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
}