2021-11-18 10:50:17 +00:00
|
|
|
@import 'mediawiki.ui/variables.less';
|
|
|
|
|
|
|
|
/* stylelint-disable selector-max-id */
|
|
|
|
#wpTextbox1,
|
|
|
|
.mw-editform #wpTextbox1 {
|
|
|
|
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
|
|
|
resize: none;
|
|
|
|
height: 100%;
|
|
|
|
min-height: auto;
|
|
|
|
max-height: none;
|
|
|
|
}
|
|
|
|
|
2022-03-23 03:28:12 +00:00
|
|
|
.ext-WikiEditor-realtimepreview-preview {
|
|
|
|
padding: 0 6px;
|
|
|
|
}
|
|
|
|
|
2021-11-18 10:50:17 +00:00
|
|
|
.wikiEditor-ui .wikiEditor-ui-view {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-ResizingDragBar-ns {
|
|
|
|
border-top: 1px solid @colorGray12;
|
|
|
|
}
|
2022-04-07 08:36:33 +00:00
|
|
|
|
|
|
|
@loadingbar-width: 20%;
|
|
|
|
|
|
|
|
.ext-WikiEditor-realtimepreview-loadingbar {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 5;
|
|
|
|
display: block;
|
|
|
|
opacity: 1;
|
|
|
|
content: ' ';
|
|
|
|
background-color: @color-primary;
|
|
|
|
width: @loadingbar-width;
|
|
|
|
height: 4px;
|
|
|
|
// Hide the loading bar to start with; it'll be shown if the loading state persists for more than 1s.
|
|
|
|
visibility: hidden;
|
|
|
|
animation: loadingbar 1.5s 1s infinite linear alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes loadingbar {
|
|
|
|
0% {
|
|
|
|
visibility: visible;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
// stylelint-disable-next-line plugin/no-unsupported-browser-features
|
|
|
|
left: calc( 100% - @loadingbar-width );
|
|
|
|
}
|
|
|
|
}
|
2022-04-08 03:45:34 +00:00
|
|
|
|
|
|
|
.ext-WikiEditor-twopanes-pane2 .ext-WikiEditor-reloadButton {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ext-WikiEditor-twopanes-pane2:hover .ext-WikiEditor-reloadButton {
|
|
|
|
display: block;
|
|
|
|
}
|