Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _storage.scss @ 0b14cfb4

History | View | Annotate | Download (2.7 kB)

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

    
3
.storage {
4
	$storage-h4-w: 25%;
5
	.rect-plus {
6
		display: inline-block;
7
		background-color: #fff;
8
		color: $link-color-hover;
9
		padding: 0 6px;
10
		font-size: emCalc(26px);
11
		&:hover {
12
			color: $link-color;
13
		}
14
	}
15

    
16
	&.list-view {
17
		.items-list {
18
			h4, .img-wrap {
19
				height: $list-icon-height;
20
				line-height: $list-icon-height;
21
			}
22
			h4 {
23
				width: $storage-h4-w;
24
			}
25
			.info {
26
				margin-right: 40px;
27
			}
28
			li:hover {
29
				.actions-col {
30
					visibility: visible;
31
				}
32
			}
33
		}
34
	}
35
	.files {
36
		margin:1em 0;
37
		padding:0;
38
		list-style: none outside none;
39
		li {
40
			list-style:none outside none;
41
			clear: left;
42
			padding:10px 20px;
43
			border:1px solid transparent;
44
			@extend .clearfix;
45
			text-align: left;
46
			font-weight: normal;
47
			.name-col {
48
				float:left;
49
				width:35%;
50
				padding-left:50px;
51
				&.folder { background:url(../images/icon-folder.png) no-repeat left center; }
52
				&.txt { background:url(../images/icon-txt.png) no-repeat left center; }
53
				&.pdf { background:url(../images/icon-pdf.png) no-repeat left center; }
54
				&.image { background:url(../images/icon-image.png) no-repeat left center; }
55
				font-weight: normal;
56
			}
57
			.size-col {
58
				float:left;
59
				width:10%;
60
			}
61
			.date-col {
62
				float:left;
63
				width:20%;
64
			}
65
			
66
			&:hover {
67
				border-color:$secondary-color;
68
				.actions-col { visibility:visible;}
69
			}
70
			&.titles {
71
				color:$primary-color;
72
				.name-col { padding-left:0; }
73
				&:hover {
74
					border-color:transparent;
75
				}
76
			}
77
		}
78
	}
79
}
80

    
81

    
82

    
83

    
84

    
85
.upload-widget {
86
	
87
	text-align:center;
88
	h2, a{
89
		color:#fff;
90
	}
91
	.btns {
92
		a {
93
			@extend .btn3;
94
			margin:0 10px;
95
		}
96
	}
97
	.breadcrumbs {
98
		*, & > *:before ,li a:first-child, a:hover, li a:first-child:hover  {
99
			color:#fff;
100
		}
101
		a:hover {
102
			text-decoration:underline;
103
		}
104

    
105
		display: inline-block;
106
	}
107
	.files {
108
		color:#fff;
109
		
110
		li {
111
			padding: 10px 120px;
112
			border: none;
113
			position: relative;
114
			.dz-success-mark {
115
				margin-left:10px;
116
			}
117
			.dz-error-mark {
118
				display: none;
119
			}
120
			.cancel-col {
121
				width: 100px;
122
				position: absolute;
123
				right: 50px;
124
				top: 9px;
125
				
126
				.cancel span {
127
					display: block;
128
					text-align: right;
129
				}
130
			}
131
		}
132
		div {
133
			display: inline-block;
134
		}
135
		.progress-bar {
136
			position: static;
137
			padding: 0;
138
			width: 25%;
139
			border: none;
140
			background-color: transparent;
141
			
142
			.progress-wrap {
143
				width: 100%;
144
				margin: 0;
145
			
146
				.progress {
147
					display: block;
148
					margin: 0;
149
					border: 2px solid white;
150
					padding: 0;
151
					background-color:  $secondary-color;
152
				
153
					.meter {
154
						background-color: white;
155
					}
156
				}
157
			}
158
		}
159
	}
160
}
161

    
162
.dz-success-mark, .dz-error-mark, .dz-error-message {
163
	display: none;
164
}