Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
TODO Page
3
***/
4
.todo-ui {
5
  margin-top: 20px;
6
}
7
 
8
.todo-sidebar {
9
  float: left;
10
  width: 230px;
11
  margin-right: 20px;
12
}
13
 
14
.todo-content {
15
  overflow: hidden;
16
}
17
 
18
.todo-tasklist-item-border-green {
19
  border-left: #3faba4 2px solid;
20
}
21
 
22
.todo-tasklist-item-border-blue {
23
  border-left: #4c87b9 2px solid;
24
}
25
 
26
.todo-tasklist-item-border-purple {
27
  border-left: #8877a9 2px solid;
28
}
29
 
30
.todo-tasklist-item-border-red {
31
  border-left: #d05454 2px solid;
32
}
33
 
34
.todo-tasklist-item-border-yellow {
35
  border-left: #d4ad38 2px solid;
36
}
37
 
38
.padding-top-10px {
39
  padding-top: 15px;
40
}
41
 
42
.todo-userpic {
43
  -webkit-border-radius: 50% !important;
44
  -moz-border-radius: 50% !important;
45
  border-radius: 50% !important;
46
  border: 1px #cedae1 solid;
47
}
48
 
49
.todo-text-color {
50
  color: #45535b;
51
}
52
 
53
/* PROJECT LIST */
54
.todo-projects-config {
55
  padding: 6px 9px 3px 9px !important;
56
}
57
.todo-projects-config > i {
58
  font-size: 14px !important;
59
}
60
.todo-projects-config > .fa-angle-down {
61
  position: relative;
62
  display: inline-block;
63
  top: -1px;
64
  font-size: 13px !important;
65
  color: #f2f2f2;
66
}
67
 
68
.todo-tasklist {
69
  padding: 0;
70
}
71
 
72
.todo-project-list ul li a {
73
  font-size: 14px !important;
74
  padding: 8px 10px;
75
}
76
 
77
.todo-project-list .nav li a .badge {
78
  float: right;
79
  background-color: #b4c4cd !important;
80
  margin-top: 1px !important;
81
}
82
 
83
.todo-project-list .nav li a .badge-active {
84
  background-color: #ffffff !important;
85
  color: #637b89 !important;
86
}
87
 
88
.todo-project-list .nav .active {
89
  background-color: #ffffff !important;
90
}
91
 
92
.todo-project-list .nav-pills > li.active > a {
93
  background-color: #87a9c7 !important;
94
}
95
 
96
/* END PROJECT LIST */
97
/* TASK HISTORY */
98
.todo-task-history {
99
  padding: 0;
100
  margin: 0;
101
}
102
.todo-task-history > li {
103
  padding: 5px 0;
104
}
105
.todo-task-history > li > .todo-task-history-desc {
106
  overflow: hidden;
107
}
108
.todo-task-history > li > .todo-task-history-date {
109
  font-size: 12px;
110
  float: right;
111
  width: 150px;
112
  margin-left: 10px;
113
  text-align: right;
114
  color: #999;
115
}
116
 
117
/* TASKS LIST */
118
.todo-tasklist-item {
119
  background: #f6fbfc;
120
  padding: 10px;
121
  margin-bottom: 10px;
122
  margin-bottom: 15px;
123
  overflow: hidden;
124
}
125
.todo-tasklist-item:last-child {
126
  margin-bottom: 0;
127
}
128
 
129
div .todo-tasklist-item:hover {
130
  cursor: pointer;
131
  background-color: #edf7f9;
132
}
133
 
134
.todo-tasklist-item img {
135
  margin: 0 10px 10px 0;
136
}
137
 
138
.todo-tasklist-item-title {
139
  font-size: 15px;
140
  color: #2b4a5c;
141
  font-weight: 600;
142
  padding-top: 3px;
143
  padding-bottom: 13px;
144
}
145
 
146
.todo-tasklist-item-text {
147
  font-size: 13px;
148
  color: #577688;
149
  padding-bottom: 5px;
150
}
151
 
