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

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: address comments 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 4c2ae9cf86ceffbd5a0416e2883a5f7fa3c2e760..f68766e69cf46ae9b207494083a314b9e11cdf18 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(50, 50, 50, 0.95);
+ 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, 50, 0.3);
+}
+
.button {
background: -webkit-linear-gradient(#5a616f, #505662);
}
@@ -106,6 +115,18 @@ div.row > div {
top: 0;
}
+.key.popupkey {
+ background: rgba(0, 0, 0, 0);
+ border: 1px solid rgba(0, 0, 0, 0);
+ box-shadow: 0px 0px 0px #fff;
+ color: #fff;
+}
+
+.key.popupkey.highlighted {
+ background: rgba(20, 20, 200, 0.2);
+ color: #fff;
+}
+
.key:active {
background: -webkit-linear-gradient(#d6d6d6, #acacac);
border: 1px solid rgba(125,125,125,0.5);
« 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