1. 12 6月, 2015 1 次提交
  2. 11 6月, 2015 4 次提交
  3. 10 6月, 2015 2 次提交
  4. 09 6月, 2015 1 次提交
  5. 06 6月, 2015 1 次提交
  6. 05 6月, 2015 2 次提交
  7. 04 6月, 2015 2 次提交
  8. 03 6月, 2015 1 次提交
  9. 29 5月, 2015 2 次提交
  10. 28 5月, 2015 1 次提交
  11. 27 5月, 2015 1 次提交
  12. 20 5月, 2015 3 次提交
  13. 19 5月, 2015 1 次提交
    • J
      Rationalize Dart mojo and sky package structure. · b017dfd9
      John McCutchan 提交于
      NOTE: This CL appears far larger than it actually is for two reasons:
      
      1) Many files were moved around to use the Dart package directory structure.
      2) Many .dart files had to have import paths updated.
      
      - Organize mojo/public/dart so that it uses standard Dart package layout
      - Organize mojo/dart/apptest so that it uses a standard Dart package layout
      - Organize sky/sdk so that it uses a standard Dart package layout
      - Create a mojo/testing package (used by unittests)
      - Introduce the 'dart_pkg' gn rule which populates gen/Config/dart-pkg
      - All internally vended Dart packages must have a corresponding dart_pkg rule
      - It is now possible to use dependency_overrides: in pubspec.yaml to mix internal and external package dependencies (enables analyzer, editor, webstorm usage for internal developers).
      - Package root for dart content handler ends with "packages/"
      - Imports of mojo package uris no longer need the "public/dart"
      - mojo/public/tools/dart_package.py is a clone of mojo/public/tools/gn/zip.py
      - Sky tests no longer run 'deploy_sdk' script.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1132063007
      b017dfd9
  14. 13 5月, 2015 1 次提交
  15. 12 5月, 2015 3 次提交
  16. 05 5月, 2015 1 次提交
  17. 07 4月, 2015 1 次提交
    • O
      Remove all uses of display:block and display:inline-block. · 88f38ce0
      Ojan Vafai 提交于
      -Make display:flex, flex-direction: column, flex-shrink: 1 the default.
      -Simplify StyleAdjuster::adjustStyleForAlignment to remove special cases we
      won't need as we make flex the default and remove absolute positioning.
      -Fix a bug this exposed in column flexboxes where we'd apply the wrong edge
      of border/padding/margin.
      -For now leave the default of align-items:stretch. The main change here is
      that iframe/img will do width:auto the same as blocks (i.e. the width of
      the parent). I think this is a good change, but we'll have to see how it feels
      in practice.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1061163002
      88f38ce0
  18. 02 4月, 2015 1 次提交
  19. 26 3月, 2015 2 次提交
    • A
      Disentangle Material and InkSplash · 171ff643
      Adam Barth 提交于
      Most of the elements that want to be Material (i.e., have a level and cast a
      shadow) don't want to be InkWells (i.e., have an ink splash effect). This CL
      disentangles these two components, fixing bugs in the Drawer and in the
      PopupMenu. Separating these concepts also lets us use Material for the
      ActionBar and the FloatingActionButton.
      
      R=rafaelw@chromium.org
      
      Review URL: https://codereview.chromium.org/1037673002
      171ff643
    • A
      Add an implict animation between ActionBar backgrounds · 4f29d04e
      Adam Barth 提交于
      This CL uses CSS transition to add an implicit animation between purple
      ActionBar and the light grey "search" action bar. It's unclear to me how best
      to create implicit animations in this system, but using a CSS transition works
      surprisingly well.
      
      Also, fix the typography style for the placeholder in the search box.
      Previously it was white on Grey[50], which was extremely hard to see.
      
      R=rafaelw@chromium.org
      
      Review URL: https://codereview.chromium.org/1036783002
      4f29d04e
  20. 25 3月, 2015 1 次提交
    • A
      Clean up stock_app.dart · 040c83d5
      Adam Barth 提交于
      This CL cleans up stock_app.dart to better separate concerns now that we have
      StyleNode. Also, this CL introduces IconButton, which will grow to include an
      ink effect in the future, and makes the background of the search bar white.
      
      R=ojan@chromium.org
      
      Review URL: https://codereview.chromium.org/1007893005
      040c83d5
  21. 17 3月, 2015 5 次提交
  22. 14 3月, 2015 1 次提交
  23. 12 3月, 2015 1 次提交
    • A
      Update Button to be made of Material · 24a53815
      Adam Barth 提交于
      To accomplish this, I made the following changes:
      
      1) Material is now in charge of drawing the material shadows.
      2) In order to mix in the style for the shadow, Element now takes a list of
         Styles instead of a single style.
      3) Update all clients of Element#style to understand that we now have a list.
      4) Update components that drawer shadows to have Material do that work instead.
         a) One exception: FloatingActionButton draws its own shadow because of its
            crazy clip requirements. We'll probably want to find a better way for
            FloatingActionButton to clip in the future.
      
      I've also added a widgets-fn example to demo the fn material widgets.
      
      This CL introduces a bug into Drawer whereby you can get ink splashes
      everywhere in the drawer. In the future, we'll need to separate out the
      different material aspects to get non-splashable materials.
      
      R=rafaelw@chromium.org
      
      Review URL: https://codereview.chromium.org/1003553002
      24a53815
  24. 11 3月, 2015 1 次提交