tensorboard.scss 1.44 KB
Newer Older
Lijiaoa's avatar
Lijiaoa committed
1
2
3
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
40
41
42
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
71
72
73
74
75
$cicleBg: #009ee7;
$size: 24px;

.circle {
    display: inline-block;
    width: $size;
    height: $size;
    border-radius: 50%;
    color: #fff;
    line-height: $size;
    text-align: center;
    background: $cicleBg;
    margin-left: 4px;
    position: relative;
    top: -16px;
    left: -20px;
}

.CommandBarButton {
    &-RUNNING {
        .ms-ContextualMenu-itemText::after {
            content: 'RUNNING';
            color: #0071bc;
            margin-left: 15px;
        }
    }

    &-STOPPED {
        .ms-ContextualMenu-itemText::after {
            content: 'STOPPED';
            color: green;
            margin-left: 15px;
        }
    }

    &-STOPPING {
        .ms-ContextualMenu-itemText::after {
            content: 'STOPPING';
            color: green;
            margin-left: 15px;
        }
    }

    &-DOWNLOADING_DATA {
        .ms-ContextualMenu-itemText::after {
            content: 'DOWNLOADING_DATA';
            color: green;
            margin-left: 15px;
        }
    }

    &-ERROR {
        .ms-ContextualMenu-itemText::after {
            content: 'ERROR';
            color: red;
            margin-left: 15px;
        }
    }

    &-FAIL_DOWNLOAD_DATA {
        .ms-ContextualMenu-itemText::after {
            content: 'FAIL_DOWNLOAD_DATA';
            color: red;
            margin-left: 15px;
        }
    }
}

.clearAll {
    border-top: 1px solid #ccc;

    .ms-ContextualMenu-itemText {
        text-align: center;
    }
}