-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathagilescrumfortrello.scss
108 lines (98 loc) · 2.31 KB
/
agilescrumfortrello.scss
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
/*
Agile SCRUM for Trello Boards Google Chrome Extension
Copyright (C) 2015 Xavi Esteve
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
body {
--colorPrimary: rgb(55, 158, 90);
--colorOverrun: #5C001C;
--colorPerfect: #274D01;
--colorGrey: #666;
--colorTextShadow: #fff;
--borderRadius: 3px;
}
.scrum-light {
opacity: 0.7;
font-size: 90%;
}
.scrum-list-total {
position: absolute;
top: 6px;
right: 29px;
display: inline-block;
padding: 2px;
background: #e3e3e3;
border-radius: var(--borderRadius);
color: var(--colorGrey);
line-height: 1em;
}
.scrum-list-progress {
position: absolute;
top: 0;
left: 0;
height: 100%;
background: var(--colorPrimary);
opacity: 0.3;
z-index: 0;
}
.scrum-card-progress {
position: absolute;
top: 0;
left: 0;
height: 100%;
background: var(--colorPrimary);
opacity: 0.2;
z-index: -1;
}
.scrum-card-progress.overrun {
color: var(--colorOverrun);
}
.scrum-card-project {
display: inline-block;
padding: 2px 3px;
color: #fff;
font-size: 10px;
line-height: 1;
vertical-align: 2px;
border-radius:3px;
}
.scrum-card-points {
position: absolute;
top: 0;
right: 3px;
display: inline-block;
padding: 2px;
line-height: 1em;
vertical-align: middle;
border-radius: var(--borderRadius);
color: #555;
font-size: 12px;
text-shadow: 0 0 2px var(--colorTextShadow);
opacity: 0.6;
}
.scrum-card-points.overrun {
color: var(--colorOverrun);
}
.scrum-card-points.perfect {
color: var(--colorPerfect);
}
.list-card.scrum-card-header{
text-align: center;
background: transparent;
border: 0;
font-size: 150%;
line-height: 1.3em;
}
.js-open-agilescrum-menu .icon-add:before {
content: "\e621";
}