Auto merge of #10299 - mbrubeck:selection-style, r=jdm

Set a default ::selection style

Since we no longer have a hard-coded default after #10252.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10299)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-04-01 20:15:32 +05:30
commit 0397e2a24d

View file

@ -1,5 +1,7 @@
input { background: white; min-height: 1.0em; padding: 0em; padding-left: 0.25em; padding-right: 0.25em; border: solid lightgrey 1px; color: black; white-space: nowrap; text-align: left; }
textarea { background: white; min-height: 1.0em; padding: 0em; padding-left: 0.25em; padding-right: 0.25em; border: solid lightgrey 1px; color: black; white-space: pre; }
input::selection,
textarea::selection { background: rgba(176, 214, 255, 1.0); color: black; }
button,
input[type="button"],
input[type="submit"],