Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
@import '../../global/_variables'; // global variables.
2
@import '../../global/components/_mixins'; // global mixings.
3
 
4
/***
5
Tasks Widget
6
***/
7
 
8
.tasks-widget {
9
 
10
	&:after {
11
		clear: both;
12
	}
13
 
14
	.task-list {
15
		list-style: none;
16
		padding:0;
17
		margin:0;
18
 
19
		> li {
20
			position:relative;
21
			padding: 10px 0;
22
			border-bottom:1px solid #F4F6F9;
23
 
24
			&:hover  {
25
				background:#F4F6F9;
26
			}
27
 
28
			&.last-line {
29
				border-bottom:none;
30
			}
31
 
32
			&.task-done  {
33
				background:#f6f6f6;
34
 
35
				&:hover {
36
					background:#f4f4f4;
37
				}
38
 
39
				.task-title-sp  {
40
					text-decoration:line-through;
41
				}
42
			}
43
 
44
			> .task-bell  {
45
				margin-left:10px;
46
			}
47
 
48
			> .task-checkbox {
49
				float:left;
50
				width:30px;
51
 
52
				input[type="checkbox"] {
53
					cursor: pointer;
54
				}
55
			}
56
 
57
			> .task-title  {
58
				color: #838FA1;
59
				margin-right:10px;
60
 
61
				.task-title-sp  {
62
					margin-right:5px;
63
				}
64
			}
65
 
66
			.task-config-btn {
67
				margin-top: -1px;
68
			}
69
 
70
			> .task-config {
71
				display:none;
72
				position:absolute;
73
				top:10px;
74
				right:10px;
75
			}
76
 
77
			&:hover > .task-config {
78
				display:block;
79
				margin-bottom:0 !important;
80
			}
81
		}
82
	}
83
 
84
	.task-footer  {
85
		margin-top: 5px;
86
 
87
		@include clearfix();
88
	}
89
 
90
}
91
 
92
@media only screen and (max-width: $screen-xs-min) {
93
 
94
	.tasks-widget {
95
		.task-config-btn {
96
			float:inherit;
97
			display:block;
98
		}
99
 
100
		.task-list-projects {
101
			li > .label {
102
				margin-bottom:5px;
103
			}
104
		}
105
	}
106
 
107
}