This repository was archived by the owner on Sep 21, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
packages/devtools-splitter/src Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 4848}
4949
5050.split-box .vert > .splitter {
51- min-width : calc (var (--devtools-splitter-inline-start-width ) +
52- var (--devtools-splitter-inline-end-width ) + 1px );
51+ min-width : var (--devtools-vertical-splitter-min-width );
5352
5453 border-left-width : var (--devtools-splitter-inline-start-width );
5554 border-right-width : var (--devtools-splitter-inline-end-width );
6160}
6261
6362.split-box .horz > .splitter {
64- min-height : calc (var (--devtools-splitter-top-width ) +
65- var (--devtools-splitter-bottom-width ) + 1px );
63+ /* Emphasize the horizontal splitter width and color */
64+ min-height : var (--devtools-emphasized-horizontal-splitter-min-height );
65+
66+ background-color : var (--theme-emphasized-splitter-color );
6667
6768 border-top-width : var (--devtools-splitter-top-width );
6869 border-bottom-width : var (--devtools-splitter-bottom-width );
7374 cursor : ns-resize;
7475}
7576
77+ /* Emphasized splitter has the hover style. */
78+ .split-box .horz > .splitter : hover {
79+ background-color : var (--theme-emphasized-splitter-color-hover );
80+ }
81+
7682.split-box .disabled {
7783 pointer-events : none;
7884}
You can’t perform that action at this time.
0 commit comments