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

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

Issue 2549133003: [MD History] Color tweaks. (Closed)
Patch Set: 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 29 matching lines...) Expand all
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); 44 color: var(--primary-text-color);
45 font-size: 215%; 45 font-size: 215%;
46 margin-top: 40px; 46 margin-top: 40px;
47 } 47 }
48 48
49 #sign-in-promo-desc { 49 #sign-in-promo-desc {
50 color: #848484; 50 color: var(--secondary-text-color);
51 font-size: 123%; 51 font-size: 123%;
52 margin-top: 10px; 52 margin-top: 10px;
53 } 53 }
54 54
55 #sign-in-button { 55 #sign-in-button {
56 margin: 24px 0; 56 margin: 24px 0;
57 padding-left: 12px; 57 padding-left: 12px;
58 padding-right: 12px; 58 padding-right: 12px;
59 } 59 }
60 60
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 </paper-item> 98 </paper-item>
99 <paper-item id="menuDeleteButton" class="menu-item" 99 <paper-item id="menuDeleteButton" class="menu-item"
100 on-tap="onDeleteSessionTap_"> 100 on-tap="onDeleteSessionTap_">
101 $i18n{deleteSession} 101 $i18n{deleteSession}
102 </paper-item> 102 </paper-item>
103 </cr-shared-menu> 103 </cr-shared-menu>
104 </template> 104 </template>
105 </template> 105 </template>
106 <script src="chrome://history/synced_device_manager.js"></script> 106 <script src="chrome://history/synced_device_manager.js"></script>
107 </dom-module> 107 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698