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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_manager.html

Issue 2549133003: [MD History] Color tweaks. (Closed)
Patch Set: fixnit Created 4 years 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/cr/ui/focus_grid.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_grid.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
6 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html"> 6 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html">
7 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html"> 7 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html">
8 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 8 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
9 <link rel="import" href="chrome://history/shared_style.html"> 9 <link rel="import" href="chrome://history/shared_style.html">
10 <link rel="import" href="chrome://history/synced_device_card.html"> 10 <link rel="import" href="chrome://history/synced_device_card.html">
(...skipping 23 matching lines...) Expand all
34 #sign-in-guide { 34 #sign-in-guide {
35 align-items: center; 35 align-items: center;
36 display: flex; 36 display: flex;
37 flex-direction: column; 37 flex-direction: column;
38 justify-content: center; 38 justify-content: center;
39 overflow-x: hidden; 39 overflow-x: hidden;
40 text-align: center; 40 text-align: center;
41 } 41 }
42 42
43 #sign-in-promo { 43 #sign-in-promo {
44 color: var(--primary-text-color);
45 font-size: 215%; 44 font-size: 215%;
46 margin-top: 40px; 45 margin-top: 40px;
47 } 46 }
48 47
49 #sign-in-promo-desc { 48 #sign-in-promo-desc {
50 color: #848484; 49 color: var(--secondary-text-color);
51 font-size: 123%; 50 font-size: 123%;
52 margin-top: 10px; 51 margin-top: 10px;
53 } 52 }
54 53
55 #sign-in-button { 54 #sign-in-button {
56 margin: 24px 0; 55 margin: 24px 0;
57 padding-left: 12px; 56 padding-left: 12px;
58 padding-right: 12px; 57 padding-right: 12px;
59 } 58 }
60 59
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 </paper-item> 97 </paper-item>
99 <paper-item id="menuDeleteButton" class="menu-item" 98 <paper-item id="menuDeleteButton" class="menu-item"
100 on-tap="onDeleteSessionTap_"> 99 on-tap="onDeleteSessionTap_">
101 $i18n{deleteSession} 100 $i18n{deleteSession}
102 </paper-item> 101 </paper-item>
103 </cr-shared-menu> 102 </cr-shared-menu>
104 </template> 103 </template>
105 </template> 104 </template>
106 <script src="chrome://history/synced_device_manager.js"></script> 105 <script src="chrome://history/synced_device_manager.js"></script>
107 </dom-module> 106 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698