Skip to content

Commit

Permalink
Merge pull request #38 from sjmiles/master
Browse files Browse the repository at this point in the history
implement new 'protected' syntax
  • Loading branch information
Steve Orvell committed Nov 17, 2012
2 parents 6fc1a4a + 9cc2e88 commit 7400f9e
Show file tree
Hide file tree
Showing 27 changed files with 1,043 additions and 869 deletions.
27 changes: 0 additions & 27 deletions src/css/g-icon-button.css

This file was deleted.

22 changes: 0 additions & 22 deletions src/css/g-icon.css

This file was deleted.

11 changes: 0 additions & 11 deletions src/css/g-menu.css

This file was deleted.

28 changes: 0 additions & 28 deletions src/css/g-menuitem.css

This file was deleted.

25 changes: 20 additions & 5 deletions src/css/g-overlay.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,27 @@
* license that can be found in the LICENSE file.
*/

@host {
position: fixed;
z-index: 10;
outline: none;
}

/*
TODO(sorvell): include a reasonable set of default overlay opening
animations. What's here right now is ad hoc.
Animation styles:
g-overlay-fade
g-overlay-scale-slideup
g-overlay-shake
*/

@host {
position: fixed;
z-index: 10;
outline: none;
}

/* g-overlay-fade */

@host.g-overlay-fade {
opacity: 0;
-webkit-transition: all 0.218s;
Expand All @@ -23,6 +34,8 @@
opacity: 1;
}

/* g-overlay-scale-slideup */

@host.g-overlay-scale-slideup {
opacity: 0.0;
-webkit-transform: scale(1.05);
Expand All @@ -40,6 +53,8 @@
-webkit-transition: all 1s;
}

/* g-overlay-shake */

@-webkit-keyframes g-overlay-shakeFadeIn {
0% {
display: block;
Expand Down
Loading

0 comments on commit 7400f9e

Please sign in to comment.