Changeset 5531


Ignore:
Timestamp:
08/07/14 08:35:17 (10 years ago)
Author:
Twan Goosen
Message:

Added more help texts, tweaked layout
Refs #584

Location:
VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main
Files:
1 added
1 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/dialog/ModalEditDialogBase.java

    r5522 r5531  
    123123        }
    124124        contentPanel.getForm().setModel(new CompoundPropertyModel<T>(model));
     125        target.appendJavascript("activeTooltips()");
    125126        super.show(target);
    126127    }
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/AddResourcesDialog$Content.html

    r906 r5531  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    3                       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    44<html xmlns="http://www.w3.org/1999/xhtml"
    55      xmlns:wicket="http://wicket.apache.org/">
    6 <head />
    7 <body>
    8 <wicket:panel>
    9 <form wicket:id="addResourcesForm">
    10 <fieldset>
    11   <div class="required">
    12     <label for="add_resources_type">Type</label>
    13     <select wicket:id="type" id="add_resources_type"></select>
    14   </div>
    15   <div class="required">
    16     <label for="add_resources_refs">References</label>
    17     <textarea wicket:id="references"
    18               id="add_resources_refs" rows="24" cols="30"></textarea>
    19   </div>
    20 </fieldset>
    21 <div wicket:id="feedback"></div>
    22 </form>
    23 </wicket:panel>
    24 </body>
     6    <head />
     7    <body>
     8        <wicket:panel>
     9            <form wicket:id="addResourcesForm">
     10                <fieldset>
     11                    <div class="required">
     12                        <label id="typelabel" class="tooltipparent" for="add_resources_type">Type
     13                            <span class="tooltip">
     14                                Type of reference<br /><br />
     15                                Metadata: the referenced item is a CMDI metadata document that
     16                                <em>describes</em> one or more resources<br /><br />
     17                                Resource: the reference item is a resource that can be accessed
     18                                directly through the specified URI
     19                            </span>
     20                        </label>
     21                        <select wicket:id="type" id="add_resources_type"></select>
     22                    </div>
     23                    <div class="required">
     24                        <label id="referenceslabel" class="tooltipparent" for="add_resources_refs">References
     25                            <span class="tooltip">
     26                                List of references of the specified type to add.
     27                                Each line should consist of one PID or URI.
     28                            </span>
     29                        </label>
     30                        <textarea wicket:id="references"
     31                                  id="add_resources_refs" rows="24" cols="30"></textarea>
     32                    </div>
     33                </fieldset>
     34                <div wicket:id="feedback"></div>
     35            </form>
     36        </wicket:panel>
     37    </body>
    2538</html>
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/CreateVirtualCollectionWizard$CreatorsStep.html

    r5529 r5531  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    3                       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    44<html xmlns="http://www.w3.org/1999/xhtml"
    55      xmlns:wicket="http://wicket.apache.org/">
    6 <head />
    7 <body>
    8 <wicket:panel>
    9 <div style="display: none" wicket:id="editCreatorDialog"></div>
    10 <div style="display: none" wicket:id="deleteCreatorDialog"></div>
    11 <div class="fieldset">
    12   <label>Creators<br />
    13     <a id="add" href="#" wicket:id="add" class="add tooltipparent"><span>[add]</span><span class="tooltip">Add a new creator</span></a><br />
    14     <a id="addme" href="#" wicket:id="addme" class="add tooltipparent"><span>[add me]</span><span class="tooltip">Add a new creator with the available user details already filled in</span></a>
    15   </label>
    16   <table wicket:id="creatorsTable" class="creatorsTable"></table>
    17 </div>
    18 </wicket:panel>
    19 </body>
     6    <head />
     7    <body>
     8        <wicket:panel>
     9            <div style="display: none" wicket:id="editCreatorDialog"></div>
     10            <div style="display: none" wicket:id="deleteCreatorDialog"></div>
     11            <div class="fieldset">
     12                <div class="extrainfo">
     13                    <a href="#" class="extrainfotoggle"><span>[info]</span></a>
     14                    <div class="notes">
     15                        <h4>Add one or more creators</h4>
     16                        <p>
     17                            Add a creator for each person involved in the
     18                            creation of this virtual collection.
     19                        </p>
     20                        <p class="last">
     21                            Use the 'add me' action to add a new creator with as
     22                            many of your details already filled in, depending on
     23                            the available information.
     24                        </p>
     25                    </div>
     26                </div>
     27                <label>Creators<br />
     28                    <a id="add" href="#" wicket:id="add" class="add tooltipparent"><span>[add]</span><span class="tooltip">Add a new creator</span></a><br />
     29                    <a id="addme" href="#" wicket:id="addme" class="add tooltipparent"><span>[add me]</span><span class="tooltip">Add a new creator with the available user details already filled in</span></a>
     30                </label>
     31                <table wicket:id="creatorsTable" class="creatorsTable"></table>
     32            </div>
     33        </wicket:panel>
     34    </body>
    2035</html>
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/CreateVirtualCollectionWizard$GeneratedByStep.html

    r5529 r5531  
    88<wicket:panel>
    99<fieldset>
    10   <div class="notes">
     10  <div class="sidenotes">
    1111    <h4>Note</h4>
    1212    <p class="last">
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/CreateVirtualCollectionWizard$ResourcesStep.html

    r5529 r5531  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    3                       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    44<html xmlns="http://www.w3.org/1999/xhtml"
    55      xmlns:wicket="http://wicket.apache.org/">
    6 <head />
    7 <body>
    8 <wicket:panel>
    9 <div style="display: none" wicket:id="editResourceDialog"></div>
    10 <div style="display: none" wicket:id="deleteResourceDialog"></div>
    11 <div style="display: none" wicket:id="addResourcesDialog"></div>
    12 <div wicket:id="resourcesContainer" class="fieldset">
    13   <label class="required">Resources<br />
    14       <a id="add" wicket:id="add" href="#" class="add tooltipparent"><span>[add]</span><span class="tooltip">Add a single new resource or metadata reference with an optional label and/or description</span></a><br />
    15       <a id="addmore" wicket:id="addMore" href="#" class="addMore tooltipparent"><span>[add more]</span><span class="tooltip">Add one or reference of the same type</span></a>
    16   </label>
    17   <table wicket:id="resourcesTable" class="resourcesTable"></table>
    18 </div>
    19 </wicket:panel>
    20 </body>
     6    <head />
     7    <body>
     8        <wicket:panel>
     9            <div style="display: none" wicket:id="editResourceDialog"></div>
     10            <div style="display: none" wicket:id="deleteResourceDialog"></div>
     11            <div style="display: none" wicket:id="addResourcesDialog"></div>
     12            <div wicket:id="resourcesContainer" class="fieldset">
     13                <div class="extrainfo">
     14                    <a href="#" class="extrainfotoggle"><span>[info]</span></a>
     15                    <div class="notes">
     16                        <h4>Add resource or metadata references</h4>
     17                        <p>
     18                            Click 'add' to add an individual reference of the
     19                            type 'Metadata' or 'Resource' and optionally add a
     20                            label and/or description.
     21                        </p>
     22                        <p class="last">
     23                            Click 'add more' to add multiple references (one per
     24                            line) of one type without labels or resources.
     25                            Individual resources can be edited at any stage.
     26                        </p>
     27                    </div>
     28                </div>
     29                <label class="required">Resources<br />
     30                    <a id="add" wicket:id="add" href="#" class="add tooltipparent"><span>[add]</span><span class="tooltip">Add a single new resource or metadata reference with an optional label and/or description</span></a><br />
     31                    <a id="addmore" wicket:id="addMore" href="#" class="addMore tooltipparent"><span>[add more]</span><span class="tooltip">Add one or reference of the same type</span></a>
     32                </label>
     33                <table wicket:id="resourcesTable" class="resourcesTable"></table>
     34            </div>
     35        </wicket:panel>
     36    </body>
    2137</html>
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/EditResourceDialog$Content.html

    r5491 r5531  
    1010  <fieldset>
    1111    <div class="required">
    12       <label for="edit_resource_type">Type</label>
     12      <label id="typelabel" class="tooltipparent" for="edit_resource_type">Type
     13          <span class="tooltip">
     14              Type of reference<br /><br />
     15              Metadata: the referenced item is a CMDI metadata document that
     16              <em>describes</em> one or more resources<br /><br />
     17              Resource: the reference item is a resource that can be accessed
     18              directly through the specified URI
     19          </span>
     20      </label>
    1321      <select wicket:id="type" id="edit_resource_type"></select>
    1422    </div>
    1523    <div class="required">
    16       <label for="edit_resource_ref">Reference</label>
     24      <label id="referencelabel" class="tooltipparent" for="edit_resource_ref">Reference
     25          <span class="tooltip">
     26              A PID or other type or URI identifying or locating the resource
     27              or metadata file
     28          </span>
     29      </label>
    1730      <input wicket:id="ref" id="edit_resource_ref" type="text" />
    1831    </div>
    1932    <div class="optional">
    20       <label for="edit_resource_label">Label</label>
     33      <label id="labellabel" class="tooltipparent" for="edit_resource_label">Label
     34          <span class="tooltip">
     35              An optional label for this reference providing a short description
     36              of the item, to be shown instead of or in addition to the URI
     37          </span>
     38      </label>
    2139      <input wicket:id="label" id="edit_resource_label" type="text" />
    2240    </div>
    2341    <div class="optional">
    24       <label for="edit_resource_description">Description</label>
     42      <label id="descriptionlabel" class="tooltipparent" for="edit_resource_description">Description
     43          <span class="tooltip">
     44              An optional, more detailed description of the referenced item
     45          </span>
     46      </label>
    2547      <input wicket:id="description" id="edit_resource_description" type="text" />
    2648    </div>
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/wizardhelp.js

    r5530 r5531  
    1616 */
    1717
     18/* For tooltips, the qtip jQuery plugin is used. For more info, see
     19 * <http://craigsworks.com/projects/qtip/docs/>
     20 */
     21
    1822$(document).ready(function() {
    19     /* activate tooltip on annotated labels */
    20     $(".tooltipparent").each(function() {
    21         var tooltip = '#' + $(this).attr('id') + ' .tooltip';
    22         $(this).qtip({
    23             content: $(tooltip),
    24             show: 'mouseover',
    25             hide: 'mouseout'
    26         });
    27         $(".tooltip", this).hide();
    28     });
     23    activeTooltips();
    2924
    3025    /* toggle extra help information*/
     
    3732        content: 'Help',
    3833        show: 'mouseover',
    39         hide: 'mouseout'
     34        hide: 'mouseout',
     35        style: {
     36            background: '#ffffe1'
     37        }
    4038    });
    4139});
     40
     41function activeTooltips() {
     42    /* activate tooltip on annotated labels */
     43    $(".tooltipparent").each(function() {
     44        var tooltip = '#' + $(this).attr('id') + ' .tooltip';
     45        $(this).qtip({
     46            content: $(tooltip),
     47            show: 'mouseover',
     48            hide: 'mouseout',
     49            position: {
     50                adjust: {
     51                    x: -5
     52                }
     53            },
     54            style: {
     55                background: '#ffffe1'
     56            }
     57        });
     58        $(".tooltip", this).hide();
     59    });
     60}
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css/vcr.css

    r5530 r5531  
    11* {
    22    margin: 0;
    3 /*    padding: 0; */   
     3    /*    padding: 0; */       
    44}
    55
    66html {
    7         overflow-y: scroll
     7    overflow-y: scroll
    88}
    99
    1010html, body {
    11         font-family: Verdana, sans-serif;
    12         font-size: 12px;
    13         margin: 0 auto;
    14         padding: 0;
    15         line-height: 1;
     11    font-family: Verdana, sans-serif;
     12    font-size: 12px;
     13    margin: 0 auto;
     14    padding: 0;
     15    line-height: 1;
    1616    height: 100%;
    1717    color: #000000;
    18 /*    background-color: #E9EEFA; */
     18    /*    background-color: #E9EEFA; */
    1919    width: 990px;
    2020    min-width: 990px;
     
    2323
    2424noscript {
    25         margin: 0 auto;
    26         padding: 0;
    27         width: 1024px;
     25    margin: 0 auto;
     26    padding: 0;
     27    width: 1024px;
    2828}
    2929
     
    4949    border-top: 2px solid #D4DEEF;
    5050}
    51        
     51
    5252#header-logo {
    53         margin: 0;
    54         padding: 5px;
     53    margin: 0;
     54    padding: 5px;
    5555    height: 70px;
    5656    color: #004071;
    5757    background-color: #E9EEF7;
    5858}
    59        
     59
    6060#header-logo #clarin-logo {
    61         background: transparent url('../images/clarin-logo.png') no-repeat;
    62         float: left;
    63         width: 298px;
     61    background: transparent url('../images/clarin-logo.png') no-repeat;
     62    float: left;
     63    width: 298px;
    6464    height: 70px;
    6565}
     
    8383
    8484#navigation {
    85         margin: 0;
    86         padding: 0;
    87         height: 20px;
    88         clear: both;
     85    margin: 0;
     86    padding: 0;
     87    height: 20px;
     88    clear: both;
    8989    color: #000000;
    9090    background-color: #D4DEEF;
     
    9393    vertical-align: middle;
    9494}
    95        
     95
    9696#menu {
    9797    margin: 0 100px 0 0;
    9898}
    99        
     99
    100100#menu ul {
    101         list-style-type: none;
     101    list-style-type: none;
    102102    margin: 0;
    103103    padding: 0;
     
    121121
    122122#menu ul li + #menu ul li {
    123         border-left: 1px solid black;
    124 }
    125        
     123    border-left: 1px solid black;
     124}
     125
    126126#menu a, #menu a:active, #menu a:visited {
    127         color: #000000;
    128         background-color: inherit;
     127    color: #000000;
     128    background-color: inherit;
    129129}
    130130
    131131#menu a:hover {
    132         color: #AE0000;
    133         background-color: #E9EEF7;
     132    color: #AE0000;
     133    background-color: #E9EEF7;
    134134}
    135135
     
    137137    font-style: italic;
    138138}
    139        
     139
    140140#login {
    141         float: right;
     141    float: right;
    142142    padding: 4px 4px 4px 4px;
    143143    width: auto;
     
    161161
    162162#container .push {
    163         height: 20px;
     163    height: 20px;
    164164    width: auto;
    165165}
    166166
    167167#footer {
    168         padding: 0 4px;
    169         margin: 0 auto;
    170         height: 18px;
     168    padding: 0 4px;
     169    margin: 0 auto;
     170    height: 18px;
    171171    line-height: 18px;
    172172    text-align: right;
     
    189189 */
    190190div.wizard .wicketExtensionsWizardHeaderTitle {
    191         padding: 0px 10px;
    192         font-size: 16px;
    193         font-weight: bold;
     191    padding: 0px 10px;
     192    font-size: 16px;
     193    font-weight: bold;
    194194}
    195195
    196196div.wizard .wicketExtensionsWizardHeaderSummary {
    197         padding: 5px 10px 0 10px;
    198         font-style: italics;
     197    padding: 5px 10px 0 10px;
     198    font-style: italics;
    199199}
    200200
    201201div.wizard .wizardHeader {
    202         border-bottom: 1px solid #000000;
     202    border-bottom: 1px solid #000000;
    203203    margin: 0 0 10px 0;
    204         padding: 0 0 10px 0;
     204    padding: 0 0 10px 0;
    205205}
    206206
    207207form.wizard {
    208   margin: 5px 4px;
    209   padding: 0;
    210   font-size: 100%;
    211   width: 978px;
    212   min-width: 978px;
     208    margin: 5px 4px;
     209    padding: 0;
     210    font-size: 100%;
     211    width: 978px;
     212    min-width: 978px;
    213213}
    214214
    215215form.wizard fieldset,
    216216div.wizard div.fieldset {
    217   clear: both;
    218   font-size: 100%;
    219   border: none;
    220   padding: 0 10px 0 10px;
    221   margin: 0 0 0 0;
     217    clear: both;
     218    font-size: 100%;
     219    border: none;
     220    padding: 0 10px 0 10px;
     221    margin: 0 0 0 0;
    222222}
    223223
     
    253253form.wizard div,
    254254div.editDialog div {
    255   clear: left;
    256   display: block;
    257 /*  width: 354px;
    258   zoom: 1;
    259   margin: 5px 0 0 0;
    260   padding: 1px 3px;
    261   */
     255    clear: left;
     256    display: block;
     257    /*  width: 354px;
     258      zoom: 1;
     259      margin: 5px 0 0 0;
     260      padding: 1px 3px;
     261    */
    262262}
    263263
     
    272272    width: 16px;
    273273    height: 16px;
    274     background-image: url(about-128.png); /* from http://www.iconsdb.com/ */
     274    background-image: url(help-128.png); /* from http://www.iconsdb.com/ */
    275275    background-size: 16px 16px;
    276276    background-repeat: no-repeat;
     
    281281}
    282282
     283form.wizard div.notes, form.wizard div.sidenotes {
     284    display: inline-block;
     285    height: auto;
     286    padding: 5px;
     287    border: 1px solid #666666;
     288    background-color: #ffffe1;
     289    color: #666666;
     290}
     291
    283292form.wizard div.notes {
    284   display: inline-block;
    285   width: 80%;
    286   height: auto;
    287   margin: 0 0 10px 70px;
    288   padding: 5px;
    289   border: 1px solid #666666;
    290   background-color: #ffffe1;
    291   color: #666666;
     293    width: 80%;
     294    margin: 0 0 10px 70px;
     295}
     296
     297form.wizard div.sidenotes {
     298    float: right;
     299    width: 198px;
     300    margin: 0 0 10px 10px;
    292301}
    293302
    294303form.wizard div.notes h4 {
    295   /*
    296   background-image: url(/images/icon_info.gif);
    297   background-repeat: no-repeat;
    298   background-position: top left;
    299   */
    300   text-align: center;
    301   padding: 3px 0 3px 0; /*27px; */
    302   margin: 0 0 3px 0;
    303   border-width: 0 0 1px 0;
    304   border-style: solid;
    305   border-color: #666666;
    306   color: #666666;
    307   font-size: 100%;
     304    /*
     305    background-image: url(/images/icon_info.gif);
     306    background-repeat: no-repeat;
     307    background-position: top left;
     308    */
     309    text-align: center;
     310    padding: 3px 0 3px 0; /*27px; */
     311    margin: 0 0 3px 0;
     312    border-width: 0 0 1px 0;
     313    border-style: solid;
     314    border-color: #666666;
     315    color: #666666;
     316    font-size: 100%;
    308317}
    309318
    310319form.wizard div.notes p {
    311   margin: 0em 0em 0.5em 0em;
    312   color: #666666;
    313   font-size: 80%;
     320    margin: 0em 0em 0.5em 0em;
     321    color: #666666;
     322    font-size: 80%;
    314323}
    315324
    316325form.wizard div.notes p.last {
    317   margin: 0em;
     326    margin: 0em;
    318327}
    319328
    320329form.wizard div label {
    321   display: block;
    322   float: left;
    323   width: 140px;
    324   padding: 3px 5px;
    325   margin: 0 0 5px 0;
    326   text-align: right;
    327   font-weight: normal;
     330    display: block;
     331    float: left;
     332    width: 140px;
     333    padding: 3px 5px;
     334    margin: 0 0 5px 0;
     335    text-align: right;
     336    font-weight: normal;
    328337}
    329338
    330339div.required label,
    331340label.required {
    332   font-weight: bold !important;
     341    font-weight: bold !important;
    333342}
    334343
     
    344353
    345354form.wizard textarea {
    346         font-family: Verdana, sans-serif;
    347         font-size: 100%;
    348         width: 570px;
    349         overflow: auto;
    350         margin-bottom: 5px;
     355    font-family: Verdana, sans-serif;
     356    font-size: 100%;
     357    width: 570px;
     358    overflow: auto;
     359    margin-bottom: 5px;
    351360}
    352361
     
    493502    clear: both;
    494503}
    495        
     504
    496505form.wizard .buttonbar {
    497         margin: 10px 220px 0 0;
    498         padding: 0 10px 0 0;
    499         text-align: right;
     506    margin: 10px 220px 0 0;
     507    padding: 0 10px 0 0;
     508    text-align: right;
    500509}
    501510
     
    505514*/
    506515input.button {
    507         padding: 1px 4px;
    508         margin: 0 2px;
    509         color: #000000;
    510         background-color: #E9EEF7;
    511         border: 2px solid #D4DEEF;
    512         border-radius: 4px;
     516    padding: 1px 4px;
     517    margin: 0 2px;
     518    color: #000000;
     519    background-color: #E9EEF7;
     520    border: 2px solid #D4DEEF;
     521    border-radius: 4px;
    513522    -moz-border-radius: 4px;
    514523}
     
    524533div.modalDialog div.modalDialogButtons input.button[disabled],
    525534div.modalDialog div.modalDialogButtons input.button[disabled]:hover {
    526         color: #AFAFAF;
    527         border-color: #EFEFEF;
     535    color: #AFAFAF;
     536    border-color: #EFEFEF;
    528537}
    529538
     
    533542 */
    534543div.modalDialog {
    535         margin: 0;
    536         padding: 0;
     544    margin: 0;
     545    padding: 0;
    537546}
    538547
    539548div.modalDialog div.modalDialogContent {
    540         margin: 10px;
    541 }
    542        
     549    margin: 10px;
     550}
     551
    543552div.modalDialog div.modalDialogButtons {
    544         border-top: 1px solid #BBBBBB;
    545         margin: 0 5px 5px 5px;
    546         padding: 5px 0 0 0;
    547         text-align: center;
     553    border-top: 1px solid #BBBBBB;
     554    margin: 0 5px 5px 5px;
     555    padding: 5px 0 0 0;
     556    text-align: center;
    548557}
    549558
     
    553562
    554563div.editDialog fieldset {
    555         border: none;
    556         margin: 0;
    557         padding: 0;
     564    border: none;
     565    margin: 0;
     566    padding: 0;
    558567}
    559568
    560569div.editDialog fieldset label {
    561   display: block;
    562   float: left;
    563   /* width: 100px; */
    564   padding: 3px 5px 3px 0;
    565   margin: 0 0 5px 0;
    566   text-align: right;
     570    display: block;
     571    float: left;
     572    /* width: 100px; */
     573    padding: 3px 5px 3px 0;
     574    margin: 0 0 5px 0;
     575    text-align: right;
    567576}
    568577
     
    572581 */
    573582div.editCreatorDialog  fieldset label {
    574         width: 90px;
     583    width: 90px;
    575584}
    576585
     
    590599
    591600div.addResourcesDialog fieldset label {
    592         width: 85px;
     601    width: 85px;
    593602}
    594603
     
    599608
    600609div.addKeywordDialog fieldset input {
    601         width: 285px;
     610    width: 285px;
    602611}
    603612
     
    612621table {
    613622    font-size: 100%;
    614         border-collapse: collapse;
     623    border-collapse: collapse;
    615624}
    616625
    617626table th,
    618627table td {
    619         padding: 2px;
    620         text-align: left;
     628    padding: 2px;
     629    text-align: left;
    621630}
    622631
    623632table thead,
    624633table tfoot {
    625         color: inherit;
    626         background-color: #D4DEEF;
     634    color: inherit;
     635    background-color: #D4DEEF;
    627636    border-top: 1px solid #000000;
    628         border-bottom: 1px solid #000000;
     637    border-bottom: 1px solid #000000;
    629638}
    630639
    631640table td.action {
    632         width: 8em;
    633         text-align: right;
     641    width: 8em;
     642    text-align: right;
    634643}
    635644
     
    655664
    656665a {
    657         color: #AE0000;
    658         background-color: inherit;
    659         text-decoration: none;
     666    color: #AE0000;
     667    background-color: inherit;
     668    text-decoration: none;
    660669}
    661670
    662671table tbody {
    663         border-bottom: 1px solid #000000;
     672    border-bottom: 1px solid #000000;
    664673}
    665674
     
    675684
    676685table td.norecords-td {
    677         text-align: center;
    678         color: inherit;
    679         background-color: #FFFFFF;
     686    text-align: center;
     687    color: inherit;
     688    background-color: #FFFFFF;
    680689}
    681690
    682691table thead tr.navigation {
    683         border-bottom: 1px dotted #BBBBBB;
     692    border-bottom: 1px dotted #BBBBBB;
    684693}
    685694
    686695table tr.navigation div {
    687         clear: none !important;
     696    clear: none !important;
    688697}
    689698
     
    699708
    700709table td.type {
    701         width: 60px;
     710    width: 60px;
    702711}
    703712
    704713div.keywordsList {
    705         clear: none !important;
    706         width: 602px;
    707         margin-left: 160px;
    708         padding: 3px 0;
     714    clear: none !important;
     715    width: 602px;
     716    margin-left: 160px;
     717    padding: 3px 0;
    709718}
    710719
    711720div.keywordsList div {
    712         clear: none;
     721    clear: none;
    713722}
    714723
     
    720729
    721730div.keywordsList ul li {
    722         margin-top: 2px;
     731    margin-top: 2px;
    723732}
    724733
     
    728737
    729738table.collectionsTable {
    730         width: auto;
    731         table-layout: fixed;
     739    width: auto;
     740    table-layout: fixed;
    732741}
    733742
     
    739748table.collectionsTable.public th.name,
    740749table.collectionsTable.public td.name {
    741         width: 796px;
     750    width: 796px;
    742751}
    743752
     
    748757
    749758table.collectionsTable td.name div.name {
    750         padding-left: 16px;
     759    padding-left: 16px;
    751760    background-image: url('../icons/bullet_arrow_down.png');
    752761    background-repeat: no-repeat;
     
    756765
    757766table.collectionsTable td.name div.name:hover {
    758         color: #AE0000;
    759         background-color: inherit;
     767    color: #AE0000;
     768    background-color: inherit;
    760769}
    761770
     
    772781
    773782table.collectionsTable td.name div.details {
    774         margin-left: 16px;
     783    margin-left: 16px;
    775784    margin-right: -248px;
    776785    width: 964px;
     
    783792
    784793table.collectionsTable td.name div.actions {
    785         margin: 4px 0 2px 0;
     794    margin: 4px 0 2px 0;
    786795}
    787796
     
    803812table.collectionsTable td.action,
    804813table.collectionsTable th.action {
    805         width: 12px;
     814    width: 12px;
    806815}
    807816
     
    828837
    829838tr.headers a.wicket_orderNone {
    830         padding-right: 7px;
    831         background: transparent url('../icons/order_none.png') no-repeat center right;
     839    padding-right: 7px;
     840    background: transparent url('../icons/order_none.png') no-repeat center right;
    832841}
    833842
     
    843852
    844853div.toggleBorder {
    845         border-top: 1px solid #000000;
     854    border-top: 1px solid #000000;
    846855}
    847856
    848857div.toggleBorder div.toggleBorderHeader {
    849         margin: 0;
    850         padding: 2px 2px 2px 16px;
    851         border-bottom: 1px solid #000000;
     858    margin: 0;
     859    padding: 2px 2px 2px 16px;
     860    border-bottom: 1px solid #000000;
    852861    color: inherit;
    853862    background-color: #D4DEEF;
     
    859868
    860869div.toggleBorder div.toggleBorderHeader span {
    861         font-weight: bold;
     870    font-weight: bold;
    862871}
    863872
    864873div.toggleBorder div.toggleBorderHeader.collapsed {
    865         background-image: url('../icons/bullet_arrow_down.png');
    866         background-repeat: no-repeat;
    867         background-position: center left;
     874    background-image: url('../icons/bullet_arrow_down.png');
     875    background-repeat: no-repeat;
     876    background-position: center left;
    868877}
    869878
     
    874883
    875884form.filterForm {
    876         margin: 0;
    877         padding: 0;
    878 }
    879        
     885    margin: 0;
     886    padding: 0;
     887}
     888
    880889form.filterForm fieldset {
    881         padding: 0;
    882         margin: 0;
    883         border: none;
     890    padding: 0;
     891    margin: 0;
     892    border: none;
    884893}
    885894
    886895form.filterForm div.optional {
    887         margin-bottom: 4px;
     896    margin-bottom: 4px;
    888897}
    889898
    890899form.filterForm label {
    891         width: 75px !important;
     900    width: 75px !important;
    892901}
    893902
    894903form.filterForm input.name,
    895904form.filterForm input.desc {
    896         width: 790px;
     905    width: 790px;
    897906}
    898907
     
    906915
    907916div.popupMenu li a {
    908         color: #000000;
     917    color: #000000;
    909918}
    910919
     
    919928
    920929div.collectionDetails div.property {
    921   clear: both;
    922   font-size: 100%;
    923   border: none;
    924   padding: 0 10px 0 10px;
    925   margin: 0 0 4px 0;
     930    clear: both;
     931    font-size: 100%;
     932    border: none;
     933    padding: 0 10px 0 10px;
     934    margin: 0 0 4px 0;
    926935}
    927936
    928937div.collectionDetails div label {
    929   display: block;
    930   float: left;
    931   width: 140px;
    932   padding: 0px 2px;
    933   margin: 0;
    934   text-align: right;
    935   font-weight: normal;
     938    display: block;
     939    float: left;
     940    width: 140px;
     941    padding: 0px 2px;
     942    margin: 0;
     943    text-align: right;
     944    font-weight: normal;
    936945}
    937946
    938947div.collectionDetails div label:after {
    939         content: ':';
     948    content: ':';
    940949}
    941950
     
    954963
    955964div.collectionDetails ul.creators {
    956         margin: 0;
    957         padding: 0;
     965    margin: 0;
     966    padding: 0;
    958967    list-style: none;
    959968}
    960969
    961970div.collectionDetails ul.creators li {
    962         border-top: 1px dotted #000000;
     971    border-top: 1px dotted #000000;
    963972    margin-top: 4px;
    964973    padding-top: 4px;
     
    966975
    967976div.collectionDetails ul.creators li.first {
    968         border-top: none;
    969         margin-top: 0;
    970         padding-top: 0;
     977    border-top: none;
     978    margin-top: 0;
     979    padding-top: 0;
    971980}
    972981
    973982div.collectionDetails.resources {
    974         padding: 0 !important;
     983    padding: 0 !important;
    975984}
    976985
    977986div.collectionDetails.resources table {
    978         width: 100%;
     987    width: 100%;
    979988}
    980989
    981990div.collectionDetails.buttons {
    982         margin: 10px 0 10px 0;
    983         text-align: center;
     991    margin: 10px 0 10px 0;
     992    text-align: center;
    984993}
    985994
Note: See TracChangeset for help on using the changeset viewer.