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

3
4
.navOptions {
    .ms-Button-icon {
5
        color: #fff;
6
7

        &:hover {
8
9
10
            color: #fff;
        }
    }
11
12

    .ms-Button--commandBar {
13
14
        background-color: #0071bc;
        user-select: none;
15
16
17

        &:hover,
        &:active {
18
            color: #fff;
19
20

            .ms-Button-icon {
21
22
23
                color: #fff;
            }
        }
24
25

        .ms-Button-textContainer {
26
27
            color: #fff;
        }
28
29

        .ms-Button-menuIcon {
30
31
32
33
34
35
            color: #fff;
            background-color: transparent;
        }
    }
}

36
.nav {
37
38
    height: $barHeight;
    line-height: $barHeight;
39
40
41

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

46
    &-refresh {
47
48
49
        position: relative;
        display: flex;
    }
50
51

    &-refresh-num {
52
        position: absolute;
53
54
        top: -13px;
        left: 17px;
55
56
57
58
59
60
        color: #fff;
        font-size: 12px;
    }
}

/* overview and detail tabs common style */
61
a.common-tabs {
62
63
64
65
66
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #b8c7ce;
    text-decoration: none;
}
67
68
69

.common-tabs:visited,
.selected:hover {
70
71
72
    color: #fff;
    text-decoration: none;
}
73
74
75

.common-tabs:hover,
.selected {
76
77
78
    color: #fff;
    border-bottom: 1px solid #fff;
}
79
80

.left-right-margin {
81
82
    margin-left: 20px;
    margin-right: 20px;
83
}