Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _storage.scss @ 292a32ef

History | View | Annotate | Download (1.8 kB)

1
/* Storage (pithos) related styles  */
2

    
3
.storage {
4
	$storage-h4-w: 25%;
5
	height: 100%;
6
	.rect-plus {
7
		display: inline-block;
8
		background-color: #fff;
9
		color: $link-color-hover;
10
		padding: 0 6px;
11
		font-size: emCalc(26px);
12
		&:hover {
13
			color: $link-color;
14
		}
15
	}
16
	.items-list {
17
		height: 100%;
18
		&>li {
19
			.img-wrap {
20
				top: 0;
21
				height: $list-icon-height;
22
				line-height: $list-icon-height;
23
			}
24
			h4 {
25
				width: $storage-h4-w;
26
				height: $list-icon-height;
27
				line-height: $list-icon-height;
28
			}
29
			.info {
30
				margin-right: 40px;
31
			}	
32
		}
33
		li:hover {
34
			.actions-col {
35
				visibility: visible;
36
			}
37
		}
38
		.add-new {
39
			position: relative;
40
			input[type="file"] {
41
				position: absolute;
42
				left:$lt-bar-width;
43
				top:0;
44
				right: 0;
45
				bottom: 0;
46
				opacity: 0;
47
			}
48
			h4 {
49
				color: #fff;
50
			}
51
			&:hover {
52
				.rect-plus	{
53
					color: $link-color;
54
				}
55
			}
56
		}
57
		&.drag {
58
			background-color: $light-bg;
59
		}
60
	}
61
}
62
.storage-progress{
63
	.items-list {
64
		li {
65
			padding-left: $lt-bar-width + $check-w;
66
			color: #fff;
67
			.img-wrap {
68
				top: 0;
69
				height: $list-icon-height;
70
				line-height: $list-icon-height;
71
			}
72
			h4 {
73
				width: $h4-w;
74
				height: $list-icon-height;
75
				line-height: $list-icon-height;
76
			}
77
			.remove {
78
				text-align: right;
79
				font-weight: bold;
80
				visibility: visible;
81
				a {
82
					color: #fff;
83
				}
84
				em {
85
					display: none;
86
				}
87
				&:hover {
88
					em {
89
						display: inline;
90
					}
91
				}
92
			}
93
			.progress-col {
94
				padding-top: 7px;
95
			}
96
			&:hover {
97
				background-color: transparent;
98
			}
99
		}
100
	}
101
	.progress {
102
		height: 20px;
103
		.meter {
104
			background-color: #fff;
105
			color: $body-font-color;
106
			text-align: right;
107
			padding-right: 10px;
108
			line-height: 100%;
109
		}
110
	}
111
	.details {
112
		border: 0 none;
113
	}
114
}
115

    
116
.all-height {
117
	height: 100%
118
}