-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (85 loc) · 1.83 KB
/
styles.css
File metadata and controls
105 lines (85 loc) · 1.83 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.timer-control-container {
color: var(--text-normal);
background-color: var(--background-primary-alt);
}
.timer-tracker-compatible.loading + .timer-control-container {
display: none;
}
.timer-tracker-compatible.in-error + .timer-control-container {
display: none;
}
.timer-control {
display: inline-block;
width: 100%;
padding: 0 5px;
text-align: right;
}
.timer-control-container.has-timer-view {
width: 15em;
border-radius: 5px;
}
.timer-control-container.has-timer-view .timer-view {
width: 100%;
display: inline-block;
text-align: center;
font-size: 2em;
padding: 0.5em;
}
.timer-control-container.has-timer-view .timer-control {
text-align: center;
}
.timer-control button {
font-size: 1em;
padding: 0 0.5em;
margin: 0;
min-width: 2em;
}
.time-tracker-table {
padding: 10px;
}
.time-tracker-table-id {
text-align: left;
max-width: 9em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.time-tracker-table-time {
text-align: center;
}
.time-tracker-table-commands {
text-align: center;
white-space: nowrap;
}
.time-tracker-table-no-timers {
text-align: center;
}
.time-tracker-table-commands button {
margin: 0 2px;
padding: 0.5em;
}
.timer-view {
min-width: 5em;
}
.timer-view-status-bar span{
margin: 0 5px;
display: inline-block;
text-align: center;
}
form.time-tracker-edit {
text-align: center;
}
form.time-tracker-edit span {
margin: 0 5px;
font-size: 1.5em;
}
.time-tracker-modal-commands {
text-align: right;
padding-top: 2em;
}
.time-tracker-modal-title {
max-width: 20em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}