Benutzer:RolandUnger/minerva.css

Aus Wikivoyage

Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.

  • Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
  • Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
  • Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
  • Opera: Strg+F5
.wv-dialog-background {
 position: fixed;
 height: 100%;
 width: 100%;
 top: 0px;
 left: 0px;
 z-index: 2000;
 outline: 0px none;
 overflow: hidden;
 background: rgba(0,0,0,0.5);
}

.wv-dialog {
 position: absolute;
 margin: 0 !important;
 height: auto;
 width: 1200px;
 max-width: calc(100% - 20px);
 z-index: 2001;

 top: 0; /* formally */
 left: 0;

 padding: 0.2em;
 overflow: hidden;
 border: 1px solid #cccccc;
 border-radius: 3px;
 background: #f2f5f7;

 font-family: sans-serif;
 font-size: 0.8em;
}

.wv-dialog-close {
 float: right;
 width: 16px;
 height: 16px;
 border: 1px solid #a9c8d6;
 padding-bottom: 0.1em;
 margin-top: 0.4em;
 margin-right: 0.4em;
 
 font-weight: bold;
 font-size: 1.5em;
 line-height: 1em;
 vertical-align: middle;
 text-align: center;

 cursor: pointer;
}
.wv-dialog-close:after {
 content: "×";
}
.wv-dialog-close:hover {
 background: linear-gradient(to bottom, #ffffff 0%, #dddddd 90%);
 border: 1px solid #88aadd;
 border-radius: 3px;
}

.wv-dialog-header {
 background: #a9c8d6;
 border: 1px solid #aed0ea;
 border-radius: 3px;
 padding: 0.9em 1.4em 0.6em;

 color: #222222;
 font-weight: bold;
}

.wv-dialog-body {
 padding: 0;
 overflow: auto;
}

.wv-dialog input, .wv-dialog textarea, .wv-dialog select, .wv-dialog option {
 font-family: sans-serif;
 font-size: 1em;
 background: #ffffff;
}
.wv-dialog input, .wv-dialog textarea, .wv-dialog select {
 border: 1px solid #909090;
}
.wv-dialog input, .wv-dialog textarea {
 padding: 2px 2px 1px;
 box-sizing: border-box;
}
.wv-dialog input:focus, .wv-dialog textarea:focus {
 border: 1px solid #4169E1;
}
.wv-dialog input[type='checkbox'] {
 margin-right: 4px;
}

.wv-dialog-footer {
 border-width: 0;
 border-top: 1px solid #cccccc;
 padding: 0.3em 1.4em 0.5em;
}

.wv-dialog-button-pane {
 float: right;
}

.wv-dialog-button {
 display: inline-block;
 width: auto;
 overflow: visible;
 background-color: #ffffff;
 background: linear-gradient(to bottom, #fff 0%, #ddd 90%);
 border: 1px solid #aaaaaa;
 border-radius: 4px;
 box-shadow: 0 1px 3px rgba(0,0,0,.2);
 margin: .5em .4em .5em 0;
 padding: 0.4em 1em;

 color: #2779aa;
 line-height: 1.2em;
 vertical-align: middle;
 text-align: center;

 cursor: pointer;
}

.wv-dialog-button:focus {
 outline: none;
 border: 1px solid #88aadd;
}
.wv-dialog-button::-moz-focus-inner {
 border: 0;
}
.wv-dialog-button:hover {
 background: linear-gradient(to bottom, #fff 0%, #fff 90%);
 border: 1px solid #aaaaaa;
}
.wv-dialog-button:active {
 background: linear-gradient(to bottom, #fff 10%, #ccc 90%);
 border: 1px solid #88aadd;
}

/* --------------------- Autocomplete ---------------------------*/

.wv-ac-list {
 position: absolute;
 border: 1px solid #cccccc;
 border-radius: 3px;
 background: #f2f5f7;
 margin: 0;
 padding: 2px;
 z-index: 2002;

 font-family: sans-serif;
 font-size: 0.8em;
 color: #362b36;
}
.wv-ac-list li {
 border: 1px solid #f2f5f7;
 border-radius: 3px;
 background: #f2f5f7;
 margin: 0;
 padding: 2px 0.4em;
 
 list-style: outside none none;

 font-weight: normal;
 line-height: 1.5;
 color: #0645ad;
}
.wv-ac-list li:hover, .wv-ac-list .wv-ac-focused {
 border: 1px solid #74b2e2;
 background: #e4f1fb;

 color: #0070a3;
 cursor: default;
}

/* --------------------- vCard-Editor ---------------------------*/

/* BEGIN: responsive grid CSS */
/* Responsive grid CSS from http://www.responsivegridsystem.com/calculator/
   by Graham Miller (CC-SA 3.0 license) */
.listing-col {
	display: block;
	float:left;
	margin: 0 0 0 3%;
}
.listing-col:first-child {
	margin-left: 0;
}
.listing-container {
 margin-top: 5px;
 max-height: 22em;
 overflow-y: scroll;
}
#listing-editor label:hover {
 cursor: help;
}
#div_content {
 padding-top: 4px;
}
.listing-empty-input.listing-wikidata-placeholder {
 background-color: yellow;
}
.listing-span_1_of_2, .listing-span_1_of_2 {
 width: 48%;
}
/* Use a single column at less than 640px */
@media only screen and (max-width: 640px) {
	.listing-col {
		margin: 1% 0 0 0;
	}
}
@media only screen and (max-width: 640px) {
	.listing-span_2_of_2, .listing-span_1_of_2 { width: 100%; }
}
/* END: responsive grid CSS */
/* BEGIN: listing editor form CSS */
.editor-fullwidth {
	width: 100%;
}
.editor-partialwidth {
	width: 55%;
}
.editor-row {
 width: 100%;
 display: table;
}
.editor-row > div {
 display: table-cell;
 vertical-align: middle;
 padding-bottom: 4px;
}
.editor-row > div:first-child {
 width: 110px;
 padding-right: 4px;
}
.listing-col .editor-row:last-child > div {
 padding-bottom: 0;
}
.listing-tooltip {
	border-bottom: 1px dotted;
	cursor: help;
}
#input-type, #input-group {
 background-color: #ffffff;
 padding-left: 20px;
 box-shadow: 20px 0 0 0 #ffffff inset;
}
#span-minor, #span-last-edit, #span-wikidata-wp, #span-wikidata-img,
	#span-wikidata-link, span#div_lastedit {
	margin-left: 15px;
}
.listing-divider {
	border-width: 1px 0 0 0;
	border-color: #ccc;
	margin: 10px 0;
	border-style: dotted;
}

