-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstylesheet.css
More file actions
131 lines (110 loc) · 2.25 KB
/
stylesheet.css
File metadata and controls
131 lines (110 loc) · 2.25 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Timer item container (vertical box for main row + actions row) */
.timer-item-container {
min-width: 10em;
max-width: 30em;
}
/* Main row styling */
/* Timer selector */
.timer-selector {
margin: 0 0.5em 0 0;
}
/* Timer name */
.timer-text {
min-width: 3em;
max-width: 20em;
text-align: left;
margin: 0 0.5em 0 0;
}
/* Workspace badge - circular indicator */
.timer-workspace-badge {
width: 1em;
height: 1em;
padding: 0.25em;
border-radius: 2em;
border: 1px solid rgba(255, 255, 255, 0.4);
text-align: center;
vertical-align: middle;
font-size: 0.7em;
margin: 0 0.5em 0 0;
}
/* Window regex badge - window icon */
.timer-regex-badge {
width: 1em;
height: 1em;
margin: 0 0.5em 0 0;
opacity: 0.8;
}
/* Timer time display */
.timer-time {
width: 4.5em;
text-align: right;
margin: 0 0.5em 0 0;
}
/* Icons styling */
.timer-icon {
width: 1em;
height: 1em;
}
.timer-icon-expand {
padding: 0.2em;
margin-left: 1em;
}
.timer-icon-expand:hover {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 2em;
}
.timer-icon-button {
border-radius: 2em;
min-height: 1em;
min-width: 1em;
padding: 0.5em;
}
.timer-icon-button > StIcon {
icon-size: 0.8em;
}
/* Actions row (buttons) - second row in expanded state */
.timer-actions-row {
padding: 0.3em 0 0 0;
spacing: 0.8em;
}
/* Paused state - dims text and icons */
.timer-paused .timer-text,
.timer-paused .timer-time,
.timer-paused .timer-icon,
.timer-paused .timer-workspace-badge,
.timer-paused .timer-regex-badge {
color: grey;
}
/* Editing */
.name-entry, .timer-entry {
padding-top: 0;
padding-bottom: 0;
padding-right: 0;
height: 1.85em;
}
.name-entry {
margin-right: 0.5em;
}
.timer-edit {
padding: 0.4em 0.7em 0.4em 0.7em;
}
/* Total time row */
/* Main wrapper */
.summary-row {
color: lightgrey;
}
.summary-wrapper {
spacing: 0.5em;
}
/* Left container (total time eye button and label) */
.left-container {
spacing: 0.5em;
/* Ensure it expands to take available space */
flex: 1;
}
/* Right container (action buttons) */
.right-container {
spacing: 0.8em;
/* Align items to the end (right side) */
justify-content: flex-end;
}