preliminary search support
[redakcja.git] / redakcja / static / css / gallery.css
1 #sidebar {
2     display:none;
3     position: absolute;
4     top: 0px;
5     right: 0px;
6     bottom: 0px;
7     width: 480px;
8     background-color: #FFF;
9 }
10
11 #side-search {
12     height: 100%;
13     display: none;
14     background-color: #C1C1C1;
15 }
16
17 #side-search p {
18     padding: .5em;
19 }
20
21 /* =========== */
22 /* = Gallery = */
23 /* =========== */
24
25 #side-gallery .error_message
26 {
27         background-color: white;
28         color: black;
29         padding: 0.5em 1em;
30 }
31
32 .change-gallery-panel {
33     width: 100%;
34     border-bottom: 1px solid #777;
35     background-color: #C1C1C1;
36     margin: 0;
37     padding: 2px;
38     z-index: 10;
39 }
40
41 .gallery-image {
42     position: absolute;
43     top: 30px;
44     right: 0;
45     bottom: 0;
46     left: 0;
47     margin: 0;
48     border: none;
49     background-color: transparent;
50     overflow: hidden;
51 }
52
53 .gallery-image img {
54     position: absolute;
55     -moz-drag: none;
56     user-select: none;
57     -webkit-user-select: none;
58     -khtml-user-select: none;
59     -moz-user-select: none;
60     cursor: pointer;
61
62         background-color: white;
63         min-height: 100px;
64         min-width: 100px;
65 }
66
67 .gallery-image img[src=''] {
68         background-color: red;
69 }