#listing-preview-text {
 border: 1px solid #a2a9b1;
 background: #ffffff;
 padding: 0 0.1em;
 height: 5em;
 overflow-y: auto;
}
/* END: listing editor form CSS */
/* BEGIN: listing editor misc CSS */
@media screen {
  span.vcard-edit-button a {
    color: #969696;
  }
  body .ui-dialog .ui-widget-header {
    background: #a9c8d6 !important;
  }
  #progress-dialog {
    font-size:large;
    padding-top:22px;
    text-align:center;
  }
  #listing-editor {
    padding: 0em 1.5em 1em;
  }
  #listing-help {
    margin-right: 30px;
  }
  .listingeditor-add {
    margin-left: 0.25em;
  }
  .listing-license {
    width: 60%;
    padding-top: 0.8em;
    font-size: 0.8em;
  }
  .listing-editor-dialog {
    margin: 0 5%;
  }
  .listing-editor-dialog a:hover, .listing-editor-dialog a:focus {
    text-decoration: underline;
  }
  .listing-sister {
  	padding-bottom: 0.1em;
  }
  .listing-sister:hover {
  	border-bottom: 1px solid #0645ad
  }
  .listing-sister-icons {
    padding-right: 0.2em;
  }
  label.wikidata-update {
   display: inline-block;
  }
  label.wikidata-update:after {
   display: inline-block;
   content: url(https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/16px-Wikidata-logo.svg.png);
   margin-left: 2px;
  }
}
/* END: vCard editor misc CSS */