Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
feat(handle): fixed handle cursor to be col/row resize
Browse files Browse the repository at this point in the history
  • Loading branch information
widmoser committed Jan 21, 2016
1 parent 74e5b2a commit d3fe867
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ui-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
overflow-x: hidden;
}

.ui-layout-column > .ui-splitbar > a,
.ui-layout-row > .ui-splitbar > a {
.ui-layout-column > .ui-splitbar > a:not(.ui-splitbar-handle-container),
.ui-layout-row > .ui-splitbar > a:not(.ui-splitbar-handle-container) {
cursor: pointer;
text-align: center;
font-size: 16px;
Expand Down
2 changes: 1 addition & 1 deletion src/ui-layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ angular.module('ui.layout', [])
var index = ctrl.indexOfElement(element);
var splitbar = angular.element('<div ui-splitbar>' +
'<a><span class="ui-splitbar-icon ui-splitbar-toggle"></span></a>' +
'<a><span class="ui-splitbar-icon ui-splitbar-handle"></span></a>' +
'<a class="ui-splitbar-handle-container"><span class="ui-splitbar-icon ui-splitbar-handle"></span></a>' +
'<a><span class="ui-splitbar-icon ui-splitbar-toggle"></span></a>' +
'</div>');
if(0 < index && !ctrl.hasSplitbarBefore(scope.container)) {
Expand Down

0 comments on commit d3fe867

Please # to comment.