Skip to content

Commit

Permalink
Merge pull request #802 from OneSignal/border-style-fix
Browse files Browse the repository at this point in the history
Border style fix
  • Loading branch information
Rodrigo Gomez Palacio authored Apr 20, 2021
2 parents b1e915d + 0fcd64d commit 2be81d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"build:dev-stag": "./build/scripts/build.sh -f development -t staging"
},
"config": {
"sdkVersion": "151401"
"sdkVersion": "151402"
},
"repository": {
"type": "git",
Expand Down
10 changes: 7 additions & 3 deletions src/stylesheets/reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@
background-image: none ; /* This rule affects the use of pngfix JavaScript http://dillerdesign.com/experiment/DD_BelatedPNG for IE6, which is used to force the browser to recognise alpha-transparent PNGs files that replace the IE6 lack of PNG transparency. (The rule overrides the VML image that is used to replace the given CSS background-image). If you don't know what that means, then you probably haven't used the pngfix script, and this comment may be ignored :) */
background-position: 0 0 ;
background-repeat: repeat ;
border: inherit;
border-color: black ;
border-color: currentColor ; /* `border-color` should match font color. Modern browsers (incl. IE9) allow the use of "currentColor" to match the current font 'color' value <http://www.w3.org/TR/css3-color/#currentcolor>. For older browsers, a default of 'black' is given before this rule. Guideline to support older browsers: if you haven't already declared a border-color for an element, be sure to do so, e.g. when you first declare the border-width. */
border-radius: 0 ;
border-style: none ;
border-width: medium ;
bottom: auto ;
clear: none ;
clip: auto ;
color: inherit ;
counter-increment: none ;
counter-reset: none ;
cursor: inherit ;
cursor: auto ;
direction: inherit ;
display: inline ;
float: none ;
Expand Down Expand Up @@ -72,7 +76,7 @@
unicode-bidi: normal ;
vertical-align: baseline ;
visibility: inherit ;
white-space: inherit ;
white-space: normal ;
width: auto ;
word-spacing: normal ;
z-index: auto ;
Expand Down

0 comments on commit 2be81d4

Please sign in to comment.