author | Dan |
Wed, 21 Nov 2007 15:22:13 -0500 | |
changeset 13 | f6ca7cead82c |
parent 0 | 7caf561c50ee |
child 18 | c1c398349651 |
permissions | -rw-r--r-- |
0
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
1 |
/* |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
2 |
* CSS for gallery browser |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
3 |
*/ |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
4 |
|
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
5 |
div.gallery_icon { |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
6 |
border-width: 1px; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
7 |
border-style: solid; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
8 |
border-color: #FFFFFF; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
9 |
cursor: pointer; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
10 |
text-align: center; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
11 |
display: table; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
12 |
margin: 0 auto; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
13 |
padding: 4px; |
13 | 14 |
width: 80px; |
15 |
white-space: nowrap; |
|
0
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
16 |
} |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
17 |
|
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
18 |
div.gallery_icon:hover { |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
19 |
border-color: #CCCCCC; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
20 |
} |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
21 |
|
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
22 |
div.gallery_icon img.gallery_thumb { |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
23 |
display: block; |
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
24 |
border-width: 0; |
13 | 25 |
margin: auto auto 6px auto; |
26 |
} |
|
27 |
||
28 |
ul.snapr-gallery { |
|
29 |
list-style-type: none !important; |
|
30 |
list-style-image: none !important; |
|
31 |
margin-left: 0; |
|
32 |
padding-left: 0; |
|
0
7caf561c50ee
Initial population; browser, viewer, uploader, and security are working
Dan
parents:
diff
changeset
|
33 |
} |
13 | 34 |
|
35 |
ul.snapr-gallery li.snapr-icon { |
|
36 |
float: left; |
|
37 |
list-style-type: none !important; |
|
38 |
list-style-image: none !important; |
|
39 |
width: 80px; |
|
40 |
margin-right: 15px; |
|
41 |
} |
|
42 |
||
43 |
a.snapr-imagelink { |
|
44 |
display: block; |
|
45 |
height: 80px; |
|
46 |
vertical-align: middle; |
|
47 |
} |
|
48 |
||
49 |