diff --git a/src/app/stories/template/detail.html b/src/app/stories/template/detail.html index e1141b6b..56110c95 100644 --- a/src/app/stories/template/detail.html +++ b/src/app/stories/template/detail.html @@ -356,9 +356,12 @@
  • - {{tag}} + + {{tag}} + + ng-click="removeTag(tag)"> +

  • diff --git a/src/theme/base/_stories.scss b/src/theme/base/_stories.scss index c9fecbf4..d784e609 100644 --- a/src/theme/base/_stories.scss +++ b/src/theme/base/_stories.scss @@ -23,3 +23,20 @@ .position-label { margin-left: 5px; } + +/* "Story Detail" tags link style */ +.tag-label-link { + text-decoration:none; + color:#ffffff; +} +.tag-label-link:hover{ + text-decoration:none; + color:#ffffff; +} +.label .fa-times{ + opacity:0.5; +} +.label .fa-times:hover{ + cursor:pointer; + opacity:1; +} \ No newline at end of file