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

Unified Diff: ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html

Issue 2675493002: MD Settings: Touch up cr-dialog footers (Closed)
Patch Set: fix shit up Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/settings/reset_page/reset_profile_dialog.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
diff --git a/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html b/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
index 6b2b6b60a003c9186e055ffd01a84df676b74ac1..9ffd7ea2cbcd84cab1e4c9999f833b9ebe3f33b8 100644
--- a/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
+++ b/ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html
@@ -2,6 +2,7 @@
<link rel="import" href="chrome://resources/html/assert.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/default-theme.html">
<dom-module id="cr-dialog">
<template>
@@ -29,8 +30,7 @@
.title-container {
align-items: center;
- /* TODO(dbeam): should this be a --settings-separator-line? */
- border-bottom: 1px solid rgba(0, 0, 0, 0.14);
+ border-bottom: 1px solid var(--divider-color);
display: flex;
min-height: 52px;
}
@@ -84,12 +84,15 @@
}
:host ::content .footer {
- background-color: var(--paper-grey-200);
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
margin: 0;
padding: 12px 20px;
}
+
+ :host ::content .border-top-divider {
+ border-top: 1px solid var(--divider-color);
+ }
</style>
<div class="title-container">
<content select=".title"></content>
« no previous file with comments | « chrome/browser/resources/settings/reset_page/reset_profile_dialog.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698