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

Side by Side Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html

Issue 1896963003: MD Settings: move bluetooth dialog styles to a shared import (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | chrome/browser/resources/settings/bluetooth_page/bluetooth_dialog.css » ('j') | 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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <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-spinner/paper-spi nner.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
7 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_dialog_sh ared_css.html">
7 8
8 <dom-module id="settings-bluetooth-add-device-dialog"> 9 <dom-module id="settings-bluetooth-add-device-dialog">
9 <link rel="import" type="css" href="bluetooth_dialog.css">
10 <template> 10 <template>
11 <style include="settings-shared"></style> 11 <style include="settings-shared"></style>
12 <style include="bluetooth-dialog-shared"></style>
12 <div id="dialogOuterDiv" class="layout vertical flex"> 13 <div id="dialogOuterDiv" class="layout vertical flex">
13 <div id="dialogHeaderDiv" class="settings-box layout horizontal"> 14 <div id="dialogHeaderDiv" class="settings-box layout horizontal">
14 <span id="dialogTitle" class="flex" 15 <span id="dialogTitle" class="flex"
15 i18n-content="bluetoothAddDevicePageTitle"> 16 i18n-content="bluetoothAddDevicePageTitle">
16 </span> 17 </span>
17 <paper-icon-button icon="close" on-tap="onCancelTap_" id="close"> 18 <paper-icon-button icon="close" on-tap="onCancelTap_" id="close">
18 </paper-icon-button> 19 </paper-icon-button>
19 </div> 20 </div>
20 <div class="settings-box flex"> 21 <div class="settings-box flex">
21 <div id="dialogDeviceList" class="settings-box layout vertical" 22 <div id="dialogDeviceList" class="settings-box layout vertical"
(...skipping 18 matching lines...) Expand all
40 <span i18n-content="bluetoothScanning"></span> 41 <span i18n-content="bluetoothScanning"></span>
41 </div> 42 </div>
42 <paper-button id="cancel" class="end-justified" 43 <paper-button id="cancel" class="end-justified"
43 i18n-content="cancel" on-tap="onCancelTap_"> 44 i18n-content="cancel" on-tap="onCancelTap_">
44 </paper-button> 45 </paper-button>
45 </div> 46 </div>
46 </div> 47 </div>
47 </template> 48 </template>
48 <script src="bluetooth_add_device_dialog.js"></script> 49 <script src="bluetooth_add_device_dialog.js"></script>
49 </dom-module> 50 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/bluetooth_page/bluetooth_dialog.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698