diff options
Diffstat (limited to 'web-ui/app/scss')
| -rw-r--r-- | web-ui/app/scss/_mixins.scss | 22 | 
1 files changed, 21 insertions, 1 deletions
| diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index e1f06425..6546c224 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -197,12 +197,12 @@        display: inline-block;        margin-right: -3px;        flex: none; +      position: relative;        .recipient-value {          &.selected {            border: 1px solid #666666;          } -          &:before {            font-family: FontAwesome;            padding-right: 4px; @@ -224,12 +224,32 @@              content: "\f13e ";            }          } +        &.deleting span { +          text-decoration: line-through; +        }          background-color: #F5F5F5;          border: 1px solid #D9D9D9;          border-radius: 2px;          margin: 3px;          padding: 5px;        } + +      .recipient-del { +        position: relative; + +        &:before { +          margin-left: 0.4em; +          # padding-left: 0.4em; +          font-weight: bold; +          content: "x" +        } +        &.deleteTooltip:hover:after { +          position: absolute; +          content: "click to remove"; +          font-size: 0.5rem; +          @include tooltip(25px, 0px); +        } +      }      }    }  } | 
