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

3
.navOptions {
4
5
6
7
8
9
10
11
12
13
    .ms-Button-icon {
        color: #fff;

        &:hover {
            color: #fff;
        }
    }

    .ms-Button--commandBar {
        background-color: #0071bc;
Lijiaoa's avatar
Lijiaoa committed
14
        -webkit-user-select: none;
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
        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;
38
39
        top: 3px;
        text-decoration: none;
40
    }
41
42
}

43
.nav {
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
71
    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;
    }
72
73
74
}

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

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

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

.left-right-margin {
95
96
    margin-left: 20px;
    margin-right: 20px;
97
98
99
}

.expNavTitle {
100
101
102
103
104
105
106
107
108
109
110
111
112
113
    span {
        color: #fff;
        text-decoration: none;
        position: relative;
        top: -4px;
    }

    i {
        color: #fff;
        font-size: 12px;
        position: relative;
        top: -3px;
        padding-left: 4px;
    }
114
}