Subversion-Projekte lars-tiefland.cienc

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
5 lars 1
/***
2
TODO Page
3
***/
4
/* Cubic Bezier Transition */
5
.todo-sidebar {
6
  float: left;
7
  width: 230px;
8
  margin-right: 20px; }
9
 
10
.todo-content {
11
  overflow: hidden; }
12
 
13
.todo-tasklist-item-border-green {
14
  border-left: #3faba4 2px solid; }
15
 
16
.todo-tasklist-item-border-blue {
17
  border-left: #4c87b9 2px solid; }
18
 
19
.todo-tasklist-item-border-purple {
20
  border-left: #8877a9 2px solid; }
21
 
22
.todo-tasklist-item-border-red {
23
  border-left: #d05454 2px solid; }
24
 
25
.todo-tasklist-item-border-yellow {
26
  border-left: #d4ad38 2px solid; }
27
 
28
.padding-top-10px {
29
  padding-top: 15px; }
30
 
31
.todo-userpic {
32
  -webkit-border-radius: 50% !important;
33
  -moz-border-radius: 50% !important;
34
  border-radius: 50% !important;
35
  border: 1px #cedae1 solid; }
36
 
37
.todo-text-color {
38
  color: #45535b; }
39
 
40
/* PROJECT LIST */
41
.todo-projects-config {
42
  padding: 6px 9px 3px 9px !important; }
43
  .todo-projects-config > i {
44
    font-size: 14px !important; }
45
 
46
.todo-tasklist {
47
  padding: 0; }
48
 
49
.todo-project-list ul li a {
50
  font-size: 14px !important;
51
  padding: 8px 10px; }
52
 
53
.todo-project-list .nav li a .badge {
54
  float: right;
55
  margin-top: 1px !important; }
56
 
57
.todo-project-list .nav > li.active > a {
58
  color: #3f444a;
59
  background-color: #f1f4f7 !important; }
60
 
61
/* END PROJECT LIST */
62
/* TASK HISTORY */
63
.todo-task-history {
64
  padding: 0;
65
  margin: 0; }
66
  .todo-task-history > li {
67
    padding: 5px 0; }
68
    .todo-task-history > li > .todo-task-history-desc {
69
      overflow: hidden; }
70
    .todo-task-history > li > .todo-task-history-date {
71
      font-size: 12px;
72
      float: right;
73
      width: 150px;
74
      margin-left: 10px;
75
      text-align: right;
76
      color: #999; }
77
 
78
/* TASKS LIST */
79
.todo-tasklist-item {
80
  background: #f6fbfc;
81
  padding: 10px;
82
  margin-bottom: 10px;
83
  margin-bottom: 15px;
84
  overflow: hidden; }
85
  .todo-tasklist-item:last-child {
86
    margin-bottom: 0; }
87
 
88
div .todo-tasklist-item:hover {
89
  cursor: pointer;
90
  background-color: #edf7f9; }
91
 
92
.todo-tasklist-item img {
93
  margin: 0 10px 10px 0; }
94
 
95
.todo-tasklist-item-title {
96
  font-size: 15px;
97
  color: #2b4a5c;
98
  font-weight: 600;
99
  padding-top: 3px;
100
  padding-bottom: 13px; }
101
 
102
.todo-tasklist-item-text {
103
  font-size: 13px;
104
  color: #577688;
105
  padding-bottom: 5px; }
106
 
107
.todo-tasklist-item ul {
108
  margin: 5px 0 0 0px; }
109
 
110
.todo-tasklist-item li {
111
  color: #577688;
112
  font-size: 13px;
113
  margin-right: 10px;
114
  margin-bottom: 5px;
115
  padding: 0 !important; }
116
 
117
.todo-tasklist-item li i {
118
  color: #b3bfcb;
119
  font-size: 15px; }
120
 
121
.todo-tasklist-controls {
122
  margin-top: 5px; }
123
 
124
.todo-tasklist-date {
125
  color: #637b89 !important;
126
  margin-right: 12px; }
127
 
128
.todo-tasklist-date i {
129
  color: #abbfca !important;
130
  margin-right: 5px; }
131
 
132
/* END TASKS LIST */
133
/* TASK BODY */
134
.todo-taskbody-tasktitle {
135
  font-size: 18px;
136
  color: #778d96; }
137
 
138
.todo-taskbody-taskdesc {
139
  font-size: 14px;
140
  color: #778d96; }
141
 
142
.todo-username {
143
  font-size: 16px;
144
  color: #2b4a5c;
145
  font-weight: 600;
146
  padding: 15px 0 0 15px; }
147
 
148
.todo-comment-head {
149
  padding-top: 3px; }
150
 
151
.todo-comment {
152
  position: relative; }
153
 
154
.todo-comment:hover > .todo-comment-btn {
155
  display: block; }
156
 
157
.todo-comment-btn {
158
  display: none;
159
  position: absolute;
160
  top: 1px;
161
  right: 0px;
162
  font-size: 12px;
163
  color: #566e7c;
164
  border-color: #a2aeb5; }
165
 
166
.todo-comment-btn:hover {
167
  color: #fff;
168
  background-color: #a1b6c2;
169
  border-color: #a1b6c2; }
170
 
171
.todo-comment-username {
172
  font-size: 14px;
173
  color: #2b4a5c;
174
  font-weight: 600; }
175
 
176
.todo-comment-date {
177
  font-size: 12px;
178
  color: #2b4a5c;
179
  font-weight: 400; }
180
 
181
.todo-username-btn {
182
  margin: 14px 0 0 15px;
183
  color: #566e7c;
184
  border-color: #a2aeb5; }
185
 
186
.todo-username-btn:hover {
187
  color: #fff;
188
  background-color: #a1b6c2;
189
  border-color: #a1b6c2; }
190
 
191
.form .form-actions.todo-form-actions {
192
  padding-top: 10px;
193
  border: 0;
194
  margin: 0 0 20px 0; }
195
 
196
/* END TASK BODY */
197
/* RESPONSIVE MODE */
198
@media (max-width: 991px) {
199
  /* 991px */
200
  .todo-sidebar {
201
    float: none;
202
    width: 100%;
203
    margin: 0; }
204
    .todo-sidebar > .portlet {
205
      margin-bottom: 20px; }
206
      .todo-sidebar > .portlet .portlet-title .tools {
207
        margin-left: 5px; }
208
  .todo-content {
209
    overflow: visible; } }
210
 
211
.todo-tasklist-devider {
212
  display: none; }
213
 
214
@media (max-width: 767px) {
215
  /* 767px */
216
  .todo-tasklist-devider {
217
    display: block;
218
    height: 20px;
219
    margin: 20px -10px;
220
    background: #F1F3FA; }
221
  /* TASK HISTORY */
222
  .todo-task-history > li {
223
    padding: 9px 0; }
224
    .todo-task-history > li > .todo-task-history-date {
225
      width: 100px;
226
      font-size: 11px; } }