OLD | NEW |
---|---|
1 <link rel="import" href="chrome://oobe/custom_elements.html"> | 1 <link rel="import" href="chrome://oobe/custom_elements.html"> |
2 <link rel="import" href="chrome://resources/polymer/core-animated-pages/core-ani mated-pages.html"> | 2 <link rel="import" href="chrome://resources/polymer/core-animated-pages/core-ani mated-pages.html"> |
3 <link rel="import" href="chrome://resources/polymer/core-iconset-svg/core-iconse t-svg.html"> | 3 <link rel="import" href="chrome://resources/polymer/core-iconset-svg/core-iconse t-svg.html"> |
4 <link rel="import" href="chrome://resources/polymer/core-item/core-item.html"> | 4 <link rel="import" href="chrome://resources/polymer/core-item/core-item.html"> |
5 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | 5 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> |
6 | 6 |
7 <core-iconset-svg id="host-pairing-icons" iconSize="48"> | 7 <core-iconset-svg id="host-pairing-icons" iconSize="48"> |
8 <svg> | 8 <svg> |
9 <defs> | 9 <defs> |
10 <g id="cast"> | 10 <g id="cast"> |
11 <include src="../../../../app/theme/cast_icon.svg"> | 11 <include src="../../../../app/theme/cast_icon.svg"> |
12 </g> | 12 </g> |
13 </defs> | 13 </defs> |
14 </svg> | 14 </svg> |
15 </core-iconset-svg> | 15 </core-iconset-svg> |
16 | 16 |
17 <polymer-element name="host-pairing-page" noscript> | 17 <polymer-element name="host-pairing-page" noscript> |
18 <template> | 18 <template> |
19 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
Dan Beam
2014/12/10 19:49:24
should we make text_defaults.css reach into shadow
xdai1
2014/12/11 02:59:21
Moved to front.
| |
19 <link rel="stylesheet" href="oobe_screen_host_pairing_page.css"> | 20 <link rel="stylesheet" href="oobe_screen_host_pairing_page.css"> |
20 | 21 |
21 <div id="title"> | 22 <div id="title"> |
22 <content select=".title"></content> | 23 <content select=".title"></content> |
23 </div> | 24 </div> |
24 <div id="content"> | 25 <div id="content"> |
25 <content></content> | 26 <content></content> |
26 </div> | 27 </div> |
27 </template> | 28 </template> |
28 </polymer-element> | 29 </polymer-element> |
29 | 30 |
30 <polymer-element name="host-pairing-screen" extends="oobe-screen"> | 31 <polymer-element name="host-pairing-screen" extends="oobe-screen"> |
31 <template> | 32 <template> |
33 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
32 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> | 34 <link rel="stylesheet" href="oobe_screen_host_pairing.css"> |
33 | 35 |
34 <core-animated-pages transitions="cross-fade-all" | 36 <core-animated-pages transitions="cross-fade-all" |
35 selected="{{C.page}}"> | 37 selected="{{C.page}}"> |
36 <host-pairing-page name="welcome"> | 38 <host-pairing-page name="welcome"> |
37 <div class="title">{{'welcomeTitle' | i18n}}</div> | 39 <div class="title">{{'welcomeTitle' | i18n}}</div> |
38 <div>{{'welcomeText' | i18n}}</div> | 40 <div>{{'welcomeText' | i18n}}</div> |
39 </host-pairing-page> | 41 </host-pairing-page> |
40 <host-pairing-page name="code-confirmation"> | 42 <host-pairing-page name="code-confirmation"> |
41 <div class="title">{{'confirmationTitle' | i18n}}</div> | 43 <div class="title">{{'confirmationTitle' | i18n}}</div> |
(...skipping 30 matching lines...) Expand all Loading... | |
72 <div id="device-label">{{C.deviceName}}</div> | 74 <div id="device-label">{{C.deviceName}}</div> |
73 </core-item> | 75 </core-item> |
74 <div id="illustration"></div> | 76 <div id="illustration"></div> |
75 </template> | 77 </template> |
76 </polymer-element> | 78 </polymer-element> |
77 | 79 |
78 <div class="step hidden no-logo fullscreen" id="host-pairing" hidden> | 80 <div class="step hidden no-logo fullscreen" id="host-pairing" hidden> |
79 <host-pairing-screen name="HostPairingScreen"></host-pairing-screen> | 81 <host-pairing-screen name="HostPairingScreen"></host-pairing-screen> |
80 </div> | 82 </div> |
81 | 83 |
OLD | NEW |