Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.9 kB)

1
.storage {
2
	padding:45px 0;
3
	position:relative;
4
	.lt-sidebar {
5
		font-size: 1em;
6
		padding:0 20px 40px 40px;
7
		.sidenav {
8
			font-size: inherit;
9
		}
10
		ul {
11
			list-style: none outside none;
12
			li {
13
				padding:5px 0;
14
				&:hover {
15
					background: transparent;
16
					&>a {
17
						color:$secondary-color;
18
						&+span {
19
							display: inline;
20
						}
21
					}
22
				}
23
				span {
24
					float:right;
25
					color:$secondary-color;
26
					display: none;
27
				}
28

    
29
			}
30
		}
31
	}
32
	.files {
33
		margin:1em 0;
34
		padding:0;
35
		list-style: none outside none;
36
		li {
37
			list-style:none outside none;
38
			clear: left;
39
			padding:10px 20px;
40
			border:1px solid transparent;
41
			@extend .clearfix;
42
			text-align: left;
43
			font-weight: normal;
44
			.name-col {
45
				float:left;
46
				width:35%;
47
				padding-left:50px;
48
				&.folder { background:url(../images/icon-folder.png) no-repeat left center; }
49
				&.txt { background:url(../images/icon-txt.png) no-repeat left center; }
50
				&.pdf { background:url(../images/icon-pdf.png) no-repeat left center; }
51
				&.image { background:url(../images/icon-image.png) no-repeat left center; }
52
				font-weight: normal;
53
			}
54
			.size-col {
55
				float:left;
56
				width:10%;
57
			}
58
			.date-col {
59
				float:left;
60
				width:20%;
61
			}
62
			.actions-col {
63
				float:left;
64
				width:30%;
65
				visibility: hidden;
66

    
67
				a {
68
					color: $secondary-color;
69
					margin-right: 10px;
70
					&:hover { color:$primary-color;}
71

    
72
				}
73
			}
74
			&:hover {
75
				border-color:$secondary-color;
76
				.actions-col { visibility:visible;}
77
			}
78
			&.titles {
79
				color:$primary-color;
80
				.name-col { padding-left:0; }
81
				&:hover {
82
					border-color:transparent;
83
				}
84
			}
85
		}
86
	}
87
	.breadcrumbs {
88
		li:first-child {
89
			font-weight:bold;
90
			a {
91
				color:$black;
92
				&:hover {
93
					color:$secondary-color;
94
				}
95
			}
96
		}
97
		a:hover {
98
			color: $secondary-color;
99
		}
100
	}
101
}
102

    
103

    
104

    
105

    
106

    
107
.upload-widget {
108
	
109
	text-align:center;
110
	h2, a{
111
		color:#fff;
112
	}
113
	.btns {
114
		a {
115
			@extend .btn3;
116
			margin:0 10px;
117
		}
118
	}
119
	.breadcrumbs {
120
		*, & > *:before ,li a:first-child, a:hover, li a:first-child:hover  {
121
			color:#fff;
122
		}
123
		a:hover {
124
			text-decoration:underline;
125
		}
126

    
127
		display: inline-block;
128
	}
129
	.files {
130
		color:#fff;
131
		
132
		li {
133
			padding: 10px 120px;
134
			border: none;
135
			position: relative;
136
			.dz-success-mark {
137
				margin-left:10px;
138
			}
139
			.dz-error-mark {
140
				display: none;
141
			}
142
			.cancel-col {
143
				width: 100px;
144
				position: absolute;
145
				right: 50px;
146
				top: 9px;
147
				
148
				.cancel span {
149
					display: block;
150
					text-align: right;
151
				}
152
			}
153
		}
154
		div {
155
			display: inline-block;
156
		}
157
		.progress-bar {
158
			position: static;
159
			padding: 0;
160
			width: 25%;
161
			border: none;
162
			background-color: transparent;
163
			
164
			.progress-wrap {
165
				width: 100%;
166
				margin: 0;
167
			
168
				.progress {
169
					display: block;
170
					margin: 0;
171
					border: 2px solid white;
172
					padding: 0;
173
					background-color:  $secondary-color;
174
				
175
					.meter {
176
						background-color: white;
177
					}
178
				}
179
			}
180
		}
181
	}
182
}
183

    
184
.dz-success-mark, .dz-error-mark, .dz-error-message {
185
	display: none;
186
}