-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #156 - fix issue of incorrectly styled splitter handle * #156 - rather than using custom react-splitter-layout fork, upgrade to v4.0.0 where a custom css file can be provided more simply
- Loading branch information
1 parent
59b38a9
commit 752be08
Showing
9 changed files
with
325 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
.splitter-layout { | ||
position: absolute; | ||
display: flex; | ||
flex-direction: row; | ||
width: 100%; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
.splitter-layout .layout-pane { | ||
position: relative; | ||
flex: 0 0 auto; | ||
overflow: auto; | ||
} | ||
|
||
.splitter-layout .layout-pane.layout-pane-primary { | ||
flex: 1 1 auto; | ||
} | ||
|
||
.splitter-layout > .layout-splitter { | ||
flex: 0 0 auto; | ||
width: 12px; | ||
height: 100%; | ||
cursor: col-resize; | ||
background-color: #ccc; | ||
background-image: url("grabIcon.png"); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
.splitter-layout .layout-splitter:hover { | ||
background-color: #bbb; | ||
} | ||
|
||
.splitter-layout.layout-changing { | ||
cursor: col-resize; | ||
} | ||
|
||
.splitter-layout.layout-changing > .layout-splitter { | ||
background-color: #aaa; | ||
} | ||
|
||
.splitter-layout.splitter-layout-vertical { | ||
flex-direction: column; | ||
} | ||
|
||
.splitter-layout.splitter-layout-vertical.layout-changing { | ||
cursor: row-resize; | ||
} | ||
|
||
.splitter-layout.splitter-layout-vertical > .layout-splitter { | ||
width: 100%; | ||
height: 4px; | ||
cursor: row-resize; | ||
} |
Oops, something went wrong.