~starkingdoms/starkingdoms

ref: 9de7e5ea1218ff69611eae99294a034e29f6108e starkingdoms/starkingdoms-client/src/css/log.css -rw-r--r-- 747 bytes
9de7e5ea — core rendering 2 years ago
                                                                                
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
.log-icon {
    width: 16px
}
.log-lalign {
    text-align: left;
}
.log-item {
    cursor: pointer;
}
.log-item:hover {
    background-color: #4a4a4f;
}
.log {
    border: none;
    border-collapse: collapse;
    display: block;
    max-height: 200px;
    overflow: auto;
    width: 100%;
    table-layout: fixed;
}
.log-selected {
    background-color: #204e8a;
    cursor: default;
}
.log-leaving {
    color: var(--error);
}
.log-arriving {
    color: var(--success);
}
.log > tbody > tr > td {
    padding: 2px;
}
.log-hidden {
    display: none;
}
#log_body {
    width: 100%;
}
.log-container {
    width: 350px;
}
.log-header {
    padding: 5px;
}
.log-w240 {
    width: 240px;
}
.log-w50 {
    width: 50px;
}
.log-td {
    padding: 5px;
}