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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.html

Issue 1457823002: Disable the ChromeVox menu button until it's complete. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 <html> 4 <html>
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <title class="i18n" msgid="panel_title"></title> 7 <title class="i18n" msgid="panel_title"></title>
8 8
9 <link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono|Roboto:400,70 0,700italic' rel='stylesheet' type='text/css'> 9 <link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono|Roboto:400,70 0,700italic' rel='stylesheet' type='text/css'>
10 10
(...skipping 23 matching lines...) Expand all
34 border: 0; 34 border: 0;
35 padding: 0; 35 padding: 0;
36 margin: 0; 36 margin: 0;
37 background-color: #000; 37 background-color: #000;
38 outline: none; 38 outline: none;
39 } 39 }
40 #menu { 40 #menu {
41 min-width: 52px; 41 min-width: 52px;
42 height: 35px; 42 height: 35px;
43 } 43 }
44 #menu:hover {
David Tseng 2015/11/19 16:46:06 Meant to be part of this change?
dmazzoni 2015/11/19 17:13:14 Yes. The hover change is part of the visual cue th
45 background-color: #f69139;
46 }
47 #options_close { 44 #options_close {
48 min-width: 48px; 45 min-width: 48px;
49 height: 35px; 46 height: 35px;
50 } 47 }
51 #chromevox { 48 #chromevox {
52 width: 19px; 49 width: 19px;
53 height: 19px; 50 height: 19px;
54 margin: 8px 0; 51 margin: 8px 0;
55 } 52 }
56 #triangle { 53 #triangle {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 <div id="options_close"> 137 <div id="options_close">
141 <div hidden id="options_title" class="i18n" msgid="options"></div> 138 <div hidden id="options_title" class="i18n" msgid="options"></div>
142 <button id="options" aria-labelledby="options_title"></button> 139 <button id="options" aria-labelledby="options_title"></button>
143 <div hidden id="disable_chromevox_title" class="i18n" 140 <div hidden id="disable_chromevox_title" class="i18n"
144 msgid="disable_chromevox"></div> 141 msgid="disable_chromevox"></div>
145 <button id="close" aria-labelledby="disable_chromevox_title"></button> 142 <button id="close" aria-labelledby="disable_chromevox_title"></button>
146 </div> 143 </div>
147 </div> 144 </div>
148 </body> 145 </body>
149 </html> 146 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698