Skip to content
This repository has been archived by the owner on Apr 7, 2020. It is now read-only.

Commit

Permalink
Merge pull request #19 from handonam/border-fix
Browse files Browse the repository at this point in the history
Fixed example to use box-shadow instead of border
  • Loading branch information
ProLoser committed Mar 7, 2016
2 parents 8f55136 + eb365a9 commit 44c55af
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions example/styles.css
Original file line number Diff line number Diff line change
@@ -40,13 +40,13 @@ a {
padding: 2px;
z-index: 1;
color: transparent;
white-space: pre-wrap; }
white-space: pre-wrap;
border: 1px solid transparent;
width: 100%; }
.mention-highlight span {
padding: 0 2px;
border-radius: 3px;
background: lightblue;
border: 1px solid blue;
margin: -1px -3px; }
box-shadow: 0px 0px 0px 1px blue; }

.dropdown {
position: absolute;
6 changes: 3 additions & 3 deletions example/styles.scss
Original file line number Diff line number Diff line change
@@ -51,13 +51,13 @@ a {
z-index: 1;
color: rgba(0,0,0,0);
white-space: pre-wrap;
border: 1px solid rgba(0,0,0,0);
width: 100%;

span {
padding: 0 2px;
border-radius: 3px;
background: lightblue;
border: 1px solid blue;
margin: -1px -3px;
box-shadow: 0px 0px 0px 1px blue;
}
}

0 comments on commit 44c55af

Please sign in to comment.