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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/***
TODO Page
***/
/* Cubic Bezier Transition */
.todo-sidebar {
float: left;
width: 230px;
margin-right: 20px; }
.todo-content {
overflow: hidden; }
.todo-tasklist-item-border-green {
border-left: #3faba4 2px solid; }
.todo-tasklist-item-border-blue {
border-left: #4c87b9 2px solid; }
.todo-tasklist-item-border-purple {
border-left: #8877a9 2px solid; }
.todo-tasklist-item-border-red {
border-left: #d05454 2px solid; }
.todo-tasklist-item-border-yellow {
border-left: #d4ad38 2px solid; }
.padding-top-10px {
padding-top: 15px; }
.todo-userpic {
-webkit-border-radius: 50% !important;
-moz-border-radius: 50% !important;
border-radius: 50% !important;
border: 1px #cedae1 solid; }
.todo-text-color {
color: #45535b; }
/* PROJECT LIST */
.todo-projects-config {
padding: 6px 9px 3px 9px !important; }
.todo-projects-config > i {
font-size: 14px !important; }
.todo-tasklist {
padding: 0; }
.todo-project-list ul li a {
font-size: 14px !important;
padding: 8px 10px; }
.todo-project-list .nav li a .badge {
float: right;
margin-top: 1px !important; }
.todo-project-list .nav > li.active > a {
color: #3f444a;
background-color: #f1f4f7 !important; }
/* END PROJECT LIST */
/* TASK HISTORY */
.todo-task-history {
padding: 0;
margin: 0; }
.todo-task-history > li {
padding: 5px 0; }
.todo-task-history > li > .todo-task-history-desc {
overflow: hidden; }
.todo-task-history > li > .todo-task-history-date {
font-size: 12px;
float: right;
width: 150px;
margin-left: 10px;
text-align: right;
color: #999; }
/* TASKS LIST */
.todo-tasklist-item {
background: #f6fbfc;
padding: 10px;
margin-bottom: 10px;
margin-bottom: 15px;
overflow: hidden; }
.todo-tasklist-item:last-child {
margin-bottom: 0; }
div .todo-tasklist-item:hover {
cursor: pointer;
background-color: #edf7f9; }
.todo-tasklist-item img {
margin: 0 10px 10px 0; }
.todo-tasklist-item-title {
font-size: 15px;
color: #2b4a5c;
font-weight: 600;
padding-top: 3px;
padding-bottom: 13px; }
.todo-tasklist-item-text {
font-size: 13px;
color: #577688;
padding-bottom: 5px; }
.todo-tasklist-item ul {
margin: 5px 0 0 0px; }
.todo-tasklist-item li {
color: #577688;
font-size: 13px;
margin-right: 10px;
margin-bottom: 5px;
padding: 0 !important; }
.todo-tasklist-item li i {
color: #b3bfcb;
font-size: 15px; }
.todo-tasklist-controls {
margin-top: 5px; }
.todo-tasklist-date {
color: #637b89 !important;
margin-right: 12px; }
.todo-tasklist-date i {
color: #abbfca !important;
margin-right: 5px; }
/* END TASKS LIST */
/* TASK BODY */
.todo-taskbody-tasktitle {
font-size: 18px;
color: #778d96; }
.todo-taskbody-taskdesc {
font-size: 14px;
color: #778d96; }
.todo-username {
font-size: 16px;
color: #2b4a5c;
font-weight: 600;
padding: 15px 0 0 15px; }
.todo-comment-head {
padding-top: 3px; }
.todo-comment {
position: relative; }
.todo-comment:hover > .todo-comment-btn {
display: block; }
.todo-comment-btn {
display: none;
position: absolute;
top: 1px;
right: 0px;
font-size: 12px;
color: #566e7c;
border-color: #a2aeb5; }
.todo-comment-btn:hover {
color: #fff;
background-color: #a1b6c2;
border-color: #a1b6c2; }
.todo-comment-username {
font-size: 14px;
color: #2b4a5c;
font-weight: 600; }
.todo-comment-date {
font-size: 12px;
color: #2b4a5c;
font-weight: 400; }
.todo-username-btn {
margin: 14px 0 0 15px;
color: #566e7c;
border-color: #a2aeb5; }
.todo-username-btn:hover {
color: #fff;
background-color: #a1b6c2;
border-color: #a1b6c2; }
.form .form-actions.todo-form-actions {
padding-top: 10px;
border: 0;
margin: 0 0 20px 0; }
/* END TASK BODY */
/* RESPONSIVE MODE */
@media (max-width: 991px) {
/* 991px */
.todo-sidebar {
float: none;
width: 100%;
margin: 0; }
.todo-sidebar > .portlet {
margin-bottom: 20px; }
.todo-sidebar > .portlet .portlet-title .tools {
margin-left: 5px; }
.todo-content {
overflow: visible; } }
.todo-tasklist-devider {
display: none; }
@media (max-width: 767px) {
/* 767px */
.todo-tasklist-devider {
display: block;
height: 20px;
margin: 20px -10px;
background: #F1F3FA; }
/* TASK HISTORY */
.todo-task-history > li {
padding: 9px 0; }
.todo-task-history > li > .todo-task-history-date {
width: 100px;
font-size: 11px; } }