1. 06 7月, 2015 1 次提交
  2. 01 7月, 2015 1 次提交
    • H
      Remove Material's opinion about background colours, since in fact the... · 1351488a
      Hixie 提交于
      Remove Material's opinion about background colours, since in fact the background colour varies dramatically with the kind of material involved.
      
      Also:
      - give users of Material who previously relied on Material's defaults
        opinions about background colours
      - reindent stock_row.dart
      - import colors as colors in example/widgets/styled_text.dart, rather
        than in global scope, for consistency with other files
      - import typography as typograpyh in example/widgets/tabs.dart, rather
        than in global scope, for consistency with other files
      - make flat_button actually be transparent by not painting a
        background, rather than painting 0x00000000. This is the what I
        actually originally set out to do here.
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1217293003.
      1351488a
  3. 30 6月, 2015 1 次提交
  4. 27 6月, 2015 2 次提交
  5. 26 6月, 2015 1 次提交
  6. 25 6月, 2015 1 次提交
  7. 23 6月, 2015 2 次提交
  8. 20 6月, 2015 2 次提交
  9. 19 6月, 2015 1 次提交
    • H
      StyledText is just a convenient way to specify a · 2b126efb
      Hans Muller 提交于
      tree of InlineStyle and InlineText elements.
      StyledText builds an Inline that renders the tree.
      
      For example this StyledText object:
      
        new StyledText(["FOO", [boldLargerStyle, [greenStyle "BAR"], "BAZ"] BORF]);
      
      Renders the same way the following HTML would,
      assuming that TextStyles boldLargerStyle and
      greenStyle were defined.
      
      <style>
      div {
        display: inline;
      }
      </style>
      <p>
        <div>
          FOO
          <div style="font-weight:bold; font-size:larger">
            <div style="color:green">
              BAR
            </div>
            BAZ
          </div>
          BORF
        </div>
      </p>
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1194693002.
      2b126efb