Chromium Code Reviews| 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..c2a2ae4460aee75393c0c6d7b51d6ee60393737b 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,8 @@ |
| .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; |
| + border-bottom-color: var(--divider-color); |
|
Dan Beam
2017/02/02 03:59:29
border-bottom: 1px solid var(--divider-color);
tommycli
2017/02/02 17:10:29
Done. Okay awesome I did not think that would work
|
| display: flex; |
| min-height: 52px; |
| } |
| @@ -84,12 +85,16 @@ |
| } |
| :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; |
| + border-top-color: var(--divider-color); |
|
Dan Beam
2017/02/02 03:59:29
border-top: 1px solid var(--divider-color);
tommycli
2017/02/02 17:10:29
Done.
|
| + } |
| </style> |
| <div class="title-container"> |
| <content select=".title"></content> |