Statistics
| Branch: | Tag: | Revision:

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

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
					margin-right: 10px;
69
				}
70
			}
71
			&:hover {
72
				border-color:$secondary-color;
73
				.actions-col { visibility:visible;}
74
			}
75
			&.titles {
76
				color:$primary-color;
77
				.name-col { padding-left:0; }
78
				&:hover {
79
					border-color:transparent;
80
				}
81
			}
82
		}
83
	}
84
	.breadcrumbs {
85
		li:first-child {
86
			font-weight:bold;
87
			a {
88
				color:$black;
89
				&:hover {
90
					color:$secondary-color;
91
				}
92
			}
93
		}
94
		a:hover {
95
			color: $secondary-color;
96
		}
97
	}
98
}
99

    
100

    
101

    
102

    
103

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

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

    
181
.dz-success-mark, .dz-error-mark, .dz-error-message {
182
	display: none;
183
}