Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(425)

Side by Side Diff: sky/examples/flights-app/app-toast.sky

Issue 722103002: Revert "Add a version of flights that's made of components." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/examples/flights-app/app-title.sky ('k') | sky/examples/flights-app/app-toolbar.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <import src="../../framework/sky-element/sky-element.sky" as="SkyElement" />
2 <template>
3 <style>
4 :host {
5 position: absolute;
6 bottom: 32px;
7 right: 32px;
8 max-width: 55%;
9 box-shadow: 0px 0px 12px 2px rgba(22, 22, 22, 0.4);
10 background-color: #b0281a;
11 background-image: linear-gradient(#E5D658, #DFCF43);
12 border: 1px solid #AEA477;
13 padding: 6px;
14 border-radius: 2px;
15 display: flex;
16 align-items: center;
17 font-size: 0.8em;
18 }
19
20 .header {
21 flex-shrink: 0;
22 margin-right: 6px;
23 }
24 </style>
25 <div class="header">
26 <content select=".toast-icon" />
27 </div>
28 <div class="content">
29 <content select=".toast-content" />
30 </div>
31 </template>
32 <script>
33 SkyElement({
34 name: "app-toast"
35 });
36 </script>
OLDNEW
« no previous file with comments | « sky/examples/flights-app/app-title.sky ('k') | sky/examples/flights-app/app-toolbar.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698