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