Changeset 5645


Ignore:
Timestamp:
09/17/14 08:30:57 (10 years ago)
Author:
Twan Goosen
Message:

merged layout fixes from trunk to 1.0 branch

Location:
VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0

  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/pages/AboutPage.html

    r5621 r5645  
    2828                <a title="IDS" href="https://www.ids-mannheim.de/"><img src="images/ids-logo.png" alt="IDS logo"/></a>
    2929            </p>
     30            <p>
     31                Persistent identifiers for the VCR are issued by
     32                <a href="http://www.gwdg.de/">GWDG</a> using the
     33                <a href="http://www.pidconsortium.eu/">EPIC API version 2</a>.
     34            </p>
    3035            <h2>Licenses</h2>
    3136            <p>
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/pages/AuthenticationStatePanel.html

    r5577 r5645  
    1919            <wicket:fragment wicket:id="logoutFragment">
    2020                <li class="authenticated">
     21                    <span class="glyphicon glyphicon-user"></span>
    2122                    <span wicket:id="username">username</span>
    2223                    <!--<a wicket:id="logoutLink" id="logout" class="glyphicon glyphicon-log-out" href="#"><span>LOGOUT</span></a>-->
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/pages/BasePage.html

    r5621 r5645  
    77        <title>CLARIN Virtual Collection Registry</title>
    88        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    9 
     9        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    1010        <!-- Bootstrap styles required for CLARIN style to work properly -->
    1111        <link rel="stylesheet" type="text/css" href="//infra.clarin.eu/content/libs/bootstrap-3.2.0-dist/css/bootstrap.min.css" />
     
    6060            <div class="container">
    6161                <div id="CLARIN_footer_left">
    62                     <a title="about" wicket:id="aboutlink"><span>VERSION ${pom.version} </span><span class="glyphicon glyphicon-info-sign"></span></a>
     62                    <a title="about" wicket:id="aboutlink">
     63                        <span class="glyphicon glyphicon-info-sign"></span>
     64                        <span>VERSION ${pom.version} </span>
     65                    </a>
    6366                </div>
    6467                <div id="CLARIN_footer_middle">
     
    6669                </div>
    6770                <div id="CLARIN_footer_right">
    68                     <a title="contact" class="glyphicon glyphicon-envelope" href="mailto:vcr@clarin.eu"><span> CONTACT</span></a>
     71                    <a title="contact" href="mailto:vcr@clarin.eu">
     72                        <span class="glyphicon glyphicon-envelope"></span>
     73                        <span> CONTACT</span>
     74                    </a>
    6975                </div>
    7076            </div>
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/java/eu/clarin/cmdi/virtualcollectionregistry/gui/wizard/CreateVirtualCollectionWizard$GeneralStep.html

    r5596 r5645  
    3030                    </label>
    3131                    <input wicket:id="name"
    32                            id="gen_vc_name" type="text" size="64" maxlength="255"/>
     32                           id="gen_vc_name" type="text" maxlength="255"/>
    3333                </div>
    3434                <div class="required">
     
    5050                    </label>
    5151                    <textarea wicket:id="description"
    52                               id="gen_vc_desc" cols="80" rows="8"></textarea>
     52                              id="gen_vc_desc" rows="8"></textarea>
    5353                </div>
    5454                <div class="optional">
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/webapp/css/CLARIN.scss

    r5596 r5645  
    1717$text_deemphasized: #666;
    1818//$hyperlink_color: #03683f;
     19
     20$hyperlink_text_color: $clarin_blue;
     21$hyperlink_text_emphasized_color: $red;
     22$hyperlink_text_deemphasized_color: $text_deemphasized;
     23
     24$hyperlink_text_periphery_color: #6b5741;
     25$hyperlink_text_emphasized_periphery_color: $red;
     26$hyperlink_text_deemphasized_periphery_color: #8c765a;
     27
    1928$text_emphasized_periphery: #806a52;
    2029$text_deemphasized_periphery: #c0a37c;
    21 $hyperlink: $text_emphasized_periphery;
    22 $hyperlink_visited: $text_deemphasized_periphery;
     30$hyperlink: $hyperlink_text_color;
     31$hyperlink_visited: $hyperlink_text_deemphasized_color;
     32
    2333$background_color: #f9f9f9;
    2434
     
    5262}
    5363
     64
    5465a {
    55   color: $hyperlink;
    56   text-decoration: dotted !important;
    57 
    58   &:hover, &:focus {
    59     // color: inherit;
     66    //color: $text_emphasized_periphery;
    6067    text-decoration: none !important;
    61   }
    62 
    63   &:visited {
    64     color: $hyperlink_visited;
    65   }
     68    //, font-weight 1s linear;
     69    //font-weight: 700;
     70
     71    &:link {
     72        color: $hyperlink_text_color;
     73    }
     74
     75    &:hover,
     76    &:focus {
     77        color: $hyperlink_text_emphasized_color;
     78        //transform: scale(2, 2) !important;
     79        //transform: scale(1.1, 1.1) !important;
     80    }
     81   
     82    &:active {
     83        color: $hyperlink_text_emphasized_color;
     84    }
     85
     86    &:visited {
     87        color: $hyperlink_text_deemphasized_color;
     88    }
    6689}
    6790
     
    307330    tr th a {
    308331      color: #fff !important;
    309       text-decoration: underline !important;
    310332    }
    311333
     
    426448    align-content: space-around;
    427449
     450    div#CLARIN_footer_left, div#CLARIN_footer_right {
     451        a span.glyphicon {
     452            margin-right: .2em;
     453        }
     454    }
     455   
    428456    div#CLARIN_footer_left {
    429       order: 1;
     457        order: 1;
    430458      //float: left;
    431459      //display: inline-block;
    432       display: flex !important;
    433       text-align: left;
    434       vertical-align: middle;
    435       margin: auto;
    436       align-content: space-around;
     460        display: flex !important;
     461        text-align: left;
     462        vertical-align: middle;
     463        margin: auto;
     464        width: 33%;
     465        align-content: space-around;
     466        padding-left: 1em;
    437467      //width: 25%;
    438468      //max-height: 100%;
     
    440470
    441471    div#CLARIN_footer_middle {
    442       order: 2;
     472        order: 2;
    443473      //float: left;
    444474      //display: inline-block;
    445       display: flex !important;
    446       text-align: center;
    447       margin: auto;
    448       align-content: space-around;
     475        display: flex !important;
     476        text-align: center;
     477        margin: auto;
     478        width: 33%;
     479        align-content: space-around;
    449480      //width: 50%;
    450481      //max-height: 100%;
    451482
    452       img {
    453         display: inline-block;
    454         max-width: 100%;
    455         max-height: 100%;
    456         overflow: hidden;
     483      a {
     484          display: block;
     485          width: 100%;
     486     
     487        img {
     488          margin: 0 auto;
     489          display: block;
     490          max-width: 100%;
     491          max-height: 100%;
     492          overflow: hidden;
     493        }
    457494      }
    458495    }
    459496
    460497    div#CLARIN_footer_right {
    461       order: 3;
     498        order: 3;
    462499      //float: left;
    463       text-align: right;
    464       vertical-align: middle;
    465       display: flex !important;
    466       margin: auto;
    467       align-content: space-around;
     500        text-align: right;
     501        vertical-align: middle;
     502        display: flex !important;
     503        /* margin: auto; */
     504        width: 33%;
     505        align-content: space-around;
     506        padding-right: 1em;
    468507      //width: 25%;
    469508      //max-height: 100%;
     509     
     510      a {
     511          width: 100%;
     512      }
    470513    }
    471514  }
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/webapp/css/_filterform.scss

    r5572 r5645  
    2020    margin: 0;
    2121    padding: 0;
     22
     23    fieldset {
     24        padding: 0;
     25        margin: 0;
     26        border: none;
     27    }
     28
     29    div.optional {
     30        margin-bottom: 4px;
     31    }
     32   
     33    select {
     34        width: 20%;
     35        min-width: 8em;
     36    }
     37
     38    input[type=text] {
     39        width: 40%;
     40    }
     41
    2242}
    23 
    24 form.filterForm fieldset {
    25     padding: 0;
    26     margin: 0;
    27     border: none;
    28 }
    29 
    30 form.filterForm div.optional {
    31     margin-bottom: 4px;
    32 }
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/webapp/css/_table.scss

    r5596 r5645  
    114114            cursor: pointer;
    115115
    116 
    117 
    118116            &:hover {
    119                 color: #AE0000;
     117                color: $hyperlink_text_emphasized_color;
    120118                background-color: inherit;
    121119            }
     
    177175        background-image: url('../icons/glyphicons_136_cogwheel.png');
    178176    }
     177   
     178    a:visited {
     179        color: $hyperlink;
     180    }
     181   
     182    a:hover, a:active {
     183        color: $hyperlink_text_emphasized_color;
     184    }
     185   
    179186} //table.collectionsTable
    180187
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/webapp/css/_wizard.scss

    r5578 r5645  
    4242}
    4343
     44form.wizard div.wizardView {
     45   
     46    label {
     47        width: 15%;
     48        min-width: 10em;
     49    }
     50   
     51    input[type=text], textarea {
     52        width: 50%;
     53    }
     54   
     55   
     56   
     57}
     58
    4459form.wizard {
    4560    margin: 5px 4px;
    4661    padding: 0;
    4762    font-size: 100%;
    48     width: 978px;
    49     min-width: 978px;
     63    width: 100%;
    5064}
    5165
     
    138152        display: block;
    139153        float: left;
    140         width: 140px;
     154        width: 15%;
     155        min-width: 7em;
    141156        padding: 3px 10px;
    142157        margin: 0 0 5px 0;
    143158        text-align: right;
    144159        font-weight: normal;
     160    }
     161
     162    div input {
     163        box-sizing:border-box;
     164        -moz-box-sizing:border-box;
    145165    }
    146166
  • VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0/src/main/webapp/css/vcr.scss

    r5621 r5645  
    1414
    1515body {
    16     font-size: 120%;
     16    font-size: 130%;
    1717}
    1818
Note: See TracChangeset for help on using the changeset viewer.