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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2168633003: MD Settings: drop duplicative cursor: pointer; styles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <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-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
8 <link rel="import" href="/controls/settings_checkbox.html"> 8 <link rel="import" href="/controls/settings_checkbox.html">
9 <link rel="import" href="/people_page/sync_page.html"> 9 <link rel="import" href="/people_page/sync_page.html">
10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html">
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 #profile-icon { 37 #profile-icon {
38 border-radius: 20px; 38 border-radius: 20px;
39 height: 40px; 39 height: 40px;
40 object-fit: cover; 40 object-fit: cover;
41 vertical-align: middle; 41 vertical-align: middle;
42 width: 40px; 42 width: 40px;
43 } 43 }
44 44
45 #profile-icon:hover,
46 #activity-controls:hover {
47 cursor: pointer;
48 }
49
50 #managed-by-domain-name { 45 #managed-by-domain-name {
51 font-weight: bold; 46 font-weight: bold;
52 } 47 }
53 48
54 iron-icon[icon='settings:sync-problem'] { 49 iron-icon[icon='settings:sync-problem'] {
55 --iron-icon-fill-color: var(--settings-error-color); 50 --iron-icon-fill-color: var(--settings-error-color);
56 } 51 }
57 52
58 .settings-box .sync-error { 53 .settings-box .sync-error {
59 color: var(--settings-error-color); 54 color: var(--settings-error-color);
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 310
316 <if expr="chromeos"> 311 <if expr="chromeos">
317 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 312 <template is="dom-if" if="[[easyUnlockEnabled_]]">
318 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 313 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
319 </easy-unlock-turn-off-dialog> 314 </easy-unlock-turn-off-dialog>
320 </template> 315 </template>
321 </if> 316 </if>
322 </template> 317 </template>
323 <script src="people_page.js"></script> 318 <script src="people_page.js"></script>
324 </dom-module> 319 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698