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

Unified 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: 'Review fix' 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/keyboard/layout_us.js ('k') | chrome/browser/resources/keyboard/main.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/keyboard/main.css
diff --git a/chrome/browser/resources/keyboard/main.css b/chrome/browser/resources/keyboard/main.css
index 0a1bd6f8db0d0622a02c76bf66eeb7a14efbbe11..6e6ea6bd91b0409d8a42c37a26de18239832ab1f 100644
--- a/chrome/browser/resources/keyboard/main.css
+++ b/chrome/browser/resources/keyboard/main.css
@@ -70,6 +70,15 @@ div.row > div {
text-align: left;
}
+.popup {
+ background: rgba(30, 30, 30, 0.7);
bryeung 2011/09/13 23:53:04 I think we should increase the opacity of the popu
mazda 2011/09/16 13:16:37 Tweaked the colors according to the recent color s
+ border: 1px solid rgba(50, 50, 50, 0.8);
+ padding-right: 5px;
+ position: absolute;
+ -webkit-border-radius: 4px;
+ -webkit-box-shadow: 5px 5px 3px rgba(50, 50, 200, 0.3);
+}
+
.button {
background: -webkit-linear-gradient(#5a616f, #505662);
}
@@ -101,6 +110,15 @@ div.row > div {
top: 0;
}
+.key.popupkey {
+ background: rgba(0, 0, 0, 0);
+ border: 1px solid rgba(0, 0, 0, 0);
+}
+
+.key.popupkey.highlighted {
+ background: rgba(20, 20, 200, 0.3);
+}
+
.r0 {
background: -webkit-linear-gradient(#5a616f, #505662);
}
« no previous file with comments | « chrome/browser/resources/keyboard/layout_us.js ('k') | chrome/browser/resources/keyboard/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698