Ignore:
Timestamp:
03/09/14 14:23:42 (11 years ago)
Author:
hendrikvanantwerpen
Message:
  • Enable/disable buttons on content change.
  • One place to do date formatting, because it was going wrong again.
  • Serialize questions in survey properly.
  • _ComplexValueMixin consumes submit events, but does trigger outer forms if present.
  • Trigger dialog show/hide for login only after previous effect is finished.
  • Check that documents are actually valid, not just that validator returned a result.
  • Validate email and timestamp formats.
  • Prepared for live runs.
Location:
Dev/trunk/src/client/qed-client/css
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/client/qed-client/css/variables.less

    r443 r492  
    66@headers: #999999;
    77@text: #ffffff;
     8@disabledtext: #777777;
    89
    910// Colours
  • Dev/trunk/src/client/qed-client/css/widgets/BlockButton.less

    r443 r492  
    55    height: @button_block_height;
    66    vertical-align: top;
     7    color: @text;
     8
     9    &.dijitDisabled {
     10        color: @disabledtext;
     11    }
    712
    813    .dijitButtonContents {
     
    1823        padding: 0 @std_offset;
    1924        border: none;
    20         color: @text;
    2125        font-size: @button_block_font_size;
    2226
  • Dev/trunk/src/client/qed-client/css/widgets/InlineButton.less

    r443 r492  
    33    height: @button_inline_height;
    44    width: @button_inline_height;
     5    color: @text;
     6
     7    &.dijitDisabled {
     8        color: @disabledtext;
     9    }
    510
    611    .dijitButtonNode {
  • Dev/trunk/src/client/qed-client/css/widgets/LargeButton.less

    r443 r492  
    77        height: @button_large_height;
    88        padding: 3px;
     9        color: @text;
    910
    1011        &*, * {
     
    1516        }
    1617
     18        &.dijitDisabled {
     19            color: @disabledtext;
     20        }
     21
    1722        .dijitButtonNode {
    1823
     
    2126            height: @button_large_height;
    2227            background: transparent;
    23             color: @headers;
    2428            font-size: @button_large_font_size;
    2529            .transition(0.3s);
Note: See TracChangeset for help on using the changeset viewer.