changed git call from https to git readonly
[atutor.git] / mods / wiki / module.css
1
2 /*
3    This sample stylesheet lists all possible stylesheet sections, that
4    ewiki and its plugins may output. But don't forget to also have a look
5    into the README section about this. (This also obsoletes the 'core.css'
6    sample in the fragments/css/ directory.)
7 */
8
9
10
11 /* a typical wiki page outout is separated into following classes:
12
13  .wiki.<action>.<PageName>
14     .text-head
15        h2.text-title
16     .text-body
17        <...>
18     .wiki-plugins
19        .action-links
20        .<more-plugins>
21 */
22 .wiki.edit.FrontPage {
23         background: transparent;
24         background-color: white;
25         border:thin #cccccc solid;
26         padding:1em;
27         margin-right:1em;
28 }
29
30 input[type=submit]{
31         color:black;
32         border:thin black solid;
33         background-color:white;
34 }
35
36 .wiki-plugins{
37         background-color: white;
38         border:thin #999 solid;
39         font-weight:600;
40         padding:.2em;
41
42 }
43
44
45 .edit-box{
46         border: 1px solid #999;
47         background-color: white;
48         padding:1em;
49
50 }
51
52 /*-- links to non-existent pages*/
53 .NotFound * {
54    text-decoration: none;
55    border-bottom: dashed 1px blue;
56 }
57 .NotFound a {
58    color: red;
59    border-bottom-style: none;
60 }
61
62
63 /*.wiki  {
64    background: url("wikibg.png") repeat-y;
65 }*/
66
67
68 /* ----------------------------------------------
69   then you can select on $actions
70   or even page names
71 */
72 /*.wiki.edit {
73    background-color: #993322;
74 }*/
75
76 .wiki.info {
77         background-color: white;
78         border:thin #cccccc solid;
79         padding: 1em;
80 }
81
82 .wiki.view.PageIndex {                  /* "PageIndex" when "view"ed */
83    background-color: #ffee55;
84 }
85
86 .wiki.SiteOverview {                    /* "SiteOverview" regardless of $action */
87    font-family: "Lucida Bright";
88 }
89 .version-info{
90         border:thin black solid;
91         padding:1em;
92 }
93
94
95
96 /* -----------------------------------------------
97   every page has a title now, always <h2>,
98   some of them enclose links (when "view"ed)
99 */
100 /*.wiki h2.page.title {
101    color: red;
102    border-bottom: 2px #eedddd solid;
103 }*/
104
105 /*.wiki h2.page.title a {
106    color: #5555cc;
107    text-decoration: none;
108 }*/
109
110
111 /* -----------------------------------------------
112   the ".action-links" or ".control-links" are the
113   list of links below every wiki page ('PageInfo'
114   and 'EditThisPage' ...)
115 */
116 /*.wiki.view .action-links {
117    background-color: #444444;
118    border: dashed 4px #444444;
119 }*/
120
121 .wiki.view .action-links hr,  .wiki .action-links br, hr {
122          display: none;
123 }
124
125 /*.wiki.view .action-links a {
126    color: #ffffff;
127 }*/
128
129 /*.wiki.view .action-links a:hover {
130    background: #151155;
131 }*/
132
133
134 /* -----------------------------------------------
135   the "info" pages result list is often
136   chunked into parts
137 */
138 .wiki.info .chunked-result a {
139         text-decoration: underline;
140         background-color: #ddbb55;
141 }
142
143
144 /* -----------------------------------------------
145   the "edit" pages form elements are grouped
146 */
147 .wiki.edit .edit-box {
148    /* usually encloses a textarea and two submit buttons */
149 }
150
151 .wiki.edit .edit-box textarea {
152          border: 1px solid #000000;
153         background-color: #eeeeee;
154 }
155
156 .wiki.edit form[name=ewiki] {
157    /* old way, doesn't work with good old IE reliable */
158 }
159
160 /*.wiki.edit .image-upload {
161    background: url("image-upload.jpeg") no-repeat;
162 }
163 */
164 .wiki.edit .preview {
165         margin-bottom:1em;
166         border:thin #cccccc  dashed;
167         font-size:100%;
168 }
169
170 .attachments{
171         background-color:white;
172         border:thin #cccccc solid;
173         margin:1em;
174         padding: 1em;
175 }
176
177 .links, .view, .tour{
178         border: thin #cccccc solid;
179         margin-right:1em;
180 padding:.5em;
181
182 }
183 /*
184
185 Calendar styles
186 */
187
188 table.calendar {
189         background-color: #CDBDAD;
190         margin-top:1em;
191 }
192 table.calendar td {
193         font-family: "Verdana", "Arial", sans-serif;
194 }
195
196 table.calendar .head {
197         font-size: 10pt;
198         text-align: center;
199 }
200
201 table.calendar .daynames {
202         color:#BA997A;
203         font-size: 10pt;
204         text-align:center;
205 }
206
207 table.calendar .day {
208         font-size: 10pt;
209         text-align:right;
210 }
211 table.calendar .today{
212         background-color:#D7CFC7;
213         font-size: 8pt;   
214         text-align:right;
215 }
216
217 table.calendar a.found {
218         text-decoration: none;
219         font-weight:600;
220 }
221 table.calendar a.hide {
222         text-decoration: none;
223 }
224
225