New tool: annotations from current text (fixes #862)
[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 #side-annotations {
22     display: none;
23 }
24
25 .annotations-list {
26     position: absolute;
27     left: 0;
28     top: 28px;
29     right: 0;
30     bottom: 0;
31     overflow: auto;
32     padding: 1em 1em 0 1em;
33 }
34
35 #side-annotations p.akap {
36     font-size: 16px;
37     font-family: "Georgia", "Times New Roman", serif;
38     line-height: 1.5em;
39     margin-bottom: 1em;
40 }
41
42 /* =========== */
43 /* = Gallery = */
44 /* =========== */
45
46 #side-gallery .error_message
47 {
48         background-color: white;
49         color: black;
50         padding: 0.5em 1em;
51 }
52
53 .change-gallery-panel {
54     width: 100%;
55     border-bottom: 1px solid #777;
56     background-color: #C1C1C1;
57     margin: 0;
58     padding: 2px;
59     z-index: 10;
60 }
61
62 .gallery-image {
63     position: absolute;
64     top: 30px;
65     right: 0;
66     bottom: 0;
67     left: 0;
68     margin: 0;
69     border: none;
70     background-color: transparent;
71     overflow: hidden;
72 }
73
74 .gallery-image img {
75     position: absolute;
76     -moz-drag: none;
77     user-select: none;
78     -webkit-user-select: none;
79     -khtml-user-select: none;
80     -moz-user-select: none;
81     cursor: pointer;
82
83         background-color: white;
84         min-height: 100px;
85         min-width: 100px;
86 }
87
88 .gallery-image img[src=''] {
89         background-color: red;
90 }