Changeset 34704


Ignore:
Timestamp:
2021-01-24T17:05:51+13:00 (3 years ago)
Author:
davidb
Message:

Some addition CSS rules added in (comment out) that help when the custom interface uses a dark colour for the main #gs_content page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/web/interfaces/customcol/style/custom.css

    r34702 r34704  
    11
    2 /* The following CSS values replicate current default values used in the 'default' interface */
     2/* The following CSS values replicate current default values used in
     3   the 'default' interface */
     4
    35/* Change to customize appearance of your installation */
    46
     
    1517}
    1618
     19
     20/*
     21
     22  The following CSS entries are key ones to adjust if looking to use a
     23  dark-colour background for the main #gs_content page
     24*/
     25
     26/* Control the colour of the main content part of the page */
     27
     28/*
     29#gs_content {
     30    background-color: rgb(60, 60, 60);
     31}
     32*/
     33
     34/* Now need to make the main UI widget text a light colour, e.g. white */
     35
     36/*
     37.ui-widget-content a {
     38    color: #fff;
     39}
     40
     41.ui-widget-content a:visited {
     42    color: #aaa;
     43}
     44
     45.ui-widget-content {
     46    color: #fff;
     47}
     48*/
     49
     50/* The text in the favourites/berrybasket is an execeptio, as it is
     51   done as a light inset, and so havig dark colour text is better
     52   suited/visible
     53*/
     54
     55/*
     56.ui-widget-content  #berrybasket a {
     57    color: #000;
     58}
     59
     60.ui-widget-content #berrybasket {
     61    color: #000;
     62}
     63*/
     64
     65
Note: See TracChangeset for help on using the changeset viewer.