source: extensions/UserCollections/template/style_thumbnails.css @ 23361

Last change on this file since 23361 was 23361, checked in by mistic100, 11 years ago

all collections are "active", display a menu when adding to a collection

File size: 824 bytes
Line 
1#thumbnails li {
2  position:relative !important;
3  display:inline-block;
4}
5#thumbnails li .addCollection {
6  width:100%;
7  height:16px;
8  display:none;
9  position:absolute;
10  top:0;
11  background:rgba(0,0,0,0.8);
12  padding:2px;
13  border-radius:2px;
14  font-size:10px;
15  z-index:100 !important;
16  color:#eee;
17  white-space:nowrap;
18}
19#thumbnails li:hover .addCollection {
20  display:block !important;
21}
22
23#collectionsDropdown {
24  display:none;
25  position:fixed;
26  top:0;
27  left:0;
28  box-shadow:2px 2px 10px #000;
29}
30
31#collectionsDropdown .switchBoxTitle {
32  font-weight:bold;
33}
34
35#collectionsDropdown .switchBoxFooter {
36  border-top:1px solid #444;
37  padding-top:5px;
38  margin-top:5px;
39}
40
41#collectionsDropdown a, a.addCollection {
42  cursor:pointer;
43}
44
45#collectionsDropdown .remove, #collectionsDropdown input.new {
46  display:none;
47}
Note: See TracBrowser for help on using the repository browser.