Chromium Code Reviews| 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 { |