Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/polymer/v1_0/iron-icons/iron-icons.h tml"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p aper-dialog-shared-styles.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> |
| 6 | 6 |
| 7 <dom-module id="settings-dialog"> | 7 <dom-module id="settings-dialog"> |
| 8 <template> | 8 <template> |
| 9 <style include="paper-dialog-shared-styles"></style> | 9 <style include="paper-dialog-shared-styles"></style> |
| 10 <style> | 10 <style> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 -webkit-padding-end: 16px; | 61 -webkit-padding-end: 16px; |
| 62 -webkit-padding-start: 16px; | 62 -webkit-padding-start: 16px; |
| 63 display: flex; | 63 display: flex; |
| 64 justify-content: flex-end; | 64 justify-content: flex-end; |
| 65 margin-bottom: 12px; | 65 margin-bottom: 12px; |
| 66 } | 66 } |
| 67 | 67 |
| 68 :host ::content .button-container .cancel-button { | 68 :host ::content .button-container .cancel-button { |
| 69 -webkit-margin-end: 8px; | 69 -webkit-margin-end: 8px; |
| 70 color: var(--paper-grey-600); | 70 color: var(--paper-grey-600); |
| 71 } | |
| 72 | |
| 73 :host ::content .button-container .cancel-button:not(.keyboard-focus) { | |
|
Dan Beam
2016/05/03 19:06:27
i don't think .keyboard-focus is part of the publi
| |
| 71 font-weight: 500; | 74 font-weight: 500; |
| 72 } | 75 } |
| 73 | 76 |
| 74 :host ::content .footer { | 77 :host ::content .footer { |
| 75 background-color: var(--paper-grey-200); | 78 background-color: var(--paper-grey-200); |
| 76 margin: 0; | 79 margin: 0; |
| 77 padding: 20px; | 80 padding: 20px; |
| 78 } | 81 } |
| 79 | 82 |
| 80 :host ::content .row { | 83 :host ::content .row { |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 108 <content select=".body"></content> | 111 <content select=".body"></content> |
| 109 <content select=".button-container"></content> | 112 <content select=".button-container"></content> |
| 110 </div> | 113 </div> |
| 111 </div> | 114 </div> |
| 112 <div class="footer-container"> | 115 <div class="footer-container"> |
| 113 <content select=".footer"></content> | 116 <content select=".footer"></content> |
| 114 </div> | 117 </div> |
| 115 </template> | 118 </template> |
| 116 <script src="settings_dialog.js"></script> | 119 <script src="settings_dialog.js"></script> |
| 117 </dom-module> | 120 </dom-module> |
| OLD | NEW |