Skip to content

Commit

Permalink
Fix Glyph plugin: Missing margin-left for span.fancytree-custom-icon
Browse files Browse the repository at this point in the history
Close #484
  • Loading branch information
mar10 committed Aug 23, 2015
1 parent 96e94ad commit 1e1815d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* [Improved] Add `highlight` and `fuzzy` options to ext-filter
* [Improved] Add `fireActivate` option to ext-persist (default: true)
* [Fixed] #475 Font color while editing node title with bootstrap skin
* [Fixed] #484 Glyph plugin: Missing margin-left for span.fancytree-custom-icon

# 2.11.0 / 2015-07-26
* [Changed] Adding `fancytree-plain` class to container (if not table), allowing for more efficient css
Expand Down
1 change: 1 addition & 0 deletions src/skin-awesome/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 0.5em;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-bootstrap-n/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 0.5em;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-bootstrap/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 0.5em;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-common.less
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: @fancy-icon-spacing;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-lion/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 3px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-vista/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 3px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-win7/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 3px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-win8-n/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 3px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-win8-xxl/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 6px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-win8/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 3px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down
1 change: 1 addition & 0 deletions src/skin-xp/ui.fancytree.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ span.fancytree-custom-icon {
/* Used by iconclass option and iconClass callback: */
span.fancytree-custom-icon {
display: inline-block;
margin-left: 3px;
}
/* Used by 'icon' node option: */
img.fancytree-icon {
Expand Down

0 comments on commit 1e1815d

Please sign in to comment.