Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement new 'protected' syntax #38

Merged
merged 7 commits into from
Nov 17, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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