Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/webroot/css/filebrowser.css
blob: 35f6d894dbf37c7c065b6679032e9d6ef14c191a (plain)
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
63
64
65
66
67
68
/* reviewers/browse */
#fileBrowser {
    width: 100%;
    height: 99%;
    border: 1px dashed black;
}
#fileContents {
	position: absolute;
	width: 300px;
	top: 25px;
	right: 30px;
	background: #F7F8F8;
	border: 1px solid black;
}
#fileHeader {
	height: 38px;
	position: relative;
	border-bottom: 1px solid #A1A6B1;
	background: #33415D url("../img/template/header-background.png") top repeat-x;
	z-index: 1;
	text-align: center;
	cursor: move;
}
#fileFooter {
    text-align: right;
    font-size: 12px;
    font-family: verdana, sans-serif;
}
#fileFooter a:link {
    text-decoration: none;
    color: #999;
}
#fileFooter a:visited {
    text-decoration: none;
    color: #999;
}
#fileListing {
    max-height: 200px;
    overflow: auto;
    font-size: 12px;
    font-family: verdana, sans-serif;
}
.fileList li {
    list-style: none;
   	margin-left: 0;
	text-indent: -1em;
}
.fileList li.modified {
    font-style: italic;
}
.fileList li.directory:before {
	content: "\00BB \0020";
}
.fileList li.file:before {
	content: "\203A \0000";
	margin-right: 2px;
}

.fileList li.directory a:link {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.fileList li.directory a:visited {
    text-decoration: none;
    color: black;
    font-weight: bold;
}