MediaWiki:Gadget-fullscreen-toggle.css

From Uncyclopedia, the content-free encyclopedia
Jump to navigation Jump to search

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

  • Internet Explorer: hold down the Ctrl key and click the Refresh or Reload button, or press Ctrl+F5.
  • Firefox: hold down the Shift key while clicking Reload; alternatively press Ctrl+F5 or Ctrl-Shift-R.
  • Opera, Konqueror and Safari users can just click the Reload button.
  • Chrome: press Ctrl+F5 or Shift+F5
/* vector 2010 fullscreen-ifier */
body.skin-vector-legacy.fullscreen-editor > *:not(#content) {
    display: none;
}
.skin-vector-legacy.fullscreen-editor #content > *:not(#bodyContent) {
    display: none;
}
.skin-vector-legacy.fullscreen-editor #bodyContent > *:not(#mw-content-text) {
    display: none;
}
.skin-vector-legacy.fullscreen-editor #mw-content-text > *:not(.mw-editform) {
    display: none;
}
body.skin-vector-legacy.fullscreen-editor {
    background: #fff;
}
body.skin-vector-legacy.fullscreen-editor .mw-body {
    padding: 0;
}
body.skin-vector-legacy.fullscreen-editor #content {
    margin: 0;
    border: 0;
    background: #fff;
}

/* vector-2022 fullscreen-ifier */
body.skin-vector-2022.fullscreen-editor .mw-page-container-inner > *:not(.mw-content-container) {
    display: none;
}
body.skin-vector-2022.fullscreen-editor .mw-content-container > *:not(.mw-body) {
    display: none;
}
body.skin-vector-2022.fullscreen-editor .mw-body > *:not(.vector-body) {
    display: none;
}
body.skin-vector-2022.fullscreen-editor .vector-body > *:not(.mw-body-content) {
    display: none;
}
body.skin-vector-2022.fullscreen-editor .mw-body {
    margin: 0;
    padding: 0;
    border-top: 0;
}
body.skin-vector-2022.fullscreen-editor .mw-body-content {
    margin: 0;
    padding: 0;
}
body.skin-vector-2022.fullscreen-editor .mw-page-container {
    margin: 0;
    padding: 0;
    max-width: none;
    min-width: none;
    background: #fff;
}
body.skin-vector-2022.fullscreen-editor .mw-page-container-inner {
    display: block;
}
body.skin-vector-2022.fullscreen-editor .mw-content-container {
    max-width: none !important;
    padding: 0 !important;
}

/* monobook fullscreen-ifier */
body.skin-monobook.fullscreen-editor #globalWrapper > *:not(#column-content) {
    display: none;
}
body.skin-monobook.fullscreen-editor #column-content > *:not(#content) {
    display: none;
}
body.skin-monobook.fullscreen-editor #content > *:not(#bodyContent) {
    display: none;
}
body.skin-monobook.fullscreen-editor #bodyContent > *:not(#mw-content-text) {
    display: none;
}
body.skin-monobook.fullscreen-editor {
    background: #fff;
}
body.skin-monobook.fullscreen-editor #column-content {
    margin: 0;
    padding: 0;
}
body.skin-monobook.fullscreen-editor #content {
    background: #fff;
    margin: 0;
    padding: 0;
    border: 0;
}

/* timeless fullscreen-ifier */
body.skin-timeless.fullscreen-editor #mw-wrapper > *:not(#mw-content-container) {
    display: none;
}
body.skin-timeless.fullscreen-editor #mw-content-block > *:not(#mw-content-wrapper) {
    display: none;
}
body.skin-timeless.fullscreen-editor #content > *:not(#bodyContentOuter) {
    display: none;
}
body.skin-timeless.fullscreen-editor #bodyContentOuter > *:not(#bodyContent) {
    display: none;
}
body.skin-timeless.fullscreen-editor #mw-content-container {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
body.skin-timeless.fullscreen-editor #mw-content-block {
    max-width: none;
    padding: 0;
}
body.skin-timeless.fullscreen-editor #mw-content {
    border: 0;
    padding: 0;
    background: #fff;   
}

/* fullscreen editor */
body.fullscreen-editor .mw-editform {
    display: flex;
    flex-flow: column nowrap;
    height: 100vh;
}
body.fullscreen-editor .wikiEditor-ui,
body.fullscreen-editor .wikiEditor-ui-view,
body.fullscreen-editor .wikiEditor-ui-left,
body.fullscreen-editor .wikiEditor-ui-bottom,
body.fullscreen-editor .wikiEditor-ui-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
body.fullscreen-editor #wpTextbox1,
body.fullscreen-editor .CodeMirror {
    flex: 1;
}

body.fullscreen-editor .mw-editTools,
body.fullscreen-editor .templatesUsed,
body.fullscreen-editor .hiddencats,
body.fullscreen-editor .limitreport,
body.fullscreen-editor .mw-message-box {
    display: none;
}
body.fullscreen-editor .editOptions {
    margin: 0;
}
body.fullscreen-editor .wikiEditor-ui .wikiEditor-ui-view {
	border-top: 0;
	border-bottom: 0;
}

/* editoptions minimizer */
.fullscreen-editor .editOptions {
    position: relative;
}
.fullscreen-editor .editOptions-toggle {
	position: absolute;
    top: 0.8rem;
	right: 0.9rem;
    display: flex;
    flex-flow: row nowrap;
    column-gap: 0.2rem;
}
.fullscreen-editor .editOptions-collapsed .editOptions-toggle {
    top: -3rem;
    right: 1.5rem;
    z-index: 999;
}
.fullscreen-editor .editOptions-toggle button {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 1.5rem;
    height: auto;
    font-family: monospace;
    cursor: pointer;
}
.fullscreen-editor .editOptions-collapsed .editOptions-toggle button {
    opacity: 0.15;
}
.fullscreen-editor .editOptions-collapsed .editOptions-toggle button:hover {
    opacity: 1;
}
.fullscreen-editor .editOptions-collapsed {
    padding: 0;
    margin: 0;
    border: 0;
}
.fullscreen-editor .fullscreen-narrow-width {
    margin: 0 auto !important;
    max-width: 1200px;
}
.fullscreen-editor .editOptions-collapsed > *:not(.editOptions-toggle) {
    display: none;
}