Ignore:
Timestamp:
06/04/12 18:09:33 (13 years ago)
Author:
tjcschipper
Message:
  • Switched away from using custom themes, this allows us to use the default Claro theme off of a CDN, then override the needed properties using our own, much smaller stylesheets. Retains graceful degradation of dijit style.
  • Made rftLineWithActions also work outside of the context of an rftSelector.css
  • Fixed some general layout issues
  • Redid the tabs styling
File:
1 edited

Legend:

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

    r338 r339  
    1 .gamelab .rftSelector {
     1.claro .rftSelector {
    22    margin: 4px;
    33    font-size: 13px;
    44}
    5 .gamelab .rftLineWithButtons {
     5.claro .rftLineWithButtons {
    66    height: 24px;
    77    line-height: 24px;
    88    font-size: 13px;
    9     margin: 0;
     9    margin: 4px 0;
    1010    white-space: nowrap;
    1111}
    12 .gamelab .rftLineWithButtons .rftLineWithButtonsButtons {
     12.claro .rftSelector .rftLineWithButtons {
     13    margin: 0;
     14}
     15.claro .rftLineWithButtons .rftLineWithButtonsButtons {
    1316    float: right;
    1417    height: 24px;
     
    1720    padding: 0;
    1821}
    19 .gamelab .rftLineWithButtons .rftLineWithButtonsButtons .rftBlockButton {
     22.claro .rftLineWithButtons .rftLineWithButtonsButtons .rftBlockButton {
    2023    float: right;
    2124    clear: none;
    2225}
    23 .gamelab .rftLineWithButtons .rftLineWithButtonsTitle {
     26.claro .rftLineWithButtons .rftLineWithButtonsTitle {
    2427    float: left;
    2528    margin: 0 8px 0 8px;
    2629}
    27 .gamelab .rftSelectorSelected .rftSelectorColor {
     30.claro .rftSelectorSelected .rftSelectorColor {
    2831    width: 8px;
    2932    height: 24px;
     
    3235}
    3336
     37/* Own standard colour settings */
     38.claro .rftLineWithButtons.blue {
     39    background-color: #0072bc;
     40    color: #ffffff;
     41}
     42.claro .rftLineWithButtons.red {
     43    background-color: #8c0310;
     44    color: #ffffff;
     45}
     46.claro .rftLineWithButtons.green {
     47    background-color: #3aa605;
     48    color: #ffffff;
     49}
     50.claro .rftLineWithButtons.purple {
     51    background-color: #6529b7;
     52    color: #ffffff;
     53}
     54.claro .rftLineWithButtons.orange {
     55    background-color: #ff5b12;
     56    color: #ffffff;
     57}
     58
    3459/* Background colour settings for the various contexts of rftLineWithButtons */
    35 .gamelab .rftSelector .rftLineWithButtons {
     60.claro .rftSelector .rftLineWithButtons {
    3661    background-color: #ffffff;
    3762    color: #000000;
    3863}
    39 .gamelab .blue.rftSelector .rftLineWithButtons {
     64.claro .blue.rftSelector .rftLineWithButtons {
    4065    background-color: #0072bc;
    4166    color: #ffffff;
    4267}
    43 .gamelab .red.rftSelector .rftLineWithButtons {
     68.claro .red.rftSelector .rftLineWithButtons {
    4469    background-color: #8c0310;
    4570    color: #ffffff;
    4671}
    47 .gamelab .green.rftSelector .rftLineWithButtons {
     72.claro .green.rftSelector .rftLineWithButtons {
    4873    background-color: #3aa605;
    4974    color: #ffffff;
    5075}
    51 .gamelab .purple.rftSelector .rftLineWithButtons {
     76.claro .purple.rftSelector .rftLineWithButtons {
    5277    background-color: #6529b7;
    5378    color: #ffffff;
    5479}
    55 .gamelab .orange.rftSelector .rftLineWithButtons {
     80.claro .orange.rftSelector .rftLineWithButtons {
    5681    background-color: #ff5b12;
    5782    color: #ffffff;
     
    5984
    6085/* Black-on-white setting for non-header lines in the rftSelector */
    61 .gamelab .rftSelector .rftSelectorSelected .rftLineWithButtons {
     86.claro .rftSelector .rftSelectorSelected .rftLineWithButtons {
    6287    background-color: #ffffff;
    6388    color: #000000;
    6489}
    65 .gamelab .rftSelector .rftSelectorOptions .rftLineWithButtons {
     90.claro .rftSelector .rftSelectorOptions .rftLineWithButtons {
    6691    background-color: #ffffff;
    6792    color: #000000;
     
    6994
    7095/* Colour settings for the rftSelectorColor status indicator */
    71 .gamelab .rftSelectorSelected .rftSelectorColor.conflict {
     96.claro .rftSelectorSelected .rftSelectorColor.conflict {
    7297    background-color: #ff0000;
    7398}
    74 .gamelab .rftSelectorSelected .rftSelectorColor.pending {
     99.claro .rftSelectorSelected .rftSelectorColor.pending {
    75100    background-color: #ff8000;
    76101}
    77 .gamelab .rftSelectorSelected .rftSelectorColor.success {
     102.claro .rftSelectorSelected .rftSelectorColor.success {
    78103    background-color: #00ff00;
    79104}
    80 
    81 /*  NOT SURE WHAT THIS DOES ATM...KEEP HERE FOR FUTURE REFERENCE IF NON-SELECTOR LINES FAIL TO DISPLAY PROPERLY
    82 .gamelab .rftSelector .rftSelectorCategory .rftLineWithButtons {
    83     display: inline-block;
    84     width: 100% !important;
    85 }
    86 */
Note: See TracChangeset for help on using the changeset viewer.