Don't use border: shorthand in combination with other CSS properties.

Something (Gmail's HTML sanitizer?) reordered the properties in the style
declaration, and having border: come after border-width: etc. clobbers the
earlier rules.
This commit is contained in:
Mihai Parparita 2015-08-19 22:17:26 -07:00
parent d831754422
commit 112ddb2b02

View file

@ -52,7 +52,7 @@
"cover": {
"width": "0",
"height": "0",
"border": "solid",
"border-style": "solid",
"border-width": "0 0 20px 10px",
"border-color": "transparent transparent #dddac8 #fff"
},
@ -60,7 +60,7 @@
"margin": "1px 0 0 1px",
"width": "0",
"height": "0",
"border": "solid",
"border-style": "solid",
"border-width": "0 0 20px 10px",
"border-color": "transparent transparent #fefcef transparent"
}