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

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
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..5866dddbcfb10b2052ecc497932ed3588a427ef1 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 {
+ color: #fff;
bryeung 2011/09/20 19:30:50 sort please
mazda 2011/09/22 08:40:38 Done.
+ background: rgba(0, 0, 0, 0);
+ border: 1px solid rgba(0, 0, 0, 0);
+ box-shadow: 0px 0px 0px #fff;
+}
+
+.key.popupkey.highlighted {
+ color: #fff;
bryeung 2011/09/20 19:30:50 sort please
mazda 2011/09/22 08:40:38 Done.
+ background: rgba(20, 20, 200, 0.2);
+}
+
.key:active {
background: -webkit-linear-gradient(#d6d6d6, #acacac);
border: 1px solid rgba(125,125,125,0.5);

Powered by Google App Engine
This is Rietveld 408576698