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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_subpage.html

Issue 2441043004: Accessibility fixes for quick unlock settings. (Closed)
Patch Set: Initial patch Created 4 years, 1 month 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
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-resizable-behavior /iron-resizable-behavior.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior /iron-resizable-behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable-behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="/icons.html"> 5 <link rel="import" href="/icons.html">
6 <link rel="import" href="/route.html"> 6 <link rel="import" href="/route.html">
7 <link rel="import" href="/settings_page/settings_subpage_search.html"> 7 <link rel="import" href="/settings_page/settings_subpage_search.html">
8 <link rel="import" href="/settings_shared_css.html"> 8 <link rel="import" href="/settings_shared_css.html">
9 9
10 <dom-module id="settings-subpage"> 10 <dom-module id="settings-subpage">
(...skipping 23 matching lines...) Expand all
34 color: var(--settings-nav-grey); 34 color: var(--settings-nav-grey);
35 font-size: 107.6923%; /* go to 14px from 13px */ 35 font-size: 107.6923%; /* go to 14px from 13px */
36 font-weight: 500; 36 font-weight: 500;
37 } 37 }
38 38
39 settings-subpage-search { 39 settings-subpage-search {
40 -webkit-margin-start: auto; 40 -webkit-margin-start: auto;
41 } 41 }
42 </style> 42 </style>
43 <div class="settings-box first"> 43 <div class="settings-box first">
44 <paper-icon-button icon="settings:arrow-back" on-tap="onTapBack_"> 44 <paper-icon-button icon="settings:arrow-back" on-tap="onTapBack_" alt="$i1 8n{back}">
45 </paper-icon-button> 45 </paper-icon-button>
46 <h1>[[pageTitle]]</h1> 46 <h1>[[pageTitle]]</h1>
47 <template is="dom-if" if="[[searchLabel]]"> 47 <template is="dom-if" if="[[searchLabel]]">
48 <settings-subpage-search label="[[searchLabel]]" 48 <settings-subpage-search label="[[searchLabel]]"
49 on-search-changed="onSearchChanged_"> 49 on-search-changed="onSearchChanged_">
50 </settings-subpage-search> 50 </settings-subpage-search>
51 </template> 51 </template>
52 </div> 52 </div>
53 <content></content> 53 <content></content>
54 </template> 54 </template>
55 <script src="settings_subpage.js"></script> 55 <script src="settings_subpage.js"></script>
56 </dom-module> 56 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698