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

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

Issue 2675493002: MD Settings: Touch up cr-dialog footers (Closed)
Patch Set: Created 3 years, 10 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/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 max-width: 97%; 87 max-width: 97%;
88 } 88 }
89 89
90 #googleg-logo { 90 #googleg-logo {
91 background-image: url(../../../../../ui/webui/resources/images/200-logo_ googleg.png); 91 background-image: url(../../../../../ui/webui/resources/images/200-logo_ googleg.png);
92 background-size: cover; 92 background-size: cover;
93 height: var(--iron-icon-height); 93 height: var(--iron-icon-height);
94 width: var(--iron-icon-width); 94 width: var(--iron-icon-width);
95 } 95 }
96 96
97 .footer .settings-box { 97 #disconnectDialog .footer {
98 background-color: transparent;
99 /* TODO(dbeam): should this be a --settings-separator-line? */
100 border-top: 1px solid rgba(0, 0, 0, 0.14);
tommycli 2017/02/01 22:46:38 Spreadsheet calls for 0.12 alpha, but this seems l
Dan Beam 2017/02/02 00:31:05 aight, maybe --divider-color too
101 }
102
103 #disconnectDialog .footer .settings-box {
98 --settings-box-row-padding: 0; 104 --settings-box-row-padding: 0;
99 } 105 }
100 106
101 .delete-profile-warning { 107 .delete-profile-warning {
102 /* In order to line up with the checkbox text. */ 108 /* In order to line up with the checkbox text. */
103 -webkit-padding-start: 36px; 109 -webkit-padding-start: 36px;
104 padding-bottom: 10px; 110 padding-bottom: 10px;
105 padding-top: 10px; 111 padding-top: 10px;
106 } 112 }
107 </style> 113 </style>
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 <if expr="chromeos"> 402 <if expr="chromeos">
397 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 403 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
398 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 404 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
399 on-close="onEasyUnlockTurnOffDialogClose_"> 405 on-close="onEasyUnlockTurnOffDialogClose_">
400 </easy-unlock-turn-off-dialog> 406 </easy-unlock-turn-off-dialog>
401 </template> 407 </template>
402 </if> 408 </if>
403 </template> 409 </template>
404 <script src="people_page.js"></script> 410 <script src="people_page.js"></script>
405 </dom-module> 411 </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