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

Unified Diff: ui/keyboard/resources/main.css

Issue 15176004: Web Component Virtual Keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: ui/keyboard/resources/main.css
diff --git a/ui/keyboard/resources/main.css b/ui/keyboard/resources/main.css
index 0e96e41dd0c92e14a2205e892306b937622b7ff3..172b9f3bc3a8fb82ca447057842aa6cd35e8d4b6 100644
--- a/ui/keyboard/resources/main.css
+++ b/ui/keyboard/resources/main.css
@@ -14,111 +14,31 @@ body {
padding: 0;
}
-div.main {
+kb-keyboard {
-webkit-box-orient: vertical;
display: -webkit-box;
max-width: 1280px;
+ width: 1280px;
}
-div.keyboard {
- -webkit-box-flex: 1;
- display: -webkit-box;
- margin: 0 auto;
- text-align: center;
-}
-
-div.rows {
- -webkit-box-flex: 1;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- margin-bottom: 5px;
- text-align: center;
-}
-
-div.row {
- -webkit-box-flex: 1;
- display: -webkit-box;
- margin-right: 5px;
- margin-top: 5px;
-}
-
-div.row > div {
- -webkit-box-flex: 1;
- display: -webkit-box;
-}
-
-.panel {
- border: 0;
- clear: both;
- margin-left: 5px;
- text-align: left;
-}
-
-.backspace > div {
- background-image: url('images/del.svg');
-}
-
-.tab > div {
- background-image: url('images/tab.svg');
-}
-
-.return > div {
- background-image: url('images/ret.svg');
-}
-
-.mic > div {
- background-image: url('images/mic.svg');
-}
-
-.mic.start > div {
- background-image: url('images/mic-green.svg');
-}
-
-.button {
- background: -webkit-linear-gradient(rgb(90, 97, 111), rgb(80, 86, 98));
-}
-.button:active {
- background: -webkit-linear-gradient(rgb(80, 86, 98), rgb(90, 97, 111));
-}
-
-.auxiliary:active {
- background: -webkit-linear-gradient(rgb(90, 97, 111), rgb(80, 86, 98));
-}
-
-.key {
- -webkit-box-flex: 1;
+kb-key {
background-color: #444444;
border-top: 1px solid #666666;
border-radius: 3px;
- /* Reserving equivalent space to .key:active so
- keys don't shift when selected. */
- /* Do not use box shadow until performance improves
- * http://code.google.com/p/chromium/issues/detail?id=99045
- box-shadow: 0px 1px 1px #000;
- */
color: #ffffff;
- display: -webkit-box;
font-family: sans-serif;
font-weight: 100;
margin-left: 5px;
- position: relative;
}
-.key.dark {
+kb-key.dark {
background-color: #333333;
}
-.key > div {
- bottom: 0;
- left: 0;
- margin: auto;
- position: absolute;
- right: 0;
- top: 0;
-}
-
-.key:active {
- background-color: #acacac;
+#upper .left-shift,
+#upper .right-shift,
+.active {
+ background-color: #acacac !important;
border-top: 1px solid rgba(125,125,125,0.5);
/* Do not use box shadow until performance improves
* http://code.google.com/p/chromium/issues/detail?id=99045
@@ -126,36 +46,6 @@ div.row > div {
*/
}
-div.moddown.dark {
- background-color: #acacac;
- border-color: rgb(48, 74, 155);
-}
-
-.image-key {
- background-position: center center;
- background-repeat: no-repeat;
- background-size: contain;
- height: 100%;
- width: 100%;
-}
-
-.text-key {
- height: 1.2em;
-}
-
-
-.shift > div.image-key {
- background-image: url('images/shift.svg');
-}
-
-.moddown.shift > div.image-key {
- background-image: url('images/shift-down.svg');
-}
-
-.hide > div {
- background-image: url('images/keyboard.svg');
-}
-
.at,
.com,
.comma,
@@ -163,34 +53,56 @@ div.moddown.dark {
.mic,
.period,
.tab {
- -webkit-box-flex: 1.3;
+ -webkit-box-flex: 1.3 !important;
}
.symbol,
.return {
- -webkit-box-flex: 1.5;
+ -webkit-box-flex: 1.5 !important;
}
.backspace {
- -webkit-box-flex: 1.7;
+ -webkit-box-flex: 1.7 !important;
}
-.left-shift {
- -webkit-box-flex: 1.4;
+.left-shift,
+.left-more {
+ -webkit-box-flex: 1.4 !important;
}
-.right-shift {
- -webkit-box-flex: 1.6;
+.right-shift,
+.right-more {
+ -webkit-box-flex: 1.6 !important;
}
.space {
- -webkit-box-flex: 4.8;
+ -webkit-box-flex: 4.8 !important;
}
.bar {
- -webkit-box-flex: 0.6;
+ -webkit-box-flex: 0.6 !important;
+}
+
+.backspace,
+.tab,
+.return,
+.left-shift,
+.right-shift,
+.left-more,
+.right-more,
+.symbol,
+.moddown.shift {
+ font-size: 80%;
}
-.nodisplay {
- display: none;
+.mic {
+ background-image: url('images/mic.svg');
+}
+
+.audio .mic {
+ background-image: url('images/mic-green.svg');
+}
+
+.hide {
+ background-image: url('images/keyboard.svg');
}

Powered by Google App Engine
This is Rietveld 408576698