nav.scss 1.46 KB
Newer Older
1
2
$barHeight: 56px;

3
.navOptions {
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
	.ms-Button-icon {
		color: #fff;

		&:hover {
			color: #fff;
		}
	}

	.ms-Button--commandBar {
		background-color: #0071bc;
		user-select: none;

		&:hover,
		&:active {
			color: #fff;

			.ms-Button-icon {
				color: #fff;
			}
		}

		.ms-Button-textContainer {
			color: #fff;
		}

		.ms-Button-menuIcon {
			color: #fff;
			background-color: transparent;
		}
	}

	.experiment {
		position: relative;
        top: 3px;
        text-decoration: none;
	}
40
41
}

42
.nav {
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
	width: 100%;
	min-width: 1200px;
	height: $barHeight;
	line-height: $barHeight;

	/* desktop mode useful */
	.desktop-logo {
		position: relative;
		top: 6px;
	}

	.logoTitle {
		font-size: 18px;
		color: #fff;
	}

	&-refresh {
		position: relative;
		display: flex;
	}

	&-refresh-num {
		position: absolute;
		top: -13px;
		left: 17px;
		color: #fff;
		font-size: 12px;
	}
71
72
73
}

/* overview and detail tabs common style */
74
a.common-tabs {
75
76
77
78
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	color: #b8c7ce;
	text-decoration: none;
79
}
80
81
82

.common-tabs:visited,
.selected:hover {
83
84
	color: #fff;
	text-decoration: none;
85
}
86
87
88

.common-tabs:hover,
.selected {
89
90
	color: #fff;
	border-bottom: 1px solid #fff;
91
}
92
93

.left-right-margin {
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
	margin-left: 20px;
	margin-right: 20px;
}

.expNavTitle {
	span {
		color: #fff;
		text-decoration: none;
		position: relative;
		top: -4px;
	}
	i {
		color: #fff;
		font-size: 12px;
		position: relative;
		top: -3px;
		padding-left: 4px;
	}
112
}