Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.7 kB)

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

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

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

    
69
				a {
70
					margin-right: 10px;
71
				}
72
			}
73
			&:hover {
74
				border-color:$secondary-color;
75
				.actions-col { visibility:visible;}
76
			}
77
			&.titles {
78
				color:$primary-color;
79
				.name-col { padding-left:0; }
80
				&:hover {
81
					border-color:transparent;
82
				}
83
			}
84
		}
85
	}
86
}
87

    
88

    
89

    
90

    
91

    
92
.upload-widget {
93
	
94
	text-align:center;
95
	h2, a{
96
		color:#fff;
97
	}
98
	.btns {
99
		a {
100
			@extend .btn3;
101
			margin:0 10px;
102
		}
103
	}
104
	.breadcrumbs {
105
		*, & > *:before ,li a:first-child, a:hover, li a:first-child:hover  {
106
			color:#fff;
107
		}
108
		a:hover {
109
			text-decoration:underline;
110
		}
111

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

    
169
.dz-success-mark, .dz-error-mark, .dz-error-message {
170
	display: none;
171
}