Ignore:
Timestamp:
08/09/12 17:47:56 (13 years ago)
Author:
tjcschipper
Message:
  • Fixed problem with QuestionEditorPreviewItem? colour inheriting not working, due to old CSS rules overwriting new colour system
  • Added "trans" colour class for BlockButtons?.

    Also works on other elements, just won't do anything in particular since they are transparent by default. Would be best not to use it on anything that is already transparent by default, since it would break the colour inheritance chain unneccesarily. ("Div.orange.bg > div.trans.bg > div.inheritBgColor" would not show up orange. A possible workaround for this is to not be able to inherit "trans" colour. Whether this is needed is debatable.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/css/layout.css

    r396 r397  
    385385    -webkit-transition: all 0.2s;
    386386}
    387 
    388387.claro .blue .inheritBgColor {
    389388    background-color: #0072bc;
     
    419418.claro .red.light .inheritBgColor,
    420419.claro .red .light.inheritBgColor {
    421    background-color: #bd0013;
    422    color: #ffffff;   
     420 background-color: #bd0013;
     421 color: #ffffff;   
    423422}
    424423.claro .purple .inheritBgColor {
     
    439438    color: #ffffff;
    440439}
    441 .claro .trans .inheritBgColor {
     440.claro .trans .inheritBgColor,
     441.claro .trans.bg {
    442442    background: transparent;
    443443    color: #ffffff;
     
    498498}
    499499
    500 /*Dropdown menu on MenuBar */
     500/*************************************/
     501/*  Dropdown menu on MenuBar
     502/*************************************/
    501503.claro .dijitMenuPopup {
    502504
Note: See TracChangeset for help on using the changeset viewer.