"src/targets/gpu/vscode:/vscode.git/clone" did not exist on "19b75f4d0b1eaa96720fd51599033df58aaa9bd4"
common.scss 1.07 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
11
12
13
14
15
16
17
18
19
20
21
    outline: none;
    text-decoration: none;

    &:hover {
        color: #0071bc !important;
        text-decoration: underline;
    }

    &:active,
    &:visited {
        color: #0071bc;
    }
22
23
24
}

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

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

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

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

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

.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;
}
75
76
77
78

.input-padding {
    padding-left: 10px;
}
Lijiaoa's avatar
Lijiaoa committed
79
80
81
82
83
84
85
86
87
88

.fontColor333 {
    color: #333;
}

.font {
    .color333 {
        color: #333;
    }
}