Changeset 5644


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

link colours
Refs #631

Location:
VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css/CLARIN.scss

    r5643 r5644  
    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
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css/_table.scss

    r5586 r5644  
    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
Note: See TracChangeset for help on using the changeset viewer.