Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lightbox.css « css « files_imageviewer « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6e844a2e28b58e08051c6f19c1fd6abcccb9df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#lightbox_overlay{
	position:fixed;
	display:none;
	height:100%;
	width:100%;
	top:0px;
	left:0px;
	opacity:0.5;
	filter: alpha(opacity = 50);
	background-color:black;
	z-index:9999;
}

#lightbox{
	position:fixed;
	display:none;
	max-height:90%;
	max-width:90%;
	top:10px;
	margin-left:auto;
	margin-right:auto;
	z-index:9999;
}