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

Unified Diff: chrome/common/extensions/docs/examples/apps/calculator/style.css

Issue 11189028: Improve accessibility of Calculator default app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/common/extensions/docs/examples/apps/calculator/style.css
diff --git a/chrome/common/extensions/docs/examples/apps/calculator/style.css b/chrome/common/extensions/docs/examples/apps/calculator/style.css
index 40ce70f67bac94892f844f81c348043457ee87ec..27c5e9545e9813a7966fd228cc91a45726dffcca 100644
--- a/chrome/common/extensions/docs/examples/apps/calculator/style.css
+++ b/chrome/common/extensions/docs/examples/apps/calculator/style.css
@@ -72,10 +72,13 @@ body {
height: 22px;
}
+.equation .operand_wrapper {
+ float: right;
+}
+
dharcourt 2012/10/17 04:22:44 Nice! The switched order of the operator and opera
dmazzoni 2012/10/17 16:12:33 "operation" it is.
.equation .operator {
color: #2c2c2c;
width: 15px;
- float: right;
padding-right: 5px;
height: 22px;
line-height: 16px;
@@ -85,7 +88,6 @@ body {
.equation .operand {
color: #2c2c2c;
- float: right;
max-width: 80px;
text-align: right;
overflow: hidden;
@@ -128,6 +130,7 @@ body {
height: 45px;
width: 61px;
float: left;
+ border: none;
dharcourt 2012/10/17 04:22:44 I thought border: none; was the default... I have
dmazzoni 2012/10/17 16:12:33 I changed the element type from "div" to "button"
}
.calc-button.AC {

Powered by Google App Engine
This is Rietveld 408576698