Skip to content

Instantly share code, notes, and snippets.

@lefnire
Created July 8, 2014 02:00
Show Gist options
  • Save lefnire/3800fe5ad482764a2dc0 to your computer and use it in GitHub Desktop.
Save lefnire/3800fe5ad482764a2dc0 to your computer and use it in GitHub Desktop.
diff --git a/lib/client/css/projects.styl b/lib/client/css/projects.styl
index 1b79e4e..29e3d46 100644
--- a/lib/client/css/projects.styl
+++ b/lib/client/css/projects.styl
@@ -518,9 +518,11 @@ table tr:first-child td
border-color:#ccc;
background-color: white !important;
-div.story:hover
- .decipher-tags:not(.inputActive):after
- content: 'Add Tag'
+div.story
+ .actions{overflow-x:hidden}
+ &:hover
+ .decipher-tags:not(.inputActive):after
+ content: 'Add Tag'
.decipher-tags
min-height: 0px //24px;
border: none //1px solid #ccc;
diff --git a/lib/client/js/partials/project/_story.jade b/lib/client/js/partials/project/_story.jade
index 0f2aaeb..f61a704 100644
--- a/lib/client/js/partials/project/_story.jade
+++ b/lib/client/js/partials/project/_story.jade
@@ -26,11 +26,13 @@
.pull-left(style='margin-top:3px;')
ul
li.text-primary(style='margin-right:20px;')
- .pull-right(style='margin-left:10px;')
- tags(model="story.tags",options="{{tagOpts.opts}}",typeahead-options='tagOpts.typeahead',src="b as b.name for b in projectTags")
- a.text-primary(ui-sref='project.story.overview({storyId: story._id})')
- span.glyphicon.glyphicon-file(style="margin-right:3px;")
- span(style='margin-right:5px;') View Story
+ ul.list-unstyled
+ li.pull-left
+ a.text-primary(ui-sref='project.story.overview({storyId: story._id})')
+ span.glyphicon.glyphicon-file(style="margin-right:3px;")
+ span(style='margin-right:15px;') View Story
+ li.pull-left
+ tags(model="story.tags",options="{{tagOpts.opts}}",typeahead-options='tagOpts.typeahead',src="b as b.name for b in projectTags")
//- li(ng-repeat="step in story.baseTest.steps")
//- div(style='width:22px; height:15px; border-radius:3px;')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment