Skip to content

Commit

Permalink
Merge pull request #433 from stanhu/make-query-link-obvious
Browse files Browse the repository at this point in the history
Make it obvious that the query link is clickable.
  • Loading branch information
arikfr committed May 17, 2015
2 parents 59b87ec + 9e3d5c1 commit 6312f87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rd_ui/app/scripts/directives/query_directives.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'query': '=',
'visualization': '=?'
},
template: '<a ng-href="{{link}}" class="query-link">{{query.name}}</a>',
template: '<small><span class="glyphicon glyphicon-link"></span></small> <a ng-href="{{link}}" class="query-link">{{query.name}}</a>',
link: function(scope, element) {
scope.link = '/queries/' + scope.query.id;
if (scope.visualization) {
Expand Down
2 changes: 1 addition & 1 deletion rd_ui/app/styles/redash.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ a.navbar-brand img {
}

.panel-heading .query-link:hover {
text-decoration: none;
text-decoration: underline;
}

/* angular-growl */
Expand Down

0 comments on commit 6312f87

Please sign in to comment.