User:Dennis J au/common.css

From mediawiki.org

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* trying to get close to 'full screen' edit box.  
width: 119%; works ok with browser magnification at 150%.
height: settings don't seem to have any effect, 
but the old deprecated mediawiki preference Preferences > Editing > Editor > rows [25]
actually does have an effect. 25 seem good with browser magnification at 150%. 
However,this preference setting is 'deprecated' 
See https://www.mediawiki.org/wiki/Manual:$wgDefaultUserOptions 
Edit box size (rows) and Edit box size (columns) (deprecated in 1.29) */

#editform {
width: 119%;
}
.mw-continue-editing {
position: fixed;
/*top: 35px;*/
top: 570px;
left: 1050px;
z-index: 10;
}

.style-for-sub-numbered-lists ol {
  counter-reset: item
}
.style-for-sub-numbered-lists li {
  display: block
}
.style-for-sub-numbered-lists li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}