Skip to content

Commit

Permalink
[ui] fixed long app name tooltip padding
Browse files Browse the repository at this point in the history
  • Loading branch information
ar2rsawseen committed May 19, 2015
1 parent d37792f commit 6147f41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3349,7 +3349,7 @@ var AppRouter = Backbone.Router.extend({
var name = elem.find(".name");
if(name[0].scrollWidth > name.innerWidth()){
if(elem.parents("#app-nav").length)
$("#app-tooltip").css("margin-left", "20px");
$("#app-tooltip").css("margin-left", "21px");
else
$("#app-tooltip").css("margin-left", "3px");
$("#app-tooltip").html(elem.clone());
Expand Down
4 changes: 2 additions & 2 deletions frontend/express/public/stylesheets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ a { color:inherit; text-decoration:none; }
a:visited { color:inherit; }
a:hover { color:inherit; }
a:active { color:inherit; }
#app-tooltip{display: none; position: absolute; z-index: 1000; background-color: #CCC; height: 45px; margin-left:3px;}
#app-tooltip .app-container{padding-left:12px;}
#app-tooltip{display: none; position: absolute; z-index: 1000; background-color: #CCC; height: 45px; margin-left:5px;}
#app-tooltip .app-container{padding-left:11px;}

/* FOOTER */
#content-footer{position: fixed; bottom:0; left:0px; width: 100%; background-color: #3C3C3C; font: 13px Ubuntu,Helvetica,sans-serif; color: #888; height: 40px; z-index:999; box-shadow: 0 -4px 15px -5px #3C3C3C;}
Expand Down

0 comments on commit 6147f41

Please sign in to comment.