152
.todo-tasklist-item ul {
153
  margin: 5px 0 0 0px;
154
}
155
 
156
.todo-tasklist-item li {
157
  color: #577688;
158
  font-size: 13px;
159
  margin-right: 10px;
160
  margin-bottom: 5px;
161
  padding: 0 !important;
162
}
163
 
164
.todo-tasklist-item li i {
165
  color: #b3bfcb;
166
  font-size: 15px;
167
}
168
 
169
.todo-tasklist-controls {
170
  margin-top: 5px;
171
}
172
 
173
.todo-tasklist-date {
174
  color: #637b89 !important;
175
  margin-right: 12px;
176
}
177
 
178
.todo-tasklist-date i {
179
  color: #abbfca !important;
180
  margin-right: 5px;
181
}
182
 
183
.todo-tasklist-badge {
184
  background-color: #b3bfcb;
185
}
186
 
187
/* END TASKS LIST */
188
/* TASK BODY */
189
.todo-taskbody-tasktitle {
190
  font-size: 18px;
191
  color: #778d96;
192
}
193
 
194
.todo-taskbody-taskdesc {
195
  font-size: 14px;
196
  color: #778d96;
197
}
198
 
199
.todo-username {
200
  font-size: 16px;
201
  color: #2b4a5c;
202
  font-weight: 600;
203
  padding: 15px 0 0 15px;
204
}
205
 
206
.todo-comment-head {
207
  padding-top: 3px;
208
}
209
 
210
.todo-comment {
211
  position: relative;
212
}
213
 
214
.todo-comment:hover > .todo-comment-btn {
215
  display: block;
216
}
217
 
218
.todo-comment-btn {
219
  display: none;
220
  position: absolute;
221
  top: 1px;
222
  right: 0px;
223
  font-size: 12px;
224
  color: #566e7c;
225
  border-color: #a2aeb5;
226
}
227
 
228
.todo-comment-btn:hover {
229
  color: #fff;
230
  background-color: #a1b6c2;
231
  border-color: #a1b6c2;
232
}
233
 
234
.todo-comment-username {
235
  font-size: 14px;
236
  color: #2b4a5c;
237
  font-weight: 600;
238
}
239
 
240
.todo-comment-date {
241
  font-size: 12px;
242
  color: #2b4a5c;
243
  font-weight: 400;
244
}
245
 
246
.todo-username-btn {
247
  margin: 14px 0 0 15px;
248
  color: #566e7c;
249
  border-color: #a2aeb5;
250
}
251
 
252
.todo-username-btn:hover {
253
  color: #fff;
254
  background-color: #a1b6c2;
255
  border-color: #a1b6c2;
256
}
257
 
258
.form .form-actions.todo-form-actions {
259
  padding-top: 10px;
260
  border: 0;
261
  margin: 0 0 20px 0;
262
}
263
 
264
/* END TASK BODY */
265
/* RESPONSIVE MODE */
266
@media (max-width: 991px) {
267
  /* 991px */
268
  .todo-sidebar {
269
    float: none;
270
    width: 100%;
271
    margin: 0;
272
  }
273
  .todo-sidebar > .portlet {
274
    margin-bottom: 20px;
275
  }
276
  .todo-sidebar > .portlet .portlet-title .tools {
277
    margin-left: 5px;
278
  }
279
 
280
  .todo-content {
281
    overflow: visible;
282
  }
283
}
284
.todo-tasklist-devider {
285
  display: none;
286
}
287
 
288
@media (max-width: 767px) {
289
  /* 767px */
290
  .todo-tasklist-devider {
291
    display: block;
292
    height: 20px;
293
    margin: 20px -10px;
294
    background: #F1F3FA;
295
  }
296
 
297
  /* TASK HISTORY */
298
  .todo-task-history > li {
299
    padding: 9px 0;
300
  }
301
  .todo-task-history > li > .todo-task-history-date {
302
    width: 100px;
303
    font-size: 11px;
304
  }
305
}