source: VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css/_wizard.scss @ 5578

Last change on this file since 5578 was 5578, checked in by Twan Goosen, 10 years ago

Also accepting PID resolver URL's for publication without warning. Added help text explaining PID's.

File size: 5.6 KB
Line 
1/*
2Copyright (C) 2014 CLARIN
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 3 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program.  If not, see <http://www.gnu.org/licenses/>.
16*/
17
18div.wizard {
19
20    .wicketExtensionsWizardHeaderTitle {
21        padding: 0px 10px;
22        font-size: 16px;
23        font-weight: bold;
24    }
25
26    .wicketExtensionsWizardHeaderSummary {
27        padding: 5px 10px 0 10px;
28        font-style: italics;
29    }
30
31    .wizardHeader {
32        border-bottom: 1px solid #000000;
33        margin: 0 0 10px 0;
34        padding: 0 0 10px 0;
35    }
36
37    .wizardFeedback {
38        // redundant because of global feedback, suppress
39        display: none !important;
40    }
41
42}
43
44form.wizard {
45    margin: 5px 4px;
46    padding: 0;
47    font-size: 100%;
48    width: 978px;
49    min-width: 978px;
50}
51
52form.wizard fieldset,
53div.wizard div.fieldset {
54    clear: both;
55    font-size: 100%;
56    border: none;
57    padding: 0 10px 0 10px;
58    margin: 0 0 0 0;
59}
60
61form.wizard div,
62div.editDialog div {
63    clear: left;
64    display: block;
65    /*  width: 354px;
66      zoom: 1;
67      margin: 5px 0 0 0;
68      padding: 1px 3px;
69    */
70}
71
72form.wizard .extrainfo {
73    margin-left: 50px;
74}
75
76$help-icon-size: 16px;
77
78form.wizard .extrainfo a.extrainfotoggle {
79    display: inline-block;
80    float: right;
81    vertical-align: top;
82    width: $help-icon-size;
83    height: $help-icon-size;
84    /* icon from GLYPHICONS.com */
85    background-image: url(../icons/glyphicons_194_circle_question_mark.png);
86    background-size: $help-icon-size;
87    background-repeat: no-repeat;
88}
89
90form.wizard {
91
92    .extrainfo a.extrainfotoggle span {
93        display: none;
94    }
95
96    div.notes, div.sidenotes {
97        display: inline-block;
98        height: auto;
99        padding: 5px;
100        border: 1px solid #666666;
101        background-color: #ffffe1;
102        color: #666666;
103
104        h4 {
105            text-align: center;
106            padding: 3px 0 3px 0;
107            margin: 0 0 3px 0;
108            border-width: 0 0 1px 0;
109            border-style: solid;
110            border-color: #666666;
111            color: #666666;
112            font-size: 100%;
113        }
114
115        p, ul {
116            margin: 0em 0em 0.5em 0em;
117            color: #666666;
118            font-size: 80%;
119        }
120
121        p.last {
122            margin: 0em;
123        }
124    } //div.notes, div.sidenotes
125
126    div.notes {
127        width: 80%;
128        margin: 0 0 10px 70px;
129    }
130
131    div.sidenotes {
132        float: right;
133        width: 198px;
134        margin: 0 0 10px 10px;   
135    }
136
137    div label {
138        display: block;
139        float: left;
140        width: 140px;
141        padding: 3px 10px;
142        margin: 0 0 5px 0;
143        text-align: right;
144        font-weight: normal;
145    }
146
147
148    textarea {
149        font-family: Verdana, sans-serif;
150        font-size: 100%;
151        width: 570px;
152        overflow: auto;
153        margin-bottom: 5px;
154    }
155
156    .wizardButtons {
157        border-top: 1px solid #000000;
158        margin: 10px 0 0 0;
159        clear: both;
160    }
161
162    .buttonbar {
163        margin: 10px 220px 0 0;
164        padding: 0 10px 0 0;
165        text-align: right; 
166    }
167} //form.wizard
168
169
170form.wizard .buttonbar, div.modalDialog div.modalDialogButtons {
171
172    input.button:hover {
173        color: #AE0000;
174        background-color: #E9EEF7;
175    }
176
177    input.button[disabled],input.button[disabled]:hover {
178        color: #AFAFAF;
179        border-color: #EFEFEF;
180    }
181}
182
183div.required label,
184label.required {
185    font-weight: bold !important;
186}
187
188/*
189 * modal dialog
190 */
191div.modalDialog {
192    margin: 0;
193    padding: 0;
194
195    div.modalDialogContent {
196        margin: 10px;
197
198        p {
199            margin: 1em;
200        }
201    }
202
203    div.modalDialogButtons {
204        border-top: 1px solid #BBBBBB;
205        margin: 0 5px 5px 5px;
206        padding: 5px 0 0 0;
207        text-align: center;
208    }
209}
210
211
212div.confirmationDialog {
213    text-align: center;
214}
215
216div.longConfirmationDialog {
217    text-align: left;
218}
219
220div.editDialog fieldset {
221    border: none;
222    margin: 0;
223    padding: 0;
224}
225
226div.editDialog fieldset label {
227    display: block;
228    float: left;
229    /* width: 100px; */
230    padding: 3px 5px 3px 0;
231    margin: 0 0 5px 0;
232    text-align: right;
233}
234
235/*
236 * dialog customizations
237 */
238div.editCreatorDialog fieldset {
239
240    label {
241        width: 7em;
242    }
243
244    input, textarea {
245        width: 17em;
246    }
247}
248
249div.editResourceDialog fieldset {
250
251    label {
252        width: 6em;
253    }
254
255    input, textarea {
256        width: 30em;
257    }
258}
259
260div.addResourcesDialog fieldset {
261
262    label {
263        width: 6em;
264    }
265
266    input, textarea {
267        width: 30em;
268    }
269}
270
271div.addKeywordDialog fieldset input {
272    width: 20em;
273}
274
275/*
276 * create virtual collection wizard
277 */
278div.wizard a {
279    font-weight: normal;
280}
281
282div.keywordsList {
283    clear: none !important;
284    width: 602px;
285    margin-left: 160px;
286    padding: 3px 0;
287
288
289    div {
290        clear: none;
291    }
292
293    ul {
294        list-style-type: square;
295        margin: 0;
296        padding: 0 0 0 16px;
297
298        li {
299            margin-top: 2px;
300        }
301
302        li.first {
303            margin-top: 0;
304        }
305    }
306}
307
308
309input.button {
310    padding: 1px 4px;
311    margin: 0 2px;
312    color: #000000;
313    background-color: #E9EEF7;
314    border: 2px solid #D4DEEF;
315    border-radius: 4px;
316    -moz-border-radius: 4px;
317}
Note: See TracBrowser for help on using the repository browser.