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

Side by Side Diff: chrome/browser/resources/keyboard/main.css

Issue 7754019: Enable the keyboard to show the popup keyboard for inputting accented characters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 background: -webkit-linear-gradient(#131925, #04070B); 8 background: -webkit-linear-gradient(#131925, #04070B);
9 color: white; 9 color: white;
10 margin: 0; 10 margin: 0;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 white-space: nowrap; 63 white-space: nowrap;
64 } 64 }
65 65
66 .panel { 66 .panel {
67 border: 0; 67 border: 0;
68 clear: both; 68 clear: both;
69 margin-left: 5px; 69 margin-left: 5px;
70 text-align: left; 70 text-align: left;
71 } 71 }
72 72
73 .popup {
74 background: rgba(30, 30, 30, 0.7);
75 border: 1px solid rgba(50, 50, 50, 0.8);
76 padding-right: 5px;
77 position: absolute;
78 -webkit-border-radius: 4px;
79 -webkit-box-shadow: 5px 5px 3px rgba(50, 50, 200, 0.3);
80 }
81
73 .button { 82 .button {
74 background: -webkit-linear-gradient(#5a616f, #505662); 83 background: -webkit-linear-gradient(#5a616f, #505662);
75 } 84 }
76 .button:active { 85 .button:active {
77 background: -webkit-linear-gradient(#505662, #5a616f); 86 background: -webkit-linear-gradient(#505662, #5a616f);
78 } 87 }
79 88
80 .auxiliary:active { 89 .auxiliary:active {
81 background: -webkit-linear-gradient(#5a616f, #505662); 90 background: -webkit-linear-gradient(#5a616f, #505662);
82 } 91 }
(...skipping 11 matching lines...) Expand all
94 103
95 .key > div { 104 .key > div {
96 bottom: 0; 105 bottom: 0;
97 left: 0; 106 left: 0;
98 margin: auto; 107 margin: auto;
99 position: absolute; 108 position: absolute;
100 right: 0; 109 right: 0;
101 top: 0; 110 top: 0;
102 } 111 }
103 112
113 .key.popupkey {
114 background: rgba(0, 0, 0, 0);
115 border: 1px solid rgba(0, 0, 0, 0);
116 }
117
118 .key.popupkey.highlighted {
119 background: rgba(20, 20, 200, 0.3);
120 }
121
104 .r0 { 122 .r0 {
105 background: -webkit-linear-gradient(#5a616f, #505662); 123 background: -webkit-linear-gradient(#5a616f, #505662);
106 } 124 }
107 .r0:active { 125 .r0:active {
108 background: -webkit-linear-gradient(#505662, #5a616f); 126 background: -webkit-linear-gradient(#505662, #5a616f);
109 } 127 }
110 128
111 .r1 { 129 .r1 {
112 background: -webkit-linear-gradient(#505662, #41464f); 130 background: -webkit-linear-gradient(#505662, #41464f);
113 } 131 }
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 } 226 }
209 227
210 .handwriting-clear, 228 .handwriting-clear,
211 .handwriting-return { 229 .handwriting-return {
212 -webkit-box-flex: 5; 230 -webkit-box-flex: 5;
213 } 231 }
214 232
215 .nodisplay { 233 .nodisplay {
216 display: none; 234 display: none;
217 } 235 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698