2021-11-18 10:50:17 +00:00
|
|
|
@import 'mediawiki.ui/variables.less';
|
|
|
|
|
|
|
|
// The dimensions of the UI affordance (the little line in the draggable area).
|
|
|
|
@affordance-width: 4px;
|
2022-05-10 12:31:54 +00:00
|
|
|
@affordance-length: 52px;
|
2021-11-18 10:50:17 +00:00
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar {
|
|
|
|
background-color: @colorGray14;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar-ns {
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar-ew {
|
|
|
|
cursor: ew-resize;
|
2022-05-10 12:31:54 +00:00
|
|
|
background-color: @colorGray15;
|
2021-11-18 10:50:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar span {
|
|
|
|
width: @affordance-length;
|
|
|
|
height: @affordance-width;
|
|
|
|
background-color: @colorGray12;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: block;
|
2022-05-10 12:31:54 +00:00
|
|
|
margin: 2px;
|
2021-11-18 10:50:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar:hover span {
|
|
|
|
background-color: @colorGray5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar-ew span {
|
|
|
|
height: @affordance-length;
|
|
|
|
width: @affordance-width;
|
|
|
|
border-width: 0 1px;
|
|
|
|
}
|