common.scss 1.19 KB
Newer Older
Lijiaoa's avatar
Lijiaoa committed
1
2
$themeBlue: #0071bc;

3
.ellipsis {
4
5
6
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
7
8
9
}

.link {
10
    color: $themeBlue;
11
12
13
14
    outline: none;
    text-decoration: none;

    &:hover {
15
        color: $themeBlue;
16
17
18
19
20
        text-decoration: underline;
    }

    &:active,
    &:visited {
21
        color: $themeBlue;
22
    }
23
24
25
}

.cursor {
26
27
28
29
    &:hover,
    & i:hover {
        cursor: pointer;
    }
30
}
31
32

.idCopy {
33
34
35
36
37
    .ms-Button--icon {
        width: 18px;
        height: 18px;
        margin-left: 4px;
    }
38
39

    i {
40
        color: #33333c;
41
42
43
44
45
46
    }
}

.ms-DetailsRow {
    height: 32px;
}
47
48
49
50
51
52

/* for graph tooltip style */
.graph > div > div {
    padding: 0 !important;
    border: none !important;
}
Lijiaoa's avatar
Lijiaoa committed
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75

.elementMarginLeft {
    margin-left: 10px;
}

.operationBtn {
    i {
        color: $themeBlue;
    }
}

/* for table row border */
.ms-List-cell {
    border-bottom: 1px solid #eeecea;
}

.line-height {
    line-height: 30px;
}

.bold {
    font-weight: bold;
}
76

Lijiaoa's avatar
Lijiaoa committed
77
78
79
80
81
.positionTop {
    position: relative;
    top: 2px;
}

82
83
84
.input-padding {
    padding-left: 10px;
}
Lijiaoa's avatar
Lijiaoa committed
85
86
87
88
89
90
91
92
93
94

.fontColor333 {
    color: #333;
}

.font {
    .color333 {
        color: #333;
    }
}
Lijiaoa's avatar
Lijiaoa committed
95
96
97
98

.ms-DetailsRow-cell {
    padding-top: 8px;
}