aboutsummaryrefslogtreecommitdiff
path: root/release/plugins/imagebrowser/browser/browser.css
blob: 1bb665c456ae45f87715ff3cfd0761abaf99966c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
body {
	margin: 0;
}

.folder-switcher {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	padding: 5px 10px;
	list-style: none;
	background-color: #e3e3e3;
	border-bottom: 1px solid #b7b7b7;
}

.folder-switcher li {
	display: inline-block;
	margin: 5px;
	padding: 5px 10px;
	border: 1px solid #b7b7b7;
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	background-color: #fff;
	color: #333;
	white-space: nowrap;
	cursor: pointer;
}

.folder-switcher li:hover {
	color: #0576b7;
	border-color: #0576b7;
}

.folder-switcher li.active {
	color: #fff;
	background-color: #0576b7;
	border-color: #0576b7;
	box-shadow: none;
}

.images-container {
	padding: 5px 10px;
}

.thumbnail {
	display: inline-block;
	margin: 5px 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
	font-size: 0;
}

.thumbnail:hover {
	border-color: #0a94e3;
}

.thumbnail img {
	width: auto;
	height: auto;
	max-width: 200px;
	max-height: 200px;
}