-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
31 lines (29 loc) · 769 Bytes
/
styles.css
File metadata and controls
31 lines (29 loc) · 769 Bytes
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
/*
The main "badge" styles.
*/
.nav-files-container .nav-file-title.gtd-no-next-step .nav-file-title-content:after,
.nav-files-container .nav-file-title.gtd-waiting-for .nav-file-title-content:after {
color: white;
border-radius: 4px;
font-size: 8px;
padding: 1px 3px;
line-height: 1;
margin-left: 4px;
top: -2px;
position: relative;
}
/*
No next-step tag found is a serious problem.
*/
.nav-files-container .nav-file-title.gtd-no-next-step .nav-file-title-content:after {
content: 'No Next';
background-color: #ff5b00;
}
/*
No next-step tag but a waiting-for tag is not a
problem, but it is something to be aware of.
*/
.nav-files-container .nav-file-title.gtd-waiting-for .nav-file-title-content:after {
content: 'Waiting';
background-color: #8e8e8e;
}