Skip to content

Commit

Permalink
UI: Limit toolbox icon sizes - fixes #1605
Browse files Browse the repository at this point in the history
rn=

(integrated from master branch change 9.2.1-1814-ga954f9b by Nathan Rijksen <n.rijksen@gmail.com>)
  • Loading branch information
Naatan committed Jul 27, 2016
1 parent 97f3e4e commit bce2dcb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/chrome/komodo/skin/global/Conscript
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ $cons->InstallInChrome('components/scrolltabs.less');
$cons->InstallInChrome('components/scc.less');
$cons->InstallInChrome('components/customize.less');
$cons->InstallInChrome('components/filestatus.less');
$cons->InstallInChrome('components/toolbox.less');

$cons->InstallInChrome('icons/style.less');
$cons->InstallInChrome('icons/variables.less');
Expand Down
5 changes: 5 additions & 0 deletions src/chrome/komodo/skin/global/components/toolbox.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* Ensure icons are 14px wide, unfortunately we cannot use max-width here because XUL */
#toolbox2-hierarchy-treebody::-moz-tree-image
{
width: 14px !important;
}
1 change: 1 addition & 0 deletions src/chrome/komodo/skin/global/global.less
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
@import url("chrome://komodo/skin/global/components/customize.less");
@import url("chrome://komodo/skin/global/components/languages.less");
@import url("chrome://komodo/skin/global/components/filestatus.less");
@import url("chrome://komodo/skin/global/components/toolbox.less");

@import url("resource://profile/classic.less");

Expand Down

0 comments on commit bce2dcb

Please sign in to comment.