MediaWiki:Common.css: Porovnání verzí

Z AppleWikipedia
Přejít na: navigace, hledání
 
(Nejsou zobrazeny 2 mezilehlé verze od stejného uživatele.)
Řádka 1: Řádka 1:
/* Default styling for HTML elements */
+
/*
dfn {
+
'''Toto je CSS stylopis společný pro všechny vzhledy'''
    font-style: inherit;  /* Reset default styling for <dfn> */
+
}
+
  
/* Main page fixes */
+
Pokud chcete změnit pouze vzhled Monobook, editujte [[MediaWiki:Monobook.css]].
#interwiki-completelist {
+
    font-weight: bold;
+
}
+
body.page-Main_Page #ca-delete {
+
    display: none !important;
+
}
+
body.page-Main_Page #mp-topbanner {
+
    clear: both;
+
}
+
  
/* Edit window toolbar */
+
Veškeré změny byste měli otestovat pomocí [http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fcs.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DMediaWiki%3ACommon.css%26action%3Draw%26ctype%3Dtext%2Fcss%26usermedium%3Dall&usermedium=all Validátoru W3C].
#toolbar {
+
*/
    height: 22px;
+
/*
    margin-bottom: 6px;
+
== Import testovacích stylů ==
}
+
[[MediaWiki:Test.css]] slouží k testování stylů před jejich konečným zakomponováním do globálních stylových předpisů.
  
/* Highlight data points in the info action if specified in the URL */
+
@import url("/w/index.php?title=MediaWiki:Test.css&action=raw&ctype=text/css");
body.action-info :target {
+
    background: #DEF;
+
}
+
  
/* Make the list of references smaller */
+
== Globální styly pro [[MediaWiki]] ==
ol.references,
+
*/
div.reflist,
+
/*
div.refbegin {
+
=== styl pro generovaný obsah ===
    font-size: 90%;           /* Default font-size */
+
*/
    margin-bottom: 0.5em;
+
#toc
}
+
  {
div.refbegin-100 {
+
  clear:left;
    font-size: 100%;          /* Option for normal fontsize in {{refbegin}} */
+
  }
}
+
/*
div.reflist ol.references {
+
=== zaškrtávací boxy a jejich popisky v [[Speciální:Search]] ===
    font-size: 100%;           /* Reset font-size when nested in div.reflist */
+
v rozšířeném módu
    list-style-type: inherit; /* Enable custom list style types */
+
*/
}
+
#powersearch label
 +
  {
 +
  white-space: nowrap;
 +
  }
 +
/*
 +
=== přesměrování v [[Speciální:Allpages]], [[Speciální:Prefixindex]] a kategoriích ===
 +
*/
 +
.allpagesredirect, .redirect-in-category
 +
  {
 +
  font-style: italic;
 +
  }
 +
/*
 +
=== bytecounter v [[Speciální:Recentchanges]] a [[Speciální:Watchlist]] ===
 +
*/
 +
strong.mw-plusminus-neg
 +
  {
 +
  color: #c00;
 +
  }
  
/* Highlight clicked reference in blue to help navigation */
+
span.mw-plusminus-neg
ol.references li:target,
+
  {
sup.reference:target,
+
  color: #900;
span.citation:target {
+
  }
    background-color: #DEF;
+
}
+
  
/* Ensure refs in table headers and the like aren't bold or italic */
+
span.mw-plusminus-pos
sup.reference {
+
  {
    font-weight: normal;
+
  color: #060;
    font-style: normal;
+
  }
}
+
 +
strong.mw-plusminus-pos
 +
  {
 +
  color: #060;
 +
  }
  
/* Allow hidden ref errors to be shown by user CSS */
+
span.mw-plusminus-null
span.brokenref {
+
  {
    display: none;
+
  color: #666;
}
+
  }
  
/* Styling for citations (CSS3). Breaks long urls, etc., rather than overflowing box */
+
/*
.citation {
+
=== značky (RC apod.) ===
     word-wrap: break-word;
+
*/
 +
.mw-tag-markers {
 +
     font-family:sans-serif;
 +
    font-style:italic;
 +
    font-size:90%;
 
}
 
}
  
/* For linked citation numbers and document IDs, where
+
/*
  the number need not be shown on a screen or a handheld,
+
=== varování u editací ===
  but should be included in the printed version */
+
(editace staré verze, zamčené stránky...)
@media screen, handheld {
+
*/
    .citation .printonly {
+
.editwarning
        display: none;
+
  {
    }
+
  background-color: #ffc;
}
+
  border: 3px double #c00;
 +
  margin: 0 0 1em 0;
 +
  padding: .5em 1em;
 +
  }
 +
/*
 +
=== reference ===
 +
*/
 +
.references
 +
  {
 +
  font-size: 90%;
 +
  }
  
/* Reset top margin for lists embedded in columns */
+
ol.references li:target,
div.columns {
+
sup.reference:target
    margin-top: 0.3em;
+
  {  
}
+
  background-color: #ffc;
div.columns dl,
+
  }
div.columns ol,
+
/*
div.columns ul {
+
=== bílé pozadí pod průhlednými obrázky v článcích ===
     margin-top: 0;
+
*/
 +
div.thumb img.thumbimage {
 +
     background-color: #fff;
 
}
 
}
 +
/*
  
/* Avoid list items from breaking between columns */
+
== Obecné styly ==
div.columns li,
+
*/
div.columns dd dd {
+
/*
    -webkit-column-break-inside: avoid;
+
=== skrývání obsahu ===
    page-break-inside: avoid;
+
umožňuje podmíněné skrývání textu v šablonách (toto použití je '''ZASTARALÉ''')
    break-inside: avoid-column;
+
*/
}
+
.hiddenStructure
 +
  {
 +
  display: none;
 +
  speak: none;
 +
  }
 +
/*
 +
=== externí odkazy bez ikonky ===
 +
*/
 +
.plainlinksneverexpand a
 +
  {
 +
  background: none !important;
 +
  padding: 0 !important
 +
  }
  
/* Style for [[Template:Flowlist]] that Lets lists flow around floating objecs */
+
.plainlinksneverexpand a.external.text:after
.flowlist ul {
+
  {
    overflow-x: hidden;
+
  display: none !important;
    margin-left: 0;
+
  }
    padding-left: 1.6em;
+
}
+
.flowlist ol {
+
    overflow-x: hidden;
+
    margin-left: 0;
+
    padding-left: 3.2em;
+
}
+
.flowlist dl {
+
    overflow-x: hidden;
+
}
+
  
/* Style for horizontal lists (separator following item).
+
.plainlinksneverexpand a.external.autonumber:after
  IE8-specific classes are assigned in [[MediaWiki:Common.js/IEFixes.js]].
+
   {
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
+
   display: none !important;
   @revision 5 (2014-02-24)
+
   }
   @author [[User:Edokter]]
+
/*
 +
=== vynucené zalomení ===
 +
za plovoucím objektem pomocí <code><nowiki><div class="cleaner"><br /></div></nowiki></code> nebo <code><nowiki><div class="cleaner"><hr /></div></nowiki></code>
 
  */
 
  */
.hlist dl,
+
div.cleaner
.hlist ol,
+
  {
.hlist ul {
+
  clear: both;
    margin: 0;
+
  }
    padding: 0;
+
}
+
/* Display list items inline */
+
.hlist dd,
+
.hlist dt,
+
.hlist li {
+
    margin: 0;
+
    display: inline;
+
}
+
/* Display nested lists inline */
+
.hlist dl dl, .hlist dl ol, .hlist dl ul,
+
.hlist ol dl, .hlist ol ol, .hlist ol ul,
+
.hlist ul dl, .hlist ul ol, .hlist ul ul {
+
    display: inline;
+
}
+
/* Generate interpuncts */
+
.hlist dt:after {
+
    content: ": ";
+
}
+
.hlist dd:after,
+
.hlist li:after {
+
    content: " · ";
+
    font-weight: bold;
+
}
+
.hlist dd:last-child:after,
+
.hlist dt:last-child:after,
+
.hlist li:last-child:after {
+
    content: none;
+
}
+
/* For IE8 */
+
.hlist dd.hlist-last-child:after,
+
.hlist dt.hlist-last-child:after,
+
.hlist li.hlist-last-child:after {
+
    content: none;
+
}
+
/* Add parentheses around nested lists */
+
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
+
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
+
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
+
    content: " (";
+
    font-weight: normal;
+
}
+
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
+
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
+
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
+
    content: ") ";
+
    font-weight: normal;
+
}
+
/* For IE8 */
+
.hlist dd dd.hlist-last-child:after, .hlist dd dt.hlist-last-child:after, .hlist dd li.hlist-last-child:after,
+
.hlist dt dd.hlist-last-child:after, .hlist dt dt.hlist-last-child:after, .hlist dt li.hlist-last-child:after,
+
.hlist li dd.hlist-last-child:after, .hlist li dt.hlist-last-child:after, .hlist li li.hlist-last-child:after {
+
    content: ") ";
+
    font-weight: normal;
+
}
+
/* Put ordinals in front of ordered list items */
+
.hlist ol {
+
    counter-reset: listitem;
+
}
+
.hlist ol > li {
+
    counter-increment: listitem;
+
}
+
.hlist ol > li:before {
+
    content: " " counter(listitem) " ";
+
    white-space: nowrap;
+
}
+
.hlist dd ol > li:first-child:before,
+
.hlist dt ol > li:first-child:before,
+
.hlist li ol > li:first-child:before {
+
    content: " (" counter(listitem) " ";
+
}
+
  
/* Unbulleted lists */
+
div.cleaner br,
.plainlist ul {
+
div.cleaner hr
    line-height: inherit;
+
  {
    list-style: none none;
+
  clear: both;
    margin: 0;
+
  display: none;
}
+
  }
.plainlist ul li {
+
/*
    margin-bottom: 0;
+
=== náhrada za <code><nowiki><abbr></nowiki></code> a <code><nowiki><acronym></nowiki></code> ===
}
+
*/
 +
span.abbr,
 +
span.acronym
 +
  {
 +
  border-bottom: 1px dotted;
 +
  cursor: help;
 +
  }
 +
/*
 +
=== nezalamování textu ===
 +
*/
 +
.nowrap
 +
  {
 +
  white-space: pre;
 +
  }
 +
/*
 +
=== odsazení ===
 +
*/
 +
.odsadit
 +
  {
 +
  margin-left: 2em;
 +
  }
 +
/*
 +
=== skrytí přetékajícího obsahu ===
 +
*/
 +
.hiddenOverflow
 +
  {
 +
  overflow: hidden;
 +
  }
 +
/*
 +
=== odrážky v definicích v seznamu definic (např. v [[Portál:Aktuality|Aktuality]]) ===
 +
*/
 +
.odrazenedefinice dd
 +
  {
 +
  display: list-item;
 +
  list-style-type: square;
 +
  padding: 0;
 +
  }
 +
/*
 +
=== netučné termíny v seznamu definic (např. v [[Portál:Aktuality|Aktuality]]) ===
 +
*/
 +
.netucneterminy dt
 +
  {
 +
  font-weight: normal;
 +
  }
 +
/*
 +
=== varování ===
 +
*/
 +
span.varovani,
 +
span.warning
 +
  {
 +
  background-color: #c00;
 +
  color: #ff0;
 +
  font-weight: bold;
 +
  padding: 0 .5em;
 +
  }
 +
/*
 +
=== zarovnání ===
 +
*/
 +
.alLeft
 +
  {
 +
  text-align: left;
 +
  }
  
/* Default style for navigation boxes */
+
.alRight
.navbox {                    /* Navbox container style */
+
  {
    border: 1px solid #aaa;
+
  text-align: right;
    width: 100%;
+
   }
    margin: auto;
+
    clear: both;
+
    font-size: 88%;
+
    text-align: center;
+
    padding: 1px;
+
}
+
.navbox-inner,
+
.navbox-subgroup {
+
    width: 100%;
+
}
+
.navbox-group,
+
.navbox-title,
+
.navbox-abovebelow {
+
    padding: 0.25em 1em;      /* Title, group and above/below styles */
+
    line-height: 1.5em;
+
    text-align: center;
+
}
+
th.navbox-group {            /* Group style */
+
    white-space: nowrap;
+
    /* @noflip */
+
    text-align: right;
+
}
+
.navbox,
+
.navbox-subgroup {
+
    background: #fdfdfd;      /* Background color */
+
}
+
.navbox-list {
+
    line-height: 1.8em;
+
    border-color: #fdfdfd;   /* Must match background color */
+
}
+
.navbox th,
+
.navbox-title {
+
    background: #ccccff;      /* Level 1 color */
+
}
+
.navbox-abovebelow,
+
th.navbox-group,
+
.navbox-subgroup .navbox-title {
+
    background: #ddddff;      /* Level 2 color */
+
}
+
.navbox-subgroup .navbox-group,
+
.navbox-subgroup .navbox-abovebelow {
+
    background: #e6e6ff;      /* Level 3 color */
+
}
+
.navbox-even {
+
    background: #f7f7f7;      /* Even row striping */
+
}
+
.navbox-odd {
+
    background: transparent;  /* Odd row striping */
+
}
+
table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
+
    margin-top: -1px;          /* (doesn't work for IE6, but that's okay)      */
+
}
+
.navbox .hlist td dl,
+
.navbox .hlist td ol,
+
.navbox .hlist td ul,
+
.navbox td.hlist dl,
+
.navbox td.hlist ol,
+
.navbox td.hlist ul {
+
    padding: 0.125em 0;      /* Adjust hlist padding in navboxes */
+
}
+
ol + table.navbox,
+
ul + table.navbox {
+
    margin-top: 0.5em;        /* Prevent lists from clinging to navboxes */
+
}
+
  
/* Default styling for Navbar template */
+
.alJustify
.navbar {
+
  {
    display: inline;
+
  text-align: justify;
    font-size: 88%;
+
  }
    font-weight: normal;
+
}
+
.navbar ul {
+
    display: inline;
+
    white-space: nowrap;
+
}
+
.navbar li {
+
    word-spacing: -0.125em;
+
}
+
.navbar.mini li span {
+
  font-variant: small-caps;
+
}
+
/* Navbar styling when nested in infobox and navbox */
+
.infobox .navbar {
+
    font-size: 100%;
+
}
+
.navbox .navbar {
+
    display: block;
+
    font-size: 100%;
+
}
+
.navbox-title .navbar {
+
    /* @noflip */
+
    float: left;
+
    /* @noflip */
+
    text-align: left;
+
    /* @noflip */
+
    margin-right: 0.5em;
+
    width: 6em;
+
}
+
  
/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
+
sup, sub
   in [[MediaWiki:Common.js]] are styled here so they can be customised. */
+
   {
.collapseButton {
+
  line-height: 1em;
    /* @noflip */
+
  }
    float: right;
+
/*
    font-weight: normal;
+
== Specifické styly pro šablony ==
    /* @noflip */
+
*/
    margin-left: 0.5em;
+
/*
    /* @noflip */
+
=== infobox ===
    text-align: right;
+
převzato z en
    width: auto;
+
*/
}
+
.infobox
/* In navboxes, the show/hide button balances the v·d·e links
+
  {
   from [[Template:Navbar]], so they need to be the same width. */
+
  background-color: #f9f9f9;
.navbox .collapseButton {
+
  border: 1px solid #aaa;
    width: 6em;
+
  clear: right;
}
+
  float: right;
 +
   margin-bottom: .5em;
 +
  margin-left: 1em;
 +
  padding: .2em;
 +
  }
  
/* Styling for JQuery makeCollapsible, matching that of collapseButton */
+
.infobox caption
.mw-collapsible-toggle {
+
  {
    font-weight: normal;
+
  margin-left: inherit;
    /* @noflip */
+
  }
    text-align: right;
+
}
+
.navbox .mw-collapsible-toggle {
+
    width: 6em;
+
}
+
  
/* Infobox template style */
+
.infobox tr
.infobox {
+
  {
    border: 1px solid #aaa;
+
  vertical-align: top;
    background-color: #f9f9f9;
+
  }
    color: black;
+
    /* @noflip */
+
    margin: 0.5em 0 0.5em 1em;
+
    padding: 0.2em;
+
    /* @noflip */
+
    float: right;
+
    /* @noflip */
+
    clear: right;
+
    /* @noflip */
+
    text-align: left;
+
    font-size: 88%;
+
    line-height: 1.5em;
+
}
+
.infobox caption {
+
    font-size: 125%;
+
    font-weight: bold;
+
}
+
.infobox td,
+
.infobox th {
+
    vertical-align: top;
+
}
+
.infobox.bordered {
+
    border-collapse: collapse;
+
}
+
.infobox.bordered td,
+
.infobox.bordered th {
+
    border: 1px solid #aaa;
+
}
+
.infobox.bordered .borderless td,
+
.infobox.bordered .borderless th {
+
    border: 0;
+
}
+
  
.infobox.sisterproject {
+
.infobox.bordered
    width: 20em;
+
  {
    font-size: 90%;
+
  border-collapse: collapse;
}
+
  }
  
.infobox.standard-talk {
+
.infobox.bordered td,
    border: 1px solid #c0c090;
+
.infobox.bordered th
    background-color: #f8eaba;
+
  {
}
+
  border: 1px solid #aaa;
.infobox.standard-talk.bordered td,
+
  }
.infobox.standard-talk.bordered th {
+
/*
    border: 1px solid #c0c090;
+
=== navboxy ===
}
+
*/
 +
 +
div.navbox {
 +
  border: 1px solid transparent;
 +
  clear: both;
 +
  font-size: 88%;
 +
  padding: 2px;
 +
  text-align: center;
 +
  margin-top: 2em;
 +
}
  
/* styles for bordered infobox with merged rows */
+
div.navbox + div.navbox {
.infobox.bordered .mergedtoprow td,
+
  margin-top: 0;
.infobox.bordered .mergedtoprow th {
+
}
    border: 0;
+
    border-top: 1px solid #aaa;
+
    /* @noflip */
+
    border-right: 1px solid #aaa;
+
}
+
  
.infobox.bordered .mergedrow td,
+
div.navbox tr.navbox-padding {
.infobox.bordered .mergedrow th {
+
  height: 2px;
    border: 0;
+
}
    /* @noflip */
+
    border-right: 1px solid #aaa;
+
}
+
  
/* Styles for geography infoboxes, eg countries,
+
div.navbox th.navbox-title,
  country subdivisions, cities, etc.           */
+
div.navbox td.navbox-abovebelow,
.infobox.geography {
+
div.navbox th {
    border-collapse: collapse;
+
  padding-left: 1em;
    line-height: 1.2em;
+
  padding-right: 1em;
    font-size: 90%;
+
  text-align: center;
}
+
}
  
.infobox.geography  td,
+
div.navbox td.navbox-group {
.infobox.geography  th {
+
  font-weight: bold;
    border-top: 1px solid #aaa;
+
  padding-left: 1em;
    padding: 0.4em 0.6em 0.4em 0.6em;
+
  padding-right: 1em;
}
+
  text-align: right;
.infobox.geography .mergedtoprow td,
+
  white-space: nowrap;
.infobox.geography .mergedtoprow th {
+
}
    border-top: 1px solid #aaa;
+
    padding: 0.4em 0.6em 0.2em 0.6em;
+
}
+
  
.infobox.geography .mergedrow td,
+
div.navbox table.navbox-navbox,
.infobox.geography .mergedrow th {
+
div.navbox table.navbox-subgroup,
    border: 0;
+
div.navbox td.navbox-group + th.navbox-title,
    padding: 0 0.6em 0.2em 0.6em;
+
div.navbox td.navbox-list {
}
+
  width: 100%;
 +
}
  
.infobox.geography .mergedbottomrow td,
+
div.navbox td.navbox-list {
.infobox.geography .mergedbottomrow th {
+
  padding: 0;
    border-top: 0;
+
}
    border-bottom: 1px solid #aaa;
+
    padding: 0 0.6em 0.4em 0.6em;
+
}
+
  
.infobox.geography .maptable td,
+
div.navbox td.navbox-group + td.navbox-list {
.infobox.geography .maptable th {
+
  border-left: 2px solid transparent;
    border: 0;
+
  text-align: left;
    padding: 0;
+
}
}
+
  
/* Normal font styling for table row headers with scope="row" tag */
+
div.navbox td.navbox-list div {
.wikitable.plainrowheaders th[scope=row] {
+
  padding: 0 .25em;
    font-weight: normal;
+
}
    /* @noflip */
+
    text-align: left;
+
}
+
  
/* Lists in data cells are always left-aligned */
+
div.navbox td.navbox-group + th.navbox-title {
.wikitable td ul,
+
  border-left: 2px solid transparent;
.wikitable td ol,
+
}
.wikitable td dl {
+
    /* @noflip */
+
    text-align: left;
+
}
+
/* ...unless they also use the hlist class */
+
.wikitable.hlist td ul,
+
.wikitable.hlist td ol,
+
.wikitable.hlist td dl {
+
    text-align: inherit;
+
}
+
  
/* Icons for medialist templates [[Template:Listen]],
+
div.navbox table.navbox-navbox th.navbox-title span.navbox-titletext {
   [[Template:Multi-listen_start]], [[Template:Video]],
+
   font-size: 110%;
  [[Template:Multi-video_start]] */
+
}
div.listenlist {
+
 
    background: url("//upload.wikimedia.org/wikipedia/commons/4/47/Sound-icon.svg") no-repeat scroll 0 0 transparent;
+
div.navbox table.navbox-subgroup th.navbox-title span.navbox-titletext {
    background-size: 30px;
+
  font-size: 100%;
    padding-left: 40px;
+
}
}
+
  
/* Fix for hieroglyphs specificality issue in infoboxes ([[Bugzilla:41869]]) */
+
div.navbox td.navbox-imageleft {
table.mw-hiero-table td {
+
  padding: 0 2px 0 0;
    vertical-align: middle;
+
  width: 0;
}
+
}
 +
 
 +
div.navbox td.navbox-image {
 +
  padding: 0 0 0 2px;
 +
  width: 0;
 +
}
 +
 
 +
div.navbox .collapseButton {
 +
  width: 6em;
 +
}
 +
 
 +
/* barvy */
 +
 
 +
div.navbox {
 +
  border-color: #aaa;
 +
}
 +
 
 +
div.navbox,
 +
div.navbox table.navbox-subgroup {
 +
  background-color: #fdfdfd;
 +
}
 +
 
 +
div.navbox table.navbox-navbox {
 +
  background-color: transparent;
 +
  color: inherit;
 +
}
 +
 
 +
div.navbox td.navbox-group + th.navbox-title ,
 +
div.navbox td.navbox-group + td.navbox-list {
 +
  border-color: #fdfdfd;
 +
}
 +
 
 +
div.navbox th.navbox-title,
 +
div.navbox th {
 +
  background-color: #e0e0e0;
 +
}
 +
 
 +
div.navbox td.navbox-abovebelow,
 +
div.navbox td.navbox-group,
 +
div.navbox table.navbox-subgroup td.navbox-title {
 +
  background-color: #e7e7e7;
 +
}
  
 +
div.navbox table.navbox-subgroup td.navbox-group,
 +
div.navbox table.navbox-subgroup td.navbox-abovebelow {
 +
  background-color: #f0f0f0;
 +
}
 +
 +
div.navbox td.navbox-even {
 +
  background-color: #f7f7f7;
 +
}
 +
 +
div.navbox td.navbox-odd {
 +
  background-color: transparent;
 +
}
 +
 +
table.navboxes {
 +
  border: 1px solid #aaa;
 +
  clear: both;
 +
  font-size: 88%;
 +
  text-align: center;
 +
  width: 100%;
 +
}
 +
 +
table.navboxes th {
 +
  background-color: #e0e0e0;
 +
  padding-left: 1em;
 +
  padding-right: 1em;
 +
}
 +
 +
table.navboxes .collapseButton {
 +
  width: 6em;
 +
}
 +
 +
table.navboxes div.navbox {
 +
  font-size: 88%;
 +
}
 +
 +
table.navboxes + table.navboxes,
 +
table.navboxes + div.navbox,
 +
div.navbox + table.navboxes,
 +
div.navbox + div.navbox {
 +
  margin-top: -1px;
 +
}
 +
 +
.collapseButton {
 +
  float: right;
 +
  font-weight: normal;
 +
  text-align: right;
 +
  width: auto;
 +
}
 +
 +
/*
 +
=== locmap ===
 +
*/
 +
 +
.location-map img {
 +
    display: block;
 +
}
 +
 +
/*
 +
=== dokumentace k šablonám ===
 +
*/
 +
.template-documentation
 +
  {
 +
  background-color: #ffe;
 +
  border: 1px solid #aaa;
 +
  clear: both;
 +
  margin-top: 1em;
 +
  padding: .2em .4em;
 +
  }
 +
 +
/*
 +
=== sesterské projekty ===
 +
.sisterproject
 +
  {
 +
  background-color: #f9f9f9;
 +
  border: 1px solid #aaa;
 +
  clear: right;
 +
  float: right;
 +
  font-size: smaller;
 +
  margin: 0 0 1em 1em;
 +
  padding: 4px;
 +
  width: 250px;
 +
  }
 +
 +
.sisterproject b
 +
  {
 +
  font-size: small;
 +
  }
 +
.sisterproject_text_target
 +
  {
 +
  font-weight: bold;
 +
  }
 +
.sisterproject-wikinews .sisterproject_text_target {
 +
font-style: italic;
 +
}*/
 +
/*
 +
=== odkazy na média ===
 +
z enwiki
 +
*/
 +
 +
/* Class for links with loudspeaker icon next to them */
 +
 +
.audiolink a
 +
    {
 +
    background: url("//upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left  no-repeat !important;
 +
    padding-left: 16px !important;
 +
    padding-right: 0 !important;
 +
    }
 +
 +
/* Icons for medialist templates  */
 +
 +
div.listenlist
 +
    {
 +
    background: url("//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Gnome-speakernotes.svg/30px-Gnome-speakernotes.svg.png");
 +
    padding-left: 40px;
 +
    }
 +
 +
div.videolist, div.multivideolist
 +
    {
 +
    background: url("//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Video-x-generic.svg/40px-Video-x-generic.svg.png");
 +
    padding-left: 50px;
 +
    }
 +
 
/* Style rules for media list templates */
 
/* Style rules for media list templates */
div.medialist {
+
 +
div.medialist
 +
    {
 
     min-height: 50px;
 
     min-height: 50px;
 
     margin: 1em;
 
     margin: 1em;
    /* @noflip */
 
 
     background-position: top left;
 
     background-position: top left;
 
     background-repeat: no-repeat;
 
     background-repeat: no-repeat;
}
+
    }
div.medialist ul {
+
     list-style-type: none;
+
div.medialist ul
 +
    {
 +
     list-style-type: none;  
 
     list-style-image: none;
 
     list-style-image: none;
 
     margin: 0;
 
     margin: 0;
}
+
    }
div.medialist ul li {
+
 +
div.medialist ul li
 +
  {
 
     padding-bottom: 0.5em;
 
     padding-bottom: 0.5em;
}
+
  }
div.medialist ul li li {
+
 +
div.medialist ul li li
 +
  {
 
     font-size: 91%;
 
     font-size: 91%;
 
     padding-bottom: 0;
 
     padding-bottom: 0;
}
+
    }
  
/* Change the external link icon to an Adobe icon for all PDF files
+
/*
  in browsers that support these CSS selectors, like Mozilla and Opera */
+
div#content a[href$=".pdf"].external,
+
div#content a[href*=".pdf?"].external,
+
div#content a[href*=".pdf#"].external,
+
div#content a[href$=".PDF"].external,
+
div#content a[href*=".PDF?"].external,
+
div#content a[href*=".PDF#"].external,
+
div#mw_content a[href$=".pdf"].external,
+
div#mw_content a[href*=".pdf?"].external,
+
div#mw_content a[href*=".pdf#"].external,
+
div#mw_content a[href$=".PDF"].external,
+
div#mw_content a[href*=".PDF?"].external,
+
div#mw_content a[href*=".PDF#"].external {
+
    background: url("//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif") no-repeat right;
+
    /* @noflip */
+
    padding-right: 18px;
+
}
+
  
/* Change the external link icon to an Adobe icon anywhere the PDFlink class
+
=== různá hlášení ===
  is used (notably Template:PDFlink). This works in IE, unlike the above. */
+
'''ZASTARALÉ'''
div#content span.PDFlink a,
+
*/
div#mw_content span.PDFlink a {
+
.messagebox
    background: url("//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif") no-repeat right;
+
  {
    /* @noflip */
+
  background-color: #f9f9f9;
    padding-right: 18px;
+
  border: 1px solid #aaa;
}
+
  margin: 0 auto 1em auto;
 +
  padding: .2em;
 +
  text-align: justify;
 +
  width: 85%;
 +
  }
  
/* Content in columns with CSS instead of tables ([[Template:Columns]]) */
+
.messagebox.merge
div.columns-2 div.column {
+
  {
    /* @noflip */
+
  background-color: #f5edf5;
    float: left;
+
  border: 1px solid #c9f;
    width: 50%;
+
  text-align: center;
    min-width: 300px;
+
  }
}
+
div.columns-3 div.column {
+
    /* @noflip */
+
    float: left;
+
    width: 33.3%;
+
    min-width: 200px;
+
}
+
div.columns-4 div.column {
+
    /* @noflip */
+
    float: left;
+
    width: 25%;
+
    min-width: 150px;
+
}
+
div.columns-5 div.column {
+
    /* @noflip */
+
    float: left;
+
    width: 20%;
+
    min-width: 120px;
+
}
+
  
/* Messagebox templates */
+
.messagebox.cleanup
.messagebox {
+
  {
    border: 1px solid #aaa;
+
  background-color: #eef;
    background-color: #f9f9f9;
+
  border: 1px solid #99f;
    width: 80%;
+
  text-align: center;
    margin: 0 auto 1em auto;
+
  }
    padding: .2em;
+
}
+
.messagebox.merge {
+
    border: 1px solid #c0b8cc;
+
    background-color: #f0e5ff;
+
    text-align: center;
+
}
+
.messagebox.cleanup {
+
    border: 1px solid #9f9fff;
+
    background-color: #efefff;
+
    text-align: center;
+
}
+
.messagebox.standard-talk {
+
    border: 1px solid #c0c090;
+
    background-color: #f8eaba;
+
    margin: 4px auto;
+
}
+
/* For old WikiProject banners inside banner shells. */
+
.mbox-inside .standard-talk,
+
.messagebox.nested-talk {
+
    border: 1px solid #c0c090;
+
    background-color: #f8eaba;
+
    width: 100%;
+
    margin: 2px 0;
+
    padding: 2px;
+
}
+
.messagebox.small {
+
    width: 238px;
+
    font-size: 85%;
+
    /* @noflip */
+
    float: right;
+
    clear: both;
+
    /* @noflip */
+
    margin: 0 0 1em 1em;
+
    line-height: 1.25em;
+
}
+
.messagebox.small-talk {
+
    width: 238px;
+
    font-size: 85%;
+
    /* @noflip */
+
    float: right;
+
    clear: both;
+
    /* @noflip */
+
    margin: 0 0 1em 1em;
+
    line-height: 1.25em;
+
    background: #F8EABA;
+
}
+
  
/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
+
.messagebox.standard-talk
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
+
  {
    border: none;
+
  background-color: #f8eaba;
    /* @noflip */
+
  border: 1px solid #cc9;
    padding: 0.25em 0.9em;     /* 0.9em left/right */
+
  }
    width: 100%;              /* Make all mboxes the same width regardless of text length */
+
/*
}
+
=== upozornění ===
td.mbox-image {                /* The left image cell */
+
'''ZASTARALÉ'''
    border: none;
+
*/
    /* @noflip */
+
  .Talk-Notice
    padding: 2px 0 2px 0.9em; /* 0.9em left, 0px right */
+
  {
    text-align: center;
+
  background-color: #f8eaba;
}
+
  border: 1px solid #cc9;
td.mbox-imageright {          /* The right image cell */
+
  border-spacing: 3px;
    border: none;
+
  margin: 0 auto 3px auto;
    /* @noflip */
+
  width: 85%;
    padding: 2px 0.9em 2px 0; /* 0px left, 0.9em right */
+
  }
    text-align: center;
+
}
+
td.mbox-empty-cell {          /* An empty narrow cell */
+
    border: none;
+
    padding: 0;
+
    width: 1px;
+
}
+
  
/* Article message box styles */
+
.Talk-Notice td /* Správné pozadí pro všechny prohlížeče */
table.ambox {
+
  {
    margin: 0 10%;                  /* 10% = Will not overlap with other elements */
+
  background: inherit;
    border: 1px solid #aaa;
+
  }
    /* @noflip */
+
/*
    border-left: 10px solid #1e90ff; /* Default "notice" blue */
+
=== SHORTTOC ===
    background: #fbfbfb;
+
*/
}
+
#shorttoc,
table.ambox + table.ambox {      /* Single border between stacked boxes. */
+
#shorttoc #toc,
    margin-top: -1px;
+
div#content #shorttoc,
}
+
div#content #shorttoc #toc
.ambox th.mbox-text,
+
   {
.ambox td.mbox-text {            /* The message body cell(s) */
+
  width: 100%;
    padding: 0.25em 0.5em;      /* 0.5em left/right */
+
   }
}
+
.ambox td.mbox-image {          /* The left image cell */
+
    /* @noflip */
+
    padding: 2px 0 2px 0.5em;   /* 0.5em left, 0px right */
+
}
+
.ambox td.mbox-imageright {     /* The right image cell */
+
    /* @noflip */
+
    padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
+
}
+
  
table.ambox-notice {
+
#shorttoc #toc #toctitle,
    /* @noflip */
+
#shorttoc h2,
    border-left: 10px solid #1e90ff;    /* Blue */
+
#shorttoc ul,
}
+
#shorttoc li,
table.ambox-speedy {
+
div#content #shorttoc #toc #toctitle,
    /* @noflip */
+
div#content #shorttoc h2,
    border-left: 10px solid #b22222;    /* Red */
+
div#content #shorttoc ul,
    background: #fee;                  /* Pink */
+
div#content #shorttoc li
}
+
   {
table.ambox-delete {
+
   float: left;
    /* @noflip */
+
  }
    border-left: 10px solid #b22222;    /* Red */
+
}
+
table.ambox-content {
+
    /* @noflip */
+
    border-left: 10px solid #f28500;   /* Orange */
+
}
+
table.ambox-style {
+
    /* @noflip */
+
    border-left: 10px solid #f4c430;   /* Yellow */
+
}
+
table.ambox-move {
+
    /* @noflip */
+
    border-left: 10px solid #9932cc;    /* Purple */
+
}
+
table.ambox-protection {
+
    /* @noflip */
+
    border-left: 10px solid #bba;       /* Gray-gold */
+
}
+
  
/* Image message box styles */
+
#shorttoc #toc span.tocnumber,
table.imbox {
+
#shorttoc #toc .toctoggle,
    margin: 4px 10%;
+
div#content #shorttoc #toc span.tocnumber,
    border-collapse: collapse;
+
div#content #shorttoc #toc .toctoggle
    border: 3px solid #1e90ff;    /* Default "notice" blue */
+
  {
    background: #fbfbfb;
+
  display: none;
}
+
  }
.imbox .mbox-text .imbox {  /* For imboxes inside imbox-text cells. */
+
    margin: 0 -0.5em;      /* 0.9 - 0.5 = 0.4em left/right.        */
+
    display: block;        /* Fix for webkit to force 100% width. */
+
}
+
.mbox-inside .imbox {       /* For imboxes inside other templates.  */
+
    margin: 4px;
+
}
+
  
table.imbox-notice {
+
#shorttoc h2,
    border: 3px solid #1e90ff;    /* Blue */
+
#shorttoc ul,
}
+
div#content #shorttoc h2,
table.imbox-speedy {
+
div#content #shorttoc ul
    border: 3px solid #b22222;    /* Red */
+
   {
    background: #fee;            /* Pink */
+
   margin: 0 .5em 0 0;
}
+
   }
table.imbox-delete {
+
    border: 3px solid #b22222;    /* Red */
+
}
+
table.imbox-content {
+
    border: 3px solid #f28500;    /* Orange */
+
}
+
table.imbox-style {
+
    border: 3px solid #f4c430;   /* Yellow */
+
}
+
table.imbox-move {
+
    border: 3px solid #9932cc;   /* Purple */
+
}
+
table.imbox-protection {
+
    border: 3px solid #bba;      /* Gray-gold */
+
}
+
table.imbox-license {
+
    border: 3px solid #88a;       /* Dark gray */
+
    background: #f7f8ff;          /* Light gray */
+
}
+
table.imbox-featured {
+
    border: 3px solid #cba135;   /* Brown-gold */
+
}
+
  
/* Category message box styles */
+
#shorttoc ul,
table.cmbox {
+
div#content #shorttoc ul
    margin: 3px 10%;
+
  {
    border-collapse: collapse;
+
  list-style-type: none;
    border: 1px solid #aaa;
+
  list-style-image: none;
    background: #DFE8FF;   /* Default "notice" blue */
+
   }
}
+
  
table.cmbox-notice {
+
#shorttoc li,
    background: #D8E8FF;    /* Blue */
+
div#content #shorttoc li
}
+
   {
table.cmbox-speedy {
+
   margin-left: .5em;
    margin-top: 4px;
+
   }
    margin-bottom: 4px;
+
    border: 4px solid #b22222;    /* Red */
+
    background: #FFDBDB;          /* Pink */
+
}
+
table.cmbox-delete {
+
    background: #FFDBDB;   /* Red */
+
}
+
table.cmbox-content {
+
    background: #FFE7CE;   /* Orange */
+
}
+
table.cmbox-style {
+
    background: #FFF9DB;    /* Yellow */
+
}
+
table.cmbox-move {
+
    background: #E4D8FF;   /* Purple */
+
}
+
table.cmbox-protection {
+
    background: #EFEFE1;   /* Gray-gold */
+
}
+
  
/* Other pages message box styles */
+
* html #shorttoc td,
table.ombox {
+
* html div#content #shorttoc td
    margin: 4px 10%;
+
  {
    border-collapse: collapse;
+
  padding: .5em 0 .5em .5em;
    border: 1px solid #aaa;       /* Default "notice" gray */
+
  }
    background: #f9f9f9;
+
/*
}
+
=== šablony úvodních upozornění ===
 +
(Název, Různé významy - sdílená část)
 +
*/  
 +
.uvodni-upozorneni
 +
  {
 +
  font-style: italic;
 +
  margin: 0 0 1em 2em;
 +
  }
 +
/*
 +
=== Název ===
 +
*/
 +
#Sablona__Nazev #Sablona__Nazev_Spravny-nazev
 +
  {
 +
  font-weight: bold;
 +
  }
 +
/*
 +
=== Odmocnina ===
 +
*/
 +
span.odmocnina
 +
  {
 +
  text-decoration: overline;
 +
  }
 +
/*
 +
=== Klávesa ===
 +
*/
 +
kbd.Sablona__Klavesa
 +
  {
 +
  background-color: #F7F7F7;
 +
  background-image: -webkit-linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
 +
  background-image: -moz-linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
 +
  background-image: -o-linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
 +
  background-image: linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
 +
  border: 1px solid;
 +
  border-color: #DDD #AAA #888 #CCC;
 +
  border-radius: 2px;
 +
  padding: 0 .4em;
 +
  text-shadow: 0 1px rgba(255,255,255,.5);
 +
  white-space: nowrap;
 +
  }
 +
/*
 +
=== IPA ===
 +
s použitím původního stylu
  
table.ombox-notice {
+
deklaraci s inherit je třeba ponechat včetně prázdného komentáře - css hack kvůli IE6
    border: 1px solid #aaa;      /* Gray */
+
*/
}
+
.IPA
table.ombox-speedy {
+
  {
    border: 2px solid #b22222;   /* Red */
+
   cursor: help;
    background: #fee;             /* Pink */
+
   font-family: "Chrysanthi Unicode", "Doulos SIL", Gentium, GentiumAlt, Code2000, "TITUS Cyberbit Basic", "DejaVu Sans", "Bitstream Vera Sans", "Bitstream Cyberbit", "Arial Unicode MS", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "Matrix Unicode";
}
+
   font-family /**/:inherit;
table.ombox-delete {
+
  }
    border: 2px solid #b22222;   /* Red */
+
}
+
table.ombox-content {
+
    border: 1px solid #f28500;   /* Orange */
+
}
+
table.ombox-style {
+
    border: 1px solid #f4c430;   /* Yellow */
+
}
+
table.ombox-move {
+
    border: 1px solid #9932cc;    /* Purple */
+
}
+
table.ombox-protection {
+
    border: 2px solid #bba;       /* Gray-gold */
+
}
+
  
/* Talk page message box styles */
+
a span.IPA
table.tmbox {
+
  {
    margin: 4px 10%;
+
  cursor: pointer;
    border-collapse: collapse;
+
  _cursor: hand;
    border: 1px solid #c0c090;   /* Default "notice" gray-brown */
+
   }
    background: #f8eaba;
+
/*
}
+
=== Pravidla a Pravidlo - @@@ ===
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" class ensures that */
+
*/
    margin: 2px 0;               /* this declaration overrides other styles (including mbox-small above)  */
+
#Sablona--Pravidla
    width: 100%;                 /* For Safari and Opera */
+
  {
}
+
  border: thin solid #aaa;
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
+
  float: right;
    line-height: 1.5em;         /* also "nested", so reset styles that are  */
+
  font-size: smaller;
    font-size: 100%;             /* set in "mbox-small" above.               */
+
  line-height: 1.2;
}
+
  margin: 0 0 0 1em;
 +
  padding: .2em;
 +
  }
  
table.tmbox-speedy {
+
#Sablona--Pravidla span
    border: 2px solid #b22222;    /* Red */
+
   {
    background: #fee;            /* Pink */
+
   font-weight: bold;
}
+
   }
table.tmbox-delete {
+
    border: 2px solid #b22222;    /* Red */
+
}
+
table.tmbox-content {
+
    border: 2px solid #f28500;   /* Orange */
+
}
+
table.tmbox-style {
+
    border: 2px solid #f4c430;   /* Yellow */
+
}
+
table.tmbox-move {
+
    border: 2px solid #9932cc;   /* Purple */
+
}
+
table.tmbox-protection,
+
table.tmbox-notice {
+
    border: 1px solid #c0c090;   /* Gray-brown */
+
}
+
  
/* Disambig and set index box styles */
+
#Sablona--Pravidla ul
table.dmbox {
+
  {
    clear: both;
+
  display: block;
    margin: 0.9em 1em;
+
  line-height: 1.0;
    border-top: 1px solid #ccc;
+
  }
    border-bottom: 1px solid #ccc;
+
    background: transparent;
+
}
+
  
/* Footer and header message box styles */
+
#Sablona--Pravidla ul li
table.fmbox {
+
  {
    clear: both;
+
  border-left-style: solid;
    margin: 0.2em 0;
+
   border-left-width: 1em;
    width: 100%;
+
  display: block;
    border: 1px solid #aaa;
+
  }
    background: #f9f9f9;    /* Default "system" gray */
+
}
+
table.fmbox-system {
+
    background: #f9f9f9;
+
}
+
table.fmbox-warning {
+
    border: 1px solid #bb7070;  /* Dark pink */
+
    background: #ffdbdb;        /* Pink */
+
}
+
table.fmbox-editnotice {
+
    background: transparent;
+
}
+
/* Div based "warning" style fmbox messages. */
+
div.mw-warning-with-logexcerpt,
+
div.mw-lag-warn-high,
+
div.mw-cascadeprotectedwarning,
+
div#mw-protect-cascadeon {
+
    clear: both;
+
    margin: 0.2em 0;
+
    border: 1px solid #bb7070;
+
    background: #ffdbdb;
+
    padding: 0.25em 0.9em;
+
}
+
/* Div based "system" style fmbox messages.
+
   Used in [[MediaWiki:Readonly lag]]. */
+
div.mw-lag-warn-normal,
+
div.fmbox-system {
+
    clear: both;
+
    margin: 0.2em 0;
+
    border: 1px solid #aaa;
+
    background: #f9f9f9;
+
    padding: 0.25em 0.9em;
+
}
+
  
/* These mbox-small classes must be placed after all other
+
div.wikipravidlo
   ambox/tmbox/ombox etc classes. "body.mediawiki" is so
+
   {
   they override "table.ambox + table.ambox" above. */
+
   border-width: thick;
body.mediawiki table.mbox-small {  /* For the "small=yes" option. */
+
  border-style: solid;
    /* @noflip */
+
  margin-bottom: 1em;
    clear: right;
+
  padding: .5em;
    /* @noflip */
+
  text-align: justify;
    float: right;
+
  }
    /* @noflip */
+
    margin: 4px 0 4px 1em;
+
    width: 238px;
+
    font-size: 88%;
+
    line-height: 1.25em;
+
}
+
body.mediawiki table.mbox-small-left {  /* For the "small=left" option. */
+
    /* @noflip */
+
    margin: 4px 1em 4px 0;
+
    width: 238px;
+
    border-collapse: collapse;
+
    font-size: 88%;
+
    line-height: 1.25em;
+
}
+
  
/* Style for compact ambox */
+
div.wikipravidlo-obrazek
/* Hide the images */
+
  {
.compact-ambox table .mbox-image,
+
  float: left;
.compact-ambox table .mbox-imageright,
+
  margin: 0;
.compact-ambox table .mbox-empty-cell {
+
  }
    display: none;
+
}
+
/* Remove borders, backgrounds, padding, etc. */
+
.compact-ambox table.ambox {
+
    border: none;
+
    border-collapse: collapse;
+
    background: transparent;
+
    margin: 0 0 0 1.6em !important;
+
    padding: 0 !important;
+
    width: auto;
+
    display: block;
+
}
+
body.mediawiki .compact-ambox table.mbox-small-left {
+
    font-size: 100%;
+
    width: auto;
+
    margin: 0;
+
}
+
/* Style the text cell as a list item and remove its padding */
+
.compact-ambox table .mbox-text {
+
    padding: 0 !important;
+
    margin: 0 !important;
+
}
+
.compact-ambox table .mbox-text-span {
+
    display: list-item;
+
    line-height: 1.5em;
+
    list-style-type: square;
+
    list-style-image: url(//bits.wikimedia.org/skins/common/images/bullet.gif);
+
}
+
.skin-vector .compact-ambox table .mbox-text-span {
+
    list-style-type: circle;
+
    list-style-image: url(//bits.wikimedia.org/skins/vector/images/bullet-icon.png)
+
}
+
/* Allow for hiding text in compact form */
+
.compact-ambox .hide-when-compact {
+
    display: none;
+
}
+
  
/* Remove default styles for [[MediaWiki:Noarticletext]]. */
+
div.wikipravidlo-obsah
div.noarticletext {
+
  {
    border: none;
+
  margin-left: 70px;
    background: transparent;
+
  }
    padding: 0;
+
}
+
  
/* Hide (formatting) elements from screen, but not from screenreaders */
+
div.wikipravidlo-nadpis
.visualhide {
+
  {
    position: absolute;
+
  font-size: large;
    left: -10000px;
+
  font-weight: bold;
    top: auto;
+
  }
    width: 1px;
+
    height: 1px;
+
    overflow: hidden;
+
}
+
  
/* Bold save button */
+
#Sablona--Pravidlo-zavazne,
#wpSave {
+
#Sablona--Pravidla__Zavazne
    font-weight: bold;
+
  {
}
+
  border-color: #9f9;
 +
  }
  
/* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
+
#Sablona--Pravidlo-doporuceni,
.hiddenStructure {
+
#Sablona--Pravidla__Doporuceni
    display: inline !important;
+
  {
    color: #f00;
+
  border-color: #cf9;
    background-color: #0f0;
+
  }
}
+
  
/* suppress missing interwiki image links where #ifexist cannot
+
#Sablona--Pravidlo-hlasovani,
  be used due to high number of requests see .hidden-redlink on
+
#Sablona--Pravidla__Hlasovani
   [[m:MediaWiki:Common.css]] */
+
   {
.check-icon a.new {
+
  border-color: #ff9;
    display: none;
+
  }
    speak: none;
+
}
+
  
/* Removes underlines from certain links */
+
#Sablona--Pravidlo-navrh,
.nounderlines a,
+
#Sablona--Pravidla__Navrh
.IPA a:link, .IPA a:visited {
+
  {
    text-decoration: none !important;
+
  border-color: #fc9;
}
+
  }
  
/* Standard Navigationsleisten, aka box hiding thingy
+
  #Sablona--Pravidlo-neschvalene,
  from .de. Documentation at [[Wikipedia:NavFrame]]. */
+
#Sablona--Pravidla__Neschvalene
div.NavFrame {
+
  {
    margin: 0;
+
  border-color: #f99;
    padding: 4px;
+
  }
    border: 1px solid #aaa;
+
    text-align: center;
+
    border-collapse: collapse;
+
    font-size: 95%;
+
}
+
div.NavFrame + div.NavFrame {
+
    border-top-style: none;
+
    border-top-style: hidden;
+
}
+
div.NavPic {
+
    background-color: #fff;
+
    margin: 0;
+
    padding: 2px;
+
    /* @noflip */
+
    float: left;
+
}
+
div.NavFrame div.NavHead {
+
    height: 1.6em;
+
    font-weight: bold;
+
    background-color: #ccf;
+
    position: relative;
+
}
+
div.NavFrame p,
+
div.NavFrame div.NavContent,
+
div.NavFrame div.NavContent p {
+
    font-size: 100%;
+
}
+
div.NavEnd {
+
    margin: 0;
+
    padding: 0;
+
    line-height: 1px;
+
    clear: both;
+
}
+
a.NavToggle {
+
    position: absolute;
+
    top: 0;
+
    /* @noflip */
+
    right: 3px;
+
    font-weight: normal;
+
    font-size: 90%;
+
}
+
  
/* Hatnotes and disambiguation notices */
+
#Sablona--Uvaha,
.rellink,
+
#Sablona--Pravidla__Uvaha
.dablink {
+
  {
    font-style: italic;
+
  border-color: #ccc;
    /* @noflip */
+
  }
    padding-left: 1.6em;
+
/*
    margin-bottom: 0.5em;
+
=== Popis souboru ===
}
+
*/
.rellink i,
+
#Sablona--Popis-souboru
.dablink i {
+
  {
    font-style: normal;
+
  width: 100%;
}
+
  }
  
/* Allow transcluded pages to display in lists rather than a table.
+
#Sablona--Popis-souboru td
   Compatible in Firefox; incompatible in IE6. */
+
   {
.listify td   { display: list-item; }
+
   vertical-align: top;
.listify tr   { display: block; }
+
   }
.listify table { display: block; }
+
  
/* Geographical coordinates defaults. See [[Template:Coord/link]]
+
#Sablona--Popis-souboru th
   for how these are used. The classes "geo", "longitude", and
+
   {
   "latitude" are used by the [[Geo microformat]]. */
+
   text-align: right;
.geo-default, .geo-dms, .geo-dec  { display: inline; }
+
  vertical-align: top;
.geo-nondefault, .geo-multi-punct { display: none; }
+
  white-space: nowrap;
.longitude, .latitude            { white-space: nowrap; }
+
  width: 6em;
 +
  }
  
/* When <div class="nonumtoc"> is used on the table of contents,
+
#shared-image-desc .cs
  the ToC will display without numbers */
+
  {
.nonumtoc .tocnumber {
+
     font-size: large;
    display: none;
+
  }
}
+
.nonumtoc #toc ul,
+
.nonumtoc .toc ul {
+
    line-height: 1.5em;
+
    list-style: none none;
+
    margin: .3em 0 0;
+
    padding: 0;
+
}
+
.hlist.nonumtoc #toc ul ul,
+
.hlist.nonumtoc .toc ul ul {
+
     /* @noflip */
+
    margin: 0;
+
}
+
  
/* Allow limiting of which header levels are shown in a TOC;
+
/*
  <div class="toclimit-3">, for instance, will limit to
+
  showing ==headings== and ===headings=== but no further
+
  (as long as there are no =headings= on the page, which
+
  there shouldn't be according to the MoS). */
+
.toclimit-2 .toclevel-1 ul,
+
.toclimit-3 .toclevel-2 ul,
+
.toclimit-4 .toclevel-3 ul,
+
.toclimit-5 .toclevel-4 ul,
+
.toclimit-6 .toclevel-5 ul,
+
.toclimit-7 .toclevel-6 ul {
+
    display: none;
+
}
+
  
/* Styling for Template:Quote */
+
== Specifické styly pro jednotlivé stránky ==
blockquote.templatequote {
+
*/
    margin-top: 0;
+
/*
}
+
=== [[Šablona:OznámeníRC]] ===
blockquote.templatequote div.templatequotecite {
+
*/
    line-height: 1.5em;
+
#Sablona--OznameniRC__IRC
    /* @noflip */
+
  {
    text-align: left;
+
  font-size: 85%;
    /* @noflip */
+
  margin-top: -3.2em;
    padding-left: 1.6em;
+
  text-align: right;
    margin-top: 0;
+
  /* hack pro IE */
}
+
  _margin-top: -2.2em;
 +
  position: relative;
 +
  }
  
/* User block messages */
+
#Sablona--OznameniRC
div.user-block {
+
  {
    padding: 5px;
+
  font-size: 85%;
    margin-bottom: 0.5em;
+
  line-height: 1.15;
    border: 1px solid #A9A9A9;
+
  }
    background-color: #FFEFD5;
+
}
+
  
/* Prevent line breaks in silly places:
+
#Sablona--OznameniRC__Oznameni
   1) Where desired
+
   {
   2) Links when we don't want them to
+
   border: 1px solid #aaa;
   3) Bold "links" to the page itself
+
   border-top: none;
  4) Ref tags with group names <ref group="Note"> --> "[Note 1]" */
+
  margin: 0;
.nowrap,
+
  padding: 0;
.nowraplinks a,
+
  }
.nowraplinks .selflink,
+
sup.reference a {
+
    white-space: nowrap;
+
}
+
/* But allow wrapping where desired: */
+
.wrap,
+
.wraplinks a {
+
    white-space: normal;
+
}
+
  
/* For template documentation */
+
#Sablona--OznameniRC__Oznameni table
.template-documentation {
+
  {
    clear: both;
+
  border-collapse: collapse;
    margin: 1em 0 0 0;
+
  margin: .3em .5em;
    border: 1px solid #aaa;
+
  }
    background-color: #ecfcf4;
+
    padding: 1em;
+
}
+
  
/* Inline divs in ImageMaps (code borrowed from de.wiki) */
+
#Sablona--OznameniRC__Oznameni table tr
.imagemap-inline div {
+
  {
    display: inline;
+
  vertical-align: top;
}
+
  }
  
/* Increase the height of the image upload box */
+
#Sablona--OznameniRC__Oznameni table tr th
#wpUploadDescription {
+
  {
    height: 13em;
+
  text-align: right;
}
+
  white-space: pre;
 +
  }
 +
/*
 +
výchozí zobrazení
 +
*/
 +
#Sablona--OznameniRC__Oznameni_Chybejici-clanky td div.hiddenOverflow
 +
  {
 +
  height: 1.15em;
 +
  }
  
/* Minimum thumb width */
+
#Sablona--OznameniRC__Oznameni_Hlasovani-o-smazani,
.thumbinner {
+
#Sablona--OznameniRC__Oznameni_Reseni-konfliktu
    min-width: 100px;
+
  {  
}
+
  display: none;  
 +
  }
 +
/*
  
/* Makes the background of a framed image white instead of gray.
+
=== [[Special:Recentchanges]] ===
  Only visible with transparent images. */
+
*/
div.thumb .thumbimage {
+
    background-color: #fff;
+
}
+
  
/* The backgrounds for galleries. */
+
.mw-special-Recentchanges .mw-specialpage-summary
div#content .gallerybox div.thumb {
+
  {
    /* Light gray padding */
+
  display:none
    background-color: #F9F9F9;
+
  }
}
+
/* Put a chequered background behind images, only visible if they have transparency.
+
  '.filehistory a img' and '#file img:hover' are handled by MediaWiki core (as of 1.19) */
+
.gallerybox .thumb img {
+
    background: #fff url(//bits.wikimedia.org/skins/common/images/Checker-16x16.png) repeat;
+
}
+
/* But not on articles, user pages, portals or with opt-out. */
+
.ns-0 .gallerybox .thumb img,
+
.ns-2 .gallerybox .thumb img,
+
.ns-100 .gallerybox .thumb img,
+
.nochecker .gallerybox .thumb img {
+
    background: #fff;
+
}
+
  
/* Prevent floating boxes from overlapping any category listings,
+
/*
  file histories, edit previews, and edit [Show changes] views. */
+
#mw-subcategories, #mw-pages, #mw-category-media,
+
#filehistory, #wikiPreview, #wikiDiff {
+
    clear: both;
+
}
+
  
body.rtl #mw-articlefeedbackv5, body.rtl #mw-articlefeedback {
+
=== [[Wikipedie:Údržba]] ===
    display: block;  /* Override inline block mode */
+
společná část pro všechny skiny
    margin-bottom: 1em;
+
*/
    /* @noflip */
+
#Wikipedie--Udrzba__Obsah
    clear: right;    /* Clear any info boxes that stick out */
+
  {
    /* @noflip */
+
  margin: 0 1em 1em 1em;
    float: right;     /* Prevents margin collapsing */
+
  }
}
+
  
/* Selectively hide headers in WikiProject banners */
+
#Wikipedie--Udrzba__Obsah #toc
.wpb .wpb-header            { display: none; }
+
  {
.wpbs-inner .wpb .wpb-header { display: block; }    /* for IE */
+
  font-size: smaller;
.wpbs-inner .wpb .wpb-header { display: table-row; } /* for real browsers */
+
  }
.wpbs-inner .wpb-outside    { display: none; }     /* hide things that should only display outside shells */
+
  
/* Styling for Abuse Filter tags */
+
#Wikipedie--Udrzba__Obsah h2
.mw-tag-markers {
+
  {
    font-family:sans-serif;
+
  display: none;
    font-style:italic;
+
  }
    font-size:90%;
+
}
+
  
/* Hide stuff meant for accounts with special permissions. Made visible again in
+
#Wikipedie--Udrzba__Akce,
   [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-accountcreator.css]],
+
table.udrzbawikipedie
   [[MediaWiki:Group-templateeditor.css]] and [[Mediawiki:Group-autoconfirmed.css]]. */
+
   {
.sysop-show,
+
  background-color: transparent;
.accountcreator-show,
+
  border: none;
.templateeditor-show,
+
  border-collapse: collapse;
.autoconfirmed-show {
+
  border-color: #aaa;
    display: none;
+
   width: 100%;
}
+
  }
 +
 
 +
#Wikipedie--Udrzba__Akce td,
 +
table.udrzbawikipedie td
 +
  {
 +
  padding: 1em;
 +
  vertical-align: top;
 +
  width: 50%;
 +
  }
 +
 
 +
#Wikipedie--Udrzba__Akce div.typ
 +
  {
 +
  border: 1px solid transparent;
 +
  margin-top: .5em;
 +
  }
 +
* html #Wikipedie--Udrzba__Akce div.typ
 +
  {
 +
  border-color: #f8fcff;
 +
  }
 +
 
 +
#Wikipedie--Udrzba__Akce div.popis
 +
  {
 +
  font-size: smaller;
 +
  line-height: 1.1;
 +
  text-align: justify;
 +
  }
  
/**
+
#Wikipedie--Udrzba__Akce div.sekce
* Hide the redlink generated by {{Editnotice}},
+
  {
* this overrides the ".sysop-show { display: none; }" above that applies
+
  font-style: italic;
  * to the same link as well.
+
  }
*
+
  /*
* See [[bugzilla:43013]].
+
=== [[Hlavní strana]] ===
 
  */
 
  */
.ve-ui-mwNoticesPopupTool-item .editnotice-redlink {
+
body.page-Hlavní_strana div.magnify
    display: none !important;
+
  {
 +
  display: none;
 +
  }
 +
 
 +
/* odsazování pro básně */
 +
div.poem.odsad { margin-left: 2.5em; }
 +
 
 +
/* tučné odkazy na portály */
 +
div#portallinks a { font-weight: bold; }
 +
/*
 +
=== flagicon ===
 +
*/
 +
span.flagicon {  
 +
  display: inline-block;
 +
  text-align: center;
 +
  min-width: 24px;
 +
  vertical-align: 5%;
 
}
 
}
  
/* Remove bullets when there are multiple edit page warnings */
+
/*
ul.permissions-errors > li {
+
== Cedule: aplikovaný styl Amboxu ==
    list-style: none none;
+
*/
 +
 +
div.labelced, div.labelced-pageinfo {
 +
  margin: 0 10% 2em 10%;              /* Odrazeni o desetinu sirky z obou stran a mezera dole */
 +
  border: 1px solid #aaa;
 +
  border-left: 10px solid #1e90ff;    /* Vychozi: Modra "poznamka" */
 +
  background: #fbfbfb;
 +
  width: auto;
 +
  overflow: hidden;
 
}
 
}
ul.permissions-errors {
+
div.labelced + div.labelced {               /* Spojeni dvou navazujicich ceduli s jednoduchym rameckem */
    margin: 0;
+
  margin-top: -2em;
 +
  border-top: none;
 
}
 
}
 
+
div.labelced-pageinfo-type-notice {
/* No linewrap on the labels of the login/signup page */
+
  border-left: 10px solid #1e90ff;     /* Modra "poznamka" */
body.page-Special_UserLogin .mw-label label,
+
body.page-Special_UserLogin_signup .mw-label label {
+
    white-space: nowrap;
+
 
}
 
}
 
+
div.labelced-pageinfo-type-speedy {
/* Pie chart test: Transparent borders */
+
  border-left: 10px solid #b22222;    /* Cervena "urgentni" */
.transborder {
+
  background: #fee;                   /* Ruzovy podklad */
    border: solid transparent;
+
 
}
 
}
* html .transborder { /* IE6 */
+
div.labelced-pageinfo-type-delete {
    border: solid #000001;
+
  border-left: 10px solid #b22222;    /* Cervene "smazani" */
     filter: chroma(color=#000001);
+
 
}
 
}
 
+
div.labelced-pageinfo-type-content {
/* Styling for updated markers on watchlist, history and recent/related changes.
+
  border-left: 10px solid #f28500;    /* Oranzova "k obsahu" */
  Bullets are handled in skin-specific stylesheets. */
+
.updatedmarker {
+
    background-color: transparent;
+
     color: #006400;
+
 
}
 
}
li.mw-changeslist-line-watched .mw-title,
+
div.labelced-pageinfo-type-maintenance {
table.mw-changeslist-line-watched .mw-title,
+
  border-left: 10px solid #f4c430;     /* Zluty "vzhled a styl" */
table.mw-enhanced-watch .mw-enhanced-rctime {
+
    font-weight: normal;
+
 
}
 
}
 
+
div.labelced-pageinfo-type-move {
/* Generic class for Times-based serif, texhtml class for inline math */
+
  border-left: 10px solid #9932cc;    /* Fialovy "presun" */
.times-serif,
+
span.texhtml {
+
    font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
+
    font-size: 118%;
+
 
}
 
}
span.texhtml {
+
div.labelced-pageinfo-type-protection {
    white-space: nowrap;
+
  border-left: 10px solid #bba;       /* Sedozlate "zabezpeceni" */
 
}
 
}
span.texhtml span.texhtml {
+
div.labelced_message  {
    font-size: 100%;
+
  border: none;
 +
  padding: .25em 0.5em;
 +
  width: auto;
 +
  text-align: left;
 
}
 
}
 
+
div.labelced hr {                        /* Skryti horizontalni cary mezi textem a poznamkou */
/* Disable kerning, and enable tabular and lining display for digits.
+
  display: none;
  This causes most common fonts to display digits as if they were monospace. */
+
.digits,
+
.texhtml {
+
    -moz-font-feature-settings: "lnum", "tnum";
+
    -webkit-font-feature-settings: "lnum", "tnum";
+
    font-feature-settings: "lnum", "tnum";
+
 
}
 
}
 
+
div.labelced_image {
/* Fix so <syntaxhighlight> tags and .css and .js pages get normal text size.
+
  float: left;
  [[Bugzilla:26204]]. See also [[Wikipedia:Typography#The monospace 'bug']] */
+
  border: none;
div.mw-geshi div,
+
  padding: 2px 0;
div.mw-geshi div pre,
+
  text-align: center;
span.mw-geshi,
+
  width: 48px;
pre.source-css,
+
pre.source-javascript,
+
pre.source-lua {
+
    font-family: monospace, Courier !important;
+
    -moz-tab-size: 4;
+
    -o-tab-size: 4;
+
    tab-size: 4;
+
 
}
 
}
 
+
div.labelced_imageright {                /* Predpripraveno i pro umisteni obrazku vpravo; sablona zatim nepodporuje */
/* Fix styling of transcluded prefindex tables */
+
  float: right;
table#mw-prefixindex-list-table,
+
  border: none;
table#mw-prefixindex-nav-table {
+
  padding: 2px 0;
    width: 98%;
+
  text-align: center;
 +
  width: 48px;
 
}
 
}
 
+
div.labelced_message_headline {
/* For portals, added 2011-12-07 -bv
+
  font-size: 90%;
  On wide screens, show these as two columns
+
  font-weight: bold;
  On narrow and mobile screens, let them collapse into a single column */
+
  margin: 0 0 .25em 52px;
.portal-column-left {
+
  padding: 0 .25em;
    float: left;
+
  text-align: left;
    width: 50%;
+
  width: auto;
 
}
 
}
.portal-column-right {
+
div.labelced_message_text {
    float: right;
+
  font-size: 90%;
    width: 49%;
+
  margin: 0 0 0 52px;
 +
  padding: 0 .25em;
 +
  text-align: left;
 +
  width: auto;
 
}
 
}
.portal-column-left-wide {
+
div.labelced_message_text p,
    float: left;
+
div.labelced_note_text p {
    width: 60%;
+
  margin: 0;
 
}
 
}
.portal-column-right-narrow {
+
div.labelced_message_text p + p,          /* Odsazeni odstavcu ve viceodstavcovem textu zpravy nebo poznamky */
    float: right;
+
div.labelced_note_text p + p {
    width: 39%;
+
  margin-top: .5em;
 
}
 
}
.portal-column-left-extra-wide {
+
div.labelced_note {
    float: left;
+
  padding: .25em 0.5em;
    width: 70%;
+
  background: #eeeeee;
 +
  width: auto;
 
}
 
}
.portal-column-right-extra-narrow {
+
div.labelced_note_text {
    float: right;
+
  font-size: smaller;
    width: 29%;
+
  margin: 0 0 0 52px;
 +
  padding: 0 .25em;
 +
  text-align: left;
 
}
 
}
@media only screen and (max-width: 800px) {
+
div.labelced_message_headline-noimage,
    /* Decouple the columns on narrow screens */
+
div.labelced_message_text-noimage,
    .portal-column-left,
+
div.labelced_message_note-noimage {      /* Zruseni odsazeni zleva v pripade chybejiciho obrazku */
    .portal-column-right,
+
  margin-left: 0;
    .portal-column-left-wide,
+
    .portal-column-right-narrow,
+
    .portal-column-left-extra-wide,
+
    .portal-column-right-extra-narrow {
+
        float: inherit;
+
        width: inherit;
+
    }
+
 
}
 
}
 
+
div.labelced_note div.labelced_image {      /* Skryti obrazku v poznamce */
/* For announcements */
+
  display: none;
#bodyContent .letterhead {
+
    background-image:url('//upload.wikimedia.org/wikipedia/commons/e/e0/Tan-page-corner.png');
+
    background-repeat:no-repeat;
+
    padding: 2em;
+
    background-color: #faf9f2;
+
 
}
 
}
  
Řádka 1 375: Řádka 1 100:
 
}
 
}
  
/* hidden sortkey for tablesorter */
+
/* Styl pro řádkové seznamy s oddělovačem mezi položkami.
td .sortkey,
+
  Upozornění: formátování pomocí hlist nebude fungovat, jestliže výsledný HTML kód
th .sortkey {
+
  nebude obsahovat zalomitelný znak mezi položkami seznamu. K tomu může dojít za
     display: none;
+
  těchto podmínek:
    speak: none;
+
  1) Seznam je vytvořen pomocí wiki syntaxe (tzn. HTML je vytvářeno pomocí
 +
  parser.php) a
 +
  2) HTMLTidy je zakázané nebo nedostupné (jako ve jmenném prostoru Speciální:)
 +
  Problém lze obejít tím že vytvořít seznam formátovaný třídou .hlist pomocí HTML
 +
  namísto wiki syntaxe. Viz také [[:en:Bugzilla:39617]].
 +
  Specifické třídy pro IE8 jsou doplněny pomocí [[MediaWiki:Common.js/IEFixes.js]].
 +
  Poslední aktualizace: 24. leden, 2013
 +
  @source mediawiki.org/wiki/Snippets/Horizontal_lists
 +
  @maintainer: [[User:Edokter]]
 +
  @revision: 3.1
 +
*/
 +
.skin-monobook .hlist dl,
 +
.skin-modern .hlist dl,
 +
.skin-vector .hlist dl {
 +
     line-height: 1.5em;
 
}
 
}
 
+
.hlist dl,
/* Make it possible to hide checkboxes in <inputbox> */
+
.hlist ol,
.inputbox-hidecheckboxes form .inputbox-element {
+
.hlist ul {
     display: none !important;
+
     margin: 0;
 +
    padding: 0;
 
}
 
}
 
+
/* Display list items inline and make them nowrap */
/* Hide charinsert base for those not using the gadget */
+
.hlist dd,
#editpage-specialchars {
+
.hlist dt,
     display: none;
+
.hlist li {
 +
    margin: 0;
 +
    display: inline;
 +
    white-space: nowrap;
 +
}
 +
/* Allow wrapping for list items (in tight spaces) */
 +
.hlist.hwrap dd,
 +
.hlist.hwrap dt,
 +
.hlist.hwrap li {
 +
    white-space: normal;
 +
}
 +
/* Display nested lists inline and allow them to wrap */
 +
.hlist dl dl, .hlist dl ol, .hlist dl ul,
 +
.hlist ol dl, .hlist ol ol, .hlist ol ul,
 +
.hlist ul dl, .hlist ul ol, .hlist ul ul {
 +
     display: inline;
 +
    white-space: normal;
 +
}
 +
/* Generate interpuncts */
 +
.hlist dt:after {
 +
    content: ":";
 +
}
 +
.hlist dd:after,
 +
.hlist li:after {
 +
    content: " ·";
 +
    font-weight: bold;
 +
}
 +
.hlist dd:last-child:after,
 +
.hlist dt:last-child:after,
 +
.hlist li:last-child:after {
 +
    content: none;
 +
}
 +
/* For IE8 */
 +
.hlist dd.hlist-last-child:after,
 +
.hlist dt.hlist-last-child:after,
 +
.hlist li.hlist-last-child:after {
 +
    content: none;
 +
}
 +
/* Add parentheses around nested lists */
 +
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
 +
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
 +
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
 +
    content: "(";
 +
    font-weight: normal;
 +
}
 +
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
 +
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
 +
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
 +
    content: ")";
 +
    font-weight: normal;
 +
}
 +
/* For IE8 */
 +
.hlist dd dd.hlist-last-child:after, .hlist dd dt.hlist-last-child:after, .hlist dd li.hlist-last-child:after,
 +
.hlist dt dd.hlist-last-child:after, .hlist dt dt.hlist-last-child:after, .hlist dt li.hlist-last-child:after,
 +
.hlist li dd.hlist-last-child:after, .hlist li dt.hlist-last-child:after, .hlist li li.hlist-last-child:after {
 +
    content: ")";
 +
    font-weight: normal;
 +
}
 +
/* Put numbers in front of ordered list items */
 +
.hlist.hnum ol {
 +
    counter-reset: list-item;
 +
}
 +
.hlist.hnum ol > li {
 +
    counter-increment: list-item;
 +
}
 +
.hlist.hnum ol > li:before {
 +
    content: counter(list-item) " ";
 +
}
 +
.hlist.hnum dd ol > li:first-child:before,
 +
.hlist.hnum dt ol > li:first-child:before,
 +
.hlist.hnum li ol > li:first-child:before {
 +
    content: "(" counter(list-item) " ";
 
}
 
}
  
/* work-around for [[bugzilla:23965]] (Kaltura advertisement) */
+
/**
.k-player .k-attribution {
+
* @brief Odkazy na sesterské projekty
    visibility: hidden;
+
*
 +
* @author [[meta:User:Danny B.]]
 +
*/
 +
li span.sisterproject {
 +
background-color: transparent;
 +
border: none;
 +
clear: none;
 +
float: none;
 +
font-size: 100%;
 +
margin: 0;
 +
padding: 0;
 +
width: auto;
 
}
 
}
  
/* [[MediaZilla:35337]] */
+
span.sisterproject span.sisterproject_image {
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
+
display: inline-block;
        #p-logo a {
+
height: 16px;
                background-image: url("//upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Wikipedia-logo-v2-en.svg/204px-Wikipedia-logo-v2-en.svg.png") !important;
+
width: 16px;
                background-size: 136px auto;
+
        }
+
}
+
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (min-resolution: 2dppx) {
+
        #p-logo a {
+
                background-image: url("//upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Wikipedia-logo-v2-en.svg/270px-Wikipedia-logo-v2-en.svg.png") !important;
+
                background-size: 135px auto;
+
        }
+
 
}
 
}
 +
 +
.sisterproject_text_target
 +
  {
 +
  font-weight: bold;
 +
  }
 +
.sisterproject-wikinews .sisterproject_text_target {
 +
font-style: italic;
 +
  }

Aktuální verze z 25. 1. 2015, 23:54

/*
'''Toto je CSS stylopis společný pro všechny vzhledy'''
 
Pokud chcete změnit pouze vzhled Monobook, editujte [[MediaWiki:Monobook.css]].
 
Veškeré změny byste měli otestovat pomocí [http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fcs.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DMediaWiki%3ACommon.css%26action%3Draw%26ctype%3Dtext%2Fcss%26usermedium%3Dall&usermedium=all Validátoru W3C].
 */
 /*
== Import testovacích stylů ==
[[MediaWiki:Test.css]] slouží k testování stylů před jejich konečným zakomponováním do globálních stylových předpisů.
 
@import url("/w/index.php?title=MediaWiki:Test.css&action=raw&ctype=text/css");
 
== Globální styly pro [[MediaWiki]] ==
 */
 /*
=== styl pro generovaný obsah ===
 */
 #toc
   {
   clear:left;
   }
 /*
=== zaškrtávací boxy a jejich popisky v [[Speciální:Search]] ===
v rozšířeném módu
 */
 #powersearch label
   {
   white-space: nowrap;
   }
 /*
=== přesměrování v [[Speciální:Allpages]], [[Speciální:Prefixindex]] a kategoriích ===
 */
 .allpagesredirect, .redirect-in-category
   {
   font-style: italic;
   }
 /*
=== bytecounter v [[Speciální:Recentchanges]] a [[Speciální:Watchlist]] ===
 */
 strong.mw-plusminus-neg
   {
   color: #c00;
   }
 
 span.mw-plusminus-neg
   {
   color: #900;
   }
 
 span.mw-plusminus-pos
   {
   color: #060;
   }
 
 strong.mw-plusminus-pos
   {
   color: #060;
   }
 
 span.mw-plusminus-null
   {
   color: #666;
   }
 
 /*
=== značky (RC apod.) ===
 */
.mw-tag-markers {
    font-family:sans-serif;
    font-style:italic;
    font-size:90%;
}
 
 /*
=== varování u editací ===
(editace staré verze, zamčené stránky...)
 */
 .editwarning
   {
   background-color: #ffc;
   border: 3px double #c00;
   margin: 0 0 1em 0;
   padding: .5em 1em;
   }
 /*
=== reference ===
 */
 .references
   {
   font-size: 90%;
   }
 
 ol.references li:target,
 sup.reference:target
   { 
   background-color: #ffc;
   }
 /*
=== bílé pozadí pod průhlednými obrázky v článcích ===
 */
div.thumb img.thumbimage {
    background-color: #fff;
}
 /*
 
== Obecné styly ==
 */
 /*
=== skrývání obsahu ===
umožňuje podmíněné skrývání textu v šablonách (toto použití je '''ZASTARALÉ''')
 */
 .hiddenStructure
   {
   display: none;
   speak: none;
   }
 /*
=== externí odkazy bez ikonky ===
 */
 .plainlinksneverexpand a
   {
   background: none !important;
   padding: 0 !important
   }
 
 .plainlinksneverexpand a.external.text:after
   {
   display: none !important;
   }
 
 .plainlinksneverexpand a.external.autonumber:after
   {
   display: none !important;
   }
 /*
=== vynucené zalomení ===
za plovoucím objektem pomocí <code><nowiki><div class="cleaner"><br /></div></nowiki></code> nebo <code><nowiki><div class="cleaner"><hr /></div></nowiki></code>
 */
 div.cleaner
   {
   clear: both;
   }
 
 div.cleaner br,
 div.cleaner hr
   {
   clear: both;
   display: none;
   }
 /*
=== náhrada za <code><nowiki><abbr></nowiki></code> a <code><nowiki><acronym></nowiki></code> ===
 */
 span.abbr,
 span.acronym
   {
   border-bottom: 1px dotted;
   cursor: help;
   }
 /*
=== nezalamování textu ===
 */
 .nowrap
   {
   white-space: pre;
   }
 /*
=== odsazení ===
 */
 .odsadit
   {
   margin-left: 2em;
   }
 /*
=== skrytí přetékajícího obsahu ===
 */
 .hiddenOverflow
   {
   overflow: hidden;
   }
 /*
=== odrážky v definicích v seznamu definic (např. v [[Portál:Aktuality|Aktuality]]) ===
 */
 .odrazenedefinice dd
   {
   display: list-item;
   list-style-type: square;
   padding: 0;
   }
 /*
=== netučné termíny v seznamu definic (např. v [[Portál:Aktuality|Aktuality]]) ===
 */
 .netucneterminy dt
   {
   font-weight: normal;
   }
 /*
=== varování ===
 */
 span.varovani,
 span.warning
   {
   background-color: #c00;
   color: #ff0;
   font-weight: bold;
   padding: 0 .5em;
   }
 /*
=== zarovnání ===
 */
 .alLeft
   {
   text-align: left;
   }
 
 .alRight
   {
   text-align: right;
   }
 
 .alJustify
   {
   text-align: justify;
   }
 
 sup, sub
   {
   line-height: 1em;
   }
 /*
== Specifické styly pro šablony ==
 */
 /*
=== infobox ===
převzato z en
 */
 .infobox
   {
   background-color: #f9f9f9;
   border: 1px solid #aaa;
   clear: right;
   float: right;
   margin-bottom: .5em;
   margin-left: 1em; 
   padding: .2em;
   }
 
 .infobox caption
   {
   margin-left: inherit;
   }
 
 .infobox tr
   {
   vertical-align: top;
   }
 
 .infobox.bordered
   {
   border-collapse: collapse;
   }
 
 .infobox.bordered td,
 .infobox.bordered th
   {
   border: 1px solid #aaa;
   }
 /*
=== navboxy ===
 */
 
 div.navbox {
   border: 1px solid transparent;
   clear: both;
   font-size: 88%;
   padding: 2px;
   text-align: center;
   margin-top: 2em;
 }
 
 div.navbox + div.navbox {
   margin-top: 0;
 }
 
div.navbox tr.navbox-padding {
   height: 2px;
 }
 
 div.navbox th.navbox-title,
 div.navbox td.navbox-abovebelow,
 div.navbox th {
   padding-left: 1em;
   padding-right: 1em;
   text-align: center;
 }
 
 div.navbox td.navbox-group {
   font-weight: bold;
   padding-left: 1em;
   padding-right: 1em;
   text-align: right;
   white-space: nowrap;
 }
 
 div.navbox table.navbox-navbox,
 div.navbox table.navbox-subgroup,
 div.navbox td.navbox-group + th.navbox-title,
 div.navbox td.navbox-list {
   width: 100%;
 }
 
 div.navbox td.navbox-list {
   padding: 0;
 }
 
 div.navbox td.navbox-group + td.navbox-list {
   border-left: 2px solid transparent;
   text-align: left;
 }
 
 div.navbox td.navbox-list div {
   padding: 0 .25em;
 }
 
 div.navbox td.navbox-group + th.navbox-title {
   border-left: 2px solid transparent;
 }
 
 div.navbox table.navbox-navbox th.navbox-title span.navbox-titletext {
   font-size: 110%;
 }
 
 div.navbox table.navbox-subgroup th.navbox-title span.navbox-titletext {
   font-size: 100%;
 }
 
 div.navbox td.navbox-imageleft {
   padding: 0 2px 0 0;
   width: 0;
 }
 
 div.navbox td.navbox-image {
   padding: 0 0 0 2px;
   width: 0;
 }
 
 div.navbox .collapseButton {
   width: 6em;
 }
 
/* barvy */
 
 div.navbox {
   border-color: #aaa;
 }
 
 div.navbox,
 div.navbox table.navbox-subgroup {
   background-color: #fdfdfd;
 }
 
 div.navbox table.navbox-navbox {
   background-color: transparent;
   color: inherit;
 }
 
 div.navbox td.navbox-group + th.navbox-title ,
 div.navbox td.navbox-group + td.navbox-list {
   border-color: #fdfdfd;
 }
 
 div.navbox th.navbox-title,
 div.navbox th {
   background-color: #e0e0e0;
 }
 
 div.navbox td.navbox-abovebelow,
 div.navbox td.navbox-group,
 div.navbox table.navbox-subgroup td.navbox-title {
   background-color: #e7e7e7;
 }
 
 div.navbox table.navbox-subgroup td.navbox-group,
 div.navbox table.navbox-subgroup td.navbox-abovebelow {
   background-color: #f0f0f0;
 }
 
 div.navbox td.navbox-even {
   background-color: #f7f7f7;
 }
 
 div.navbox td.navbox-odd {
   background-color: transparent;
 }
 
 table.navboxes {
   border: 1px solid #aaa;
   clear: both;
   font-size: 88%;
   text-align: center;
   width: 100%;
 }
 
 table.navboxes th {
   background-color: #e0e0e0;
   padding-left: 1em;
   padding-right: 1em;
 }
 
 table.navboxes .collapseButton {
   width: 6em;
 }
 
 table.navboxes div.navbox {
   font-size: 88%;
 }
 
 table.navboxes + table.navboxes,
 table.navboxes + div.navbox,
 div.navbox + table.navboxes,
 div.navbox + div.navbox {
   margin-top: -1px;
 }
 
 .collapseButton {
   float: right;
   font-weight: normal;
   text-align: right;
   width: auto;
 }
 
 /*
=== locmap ===
 */
 
.location-map img {
    display: block;
 }
 
 /*
=== dokumentace k šablonám ===
 */
 .template-documentation
   {
   background-color: #ffe;
   border: 1px solid #aaa;
   clear: both;
   margin-top: 1em;
   padding: .2em .4em;
   }
 
 /*
=== sesterské projekty ===
 .sisterproject
   {
   background-color: #f9f9f9;
   border: 1px solid #aaa;
   clear: right;
   float: right;
   font-size: smaller;
   margin: 0 0 1em 1em;
   padding: 4px;
   width: 250px;
   }
 
 .sisterproject b
   {
   font-size: small;
   }
 .sisterproject_text_target
   {
   font-weight: bold;
   }
.sisterproject-wikinews .sisterproject_text_target {
	font-style: italic;
}*/
 /*
=== odkazy na média ===
z enwiki
 */
 
/* Class for links with loudspeaker icon next to them */
 
 .audiolink a
    {
    background: url("//upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left   no-repeat !important;
    padding-left: 16px !important;
    padding-right: 0 !important;
    }
 
/* Icons for medialist templates  */
 
 div.listenlist
    {
    background: url("//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Gnome-speakernotes.svg/30px-Gnome-speakernotes.svg.png");
    padding-left: 40px;
    }
 
 div.videolist, div.multivideolist
    {
    background: url("//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Video-x-generic.svg/40px-Video-x-generic.svg.png");
    padding-left: 50px;
    }
 
/* Style rules for media list templates */
 
 div.medialist
    {
    min-height: 50px;
    margin: 1em;
    background-position: top left;
    background-repeat: no-repeat;
    }
 
 div.medialist ul
    {
    list-style-type: none; 
    list-style-image: none;
    margin: 0;
    }
 
 div.medialist ul li
   {
    padding-bottom: 0.5em;
   }
 
 div.medialist ul li li
   {
    font-size: 91%;
    padding-bottom: 0;
    }
 
/*
 
=== různá hlášení ===
'''ZASTARALÉ'''
 */
 .messagebox
   {
   background-color: #f9f9f9;
   border: 1px solid #aaa;
   margin: 0 auto 1em auto;
   padding: .2em;
   text-align: justify;
   width: 85%;
   }
 
 .messagebox.merge
   {
   background-color: #f5edf5;
   border: 1px solid #c9f;
   text-align: center;
   }
 
 .messagebox.cleanup
   {
   background-color: #eef;
   border: 1px solid #99f;
   text-align: center;
   }
 
 .messagebox.standard-talk
   {
   background-color: #f8eaba;
   border: 1px solid #cc9;
   }
 /*
=== upozornění ===
'''ZASTARALÉ'''
 */
 .Talk-Notice
   {
   background-color: #f8eaba;
   border: 1px solid #cc9;
   border-spacing: 3px;
   margin: 0 auto 3px auto;
   width: 85%;
   }
 
 .Talk-Notice td  /* Správné pozadí pro všechny prohlížeče */
   {
   background: inherit;
   }
 /*
=== SHORTTOC ===
 */
#shorttoc,
#shorttoc #toc,
div#content #shorttoc,
div#content #shorttoc #toc
   {
   width: 100%;
   }
 
#shorttoc #toc #toctitle,
#shorttoc h2,
#shorttoc ul,
#shorttoc li,
div#content #shorttoc #toc #toctitle,
div#content #shorttoc h2,
div#content #shorttoc ul,
div#content #shorttoc li
   {
   float: left;
   }
 
#shorttoc #toc span.tocnumber,
#shorttoc #toc .toctoggle,
div#content #shorttoc #toc span.tocnumber,
div#content #shorttoc #toc .toctoggle
   {
   display: none;
   }
 
#shorttoc h2,
#shorttoc ul,
div#content #shorttoc h2,
div#content #shorttoc ul
   {
   margin: 0 .5em 0 0;
   }
 
#shorttoc ul,
div#content #shorttoc ul
   {
   list-style-type: none;
   list-style-image: none;
   }
 
#shorttoc li,
div#content #shorttoc li
   {
   margin-left: .5em;
   }
 
* html #shorttoc td,
* html div#content #shorttoc td
   {
   padding: .5em 0 .5em .5em;
   }
 /*
=== šablony úvodních upozornění ===
(Název, Různé významy - sdílená část)
 */ 
 .uvodni-upozorneni
   {
   font-style: italic;
   margin: 0 0 1em 2em;
   }
 /*
=== Název ===
 */
 #Sablona__Nazev #Sablona__Nazev_Spravny-nazev
   {
   font-weight: bold;
   }
 /*
=== Odmocnina ===
 */
 span.odmocnina
   {
   text-decoration: overline;
   }
 /*
=== Klávesa ===
 */
kbd.Sablona__Klavesa
   {
   background-color: #F7F7F7;
   background-image: -webkit-linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
   background-image: -moz-linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
   background-image: -o-linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
   background-image: linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.1));
   border: 1px solid;
   border-color: #DDD #AAA #888 #CCC;
   border-radius: 2px;
   padding: 0 .4em;
   text-shadow: 0 1px rgba(255,255,255,.5);
   white-space: nowrap;
   }
 /*
=== IPA ===
s použitím původního stylu
 
deklaraci s inherit je třeba ponechat včetně prázdného komentáře - css hack kvůli IE6
 */
 .IPA
   {
   cursor: help;
   font-family: "Chrysanthi Unicode", "Doulos SIL", Gentium, GentiumAlt, Code2000, "TITUS Cyberbit Basic", "DejaVu Sans", "Bitstream Vera Sans", "Bitstream Cyberbit", "Arial Unicode MS", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "Matrix Unicode";
   font-family /**/:inherit;
   }
 
 a span.IPA
   {
   cursor: pointer;
   _cursor: hand;
   }
 /*
=== Pravidla a Pravidlo - @@@ ===
 */
 #Sablona--Pravidla
   {
   border: thin solid #aaa;
   float: right;
   font-size: smaller;
   line-height: 1.2;
   margin: 0 0 0 1em;
   padding: .2em;
   }
 
 #Sablona--Pravidla span
   {
   font-weight: bold;
   }
 
 #Sablona--Pravidla ul
   {
   display: block;
   line-height: 1.0;
   }
 
 #Sablona--Pravidla ul li
   {
   border-left-style: solid;
   border-left-width: 1em;
   display: block;
   }
 
 div.wikipravidlo
   {
   border-width: thick;
   border-style: solid;
   margin-bottom: 1em;
   padding: .5em;
   text-align: justify;
   }
 
 div.wikipravidlo-obrazek
   {
   float: left;
   margin: 0;
   }
 
 div.wikipravidlo-obsah
   {
   margin-left: 70px;
   }
 
 div.wikipravidlo-nadpis
   {
   font-size: large;
   font-weight: bold;
   }
 
 #Sablona--Pravidlo-zavazne,
 #Sablona--Pravidla__Zavazne
   {
   border-color: #9f9;
   }
 
 #Sablona--Pravidlo-doporuceni,
 #Sablona--Pravidla__Doporuceni
   {
   border-color: #cf9;
   }
 
 #Sablona--Pravidlo-hlasovani,
 #Sablona--Pravidla__Hlasovani
   {
   border-color: #ff9;
   }
 
 #Sablona--Pravidlo-navrh,
 #Sablona--Pravidla__Navrh
   {
   border-color: #fc9;
   }
 
 #Sablona--Pravidlo-neschvalene,
 #Sablona--Pravidla__Neschvalene
   {
   border-color: #f99;
   }
 
 #Sablona--Uvaha,
 #Sablona--Pravidla__Uvaha
   {
   border-color: #ccc;
   }
 /*
=== Popis souboru ===
 */
 #Sablona--Popis-souboru
   {
   width: 100%;
   }
 
 #Sablona--Popis-souboru td
   {
   vertical-align: top;
   }
 
 #Sablona--Popis-souboru th
   {
   text-align: right;
   vertical-align: top;
   white-space: nowrap;
   width: 6em;
   }
 
#shared-image-desc .cs
  {
    font-size: large;
  }
 
 /*
 
== Specifické styly pro jednotlivé stránky ==
 */
 /*
=== [[Šablona:OznámeníRC]] ===
 */
 #Sablona--OznameniRC__IRC 
   {
   font-size: 85%;
   margin-top: -3.2em;
   text-align: right;
   /* hack pro IE */
   _margin-top: -2.2em;
   position: relative;
   }
 
 #Sablona--OznameniRC
   {
   font-size: 85%;
   line-height: 1.15;
   }
 
 #Sablona--OznameniRC__Oznameni
   {
   border: 1px solid #aaa;
   border-top: none;
   margin: 0;
   padding: 0;
   }
 
 #Sablona--OznameniRC__Oznameni table
   {
   border-collapse: collapse;
   margin: .3em .5em;
   }
 
 #Sablona--OznameniRC__Oznameni table tr
   {
   vertical-align: top;
   }
 
 #Sablona--OznameniRC__Oznameni table tr th
   {
   text-align: right;
   white-space: pre;
   }
 /*
výchozí zobrazení
 */
 #Sablona--OznameniRC__Oznameni_Chybejici-clanky td div.hiddenOverflow
   {
   height: 1.15em;
   }
 
 #Sablona--OznameniRC__Oznameni_Hlasovani-o-smazani,
 #Sablona--OznameniRC__Oznameni_Reseni-konfliktu 
   { 
   display: none; 
   }
 /*
 
=== [[Special:Recentchanges]] ===
 */
 
.mw-special-Recentchanges .mw-specialpage-summary
  {
  display:none
  }
 
 /*
 
=== [[Wikipedie:Údržba]] ===
společná část pro všechny skiny
 */
 #Wikipedie--Udrzba__Obsah
   {
   margin: 0 1em 1em 1em;
   }
 
 #Wikipedie--Udrzba__Obsah #toc
   {
   font-size: smaller;
   }
 
 #Wikipedie--Udrzba__Obsah h2
   {
   display: none;
   }
 
 #Wikipedie--Udrzba__Akce,
 table.udrzbawikipedie
   {
   background-color: transparent;
   border: none;
   border-collapse: collapse;
   border-color: #aaa;
   width: 100%;
   }
 
 #Wikipedie--Udrzba__Akce td,
 table.udrzbawikipedie td
   {
   padding: 1em;
   vertical-align: top;
   width: 50%;
   }
 
 #Wikipedie--Udrzba__Akce div.typ
   {
   border: 1px solid transparent;
   margin-top: .5em;
   }
 * html #Wikipedie--Udrzba__Akce div.typ
   {
   border-color: #f8fcff;
   }
 
 #Wikipedie--Udrzba__Akce div.popis
   {
   font-size: smaller;
   line-height: 1.1;
   text-align: justify;
   }
 
 #Wikipedie--Udrzba__Akce div.sekce
   {
   font-style: italic;
   }
 /*
=== [[Hlavní strana]] ===
 */
 body.page-Hlavní_strana div.magnify
   {
   display: none;
   }
 
 /* odsazování pro básně */
 div.poem.odsad { margin-left: 2.5em; }
 
 /* tučné odkazy na portály */
 div#portallinks a { font-weight: bold; }
/*
=== flagicon ===
*/
span.flagicon { 
  display: inline-block;
  text-align: center;
  min-width: 24px;
  vertical-align: 5%;
}
 
/*
== Cedule: aplikovaný styl Amboxu ==
*/
 
div.labelced, div.labelced-pageinfo {
  margin: 0 10% 2em 10%;               /* Odrazeni o desetinu sirky z obou stran a mezera dole */
  border: 1px solid #aaa;
  border-left: 10px solid #1e90ff;     /* Vychozi: Modra "poznamka" */
  background: #fbfbfb;
  width: auto;
  overflow: hidden;
}
div.labelced + div.labelced {                /* Spojeni dvou navazujicich ceduli s jednoduchym rameckem */
  margin-top: -2em;
  border-top: none;
}
div.labelced-pageinfo-type-notice {
  border-left: 10px solid #1e90ff;     /* Modra "poznamka" */
}
div.labelced-pageinfo-type-speedy {
  border-left: 10px solid #b22222;     /* Cervena "urgentni" */
  background: #fee;                    /* Ruzovy podklad */
}
div.labelced-pageinfo-type-delete {
  border-left: 10px solid #b22222;     /* Cervene "smazani" */
}
div.labelced-pageinfo-type-content {
  border-left: 10px solid #f28500;     /* Oranzova "k obsahu" */
}
div.labelced-pageinfo-type-maintenance {
  border-left: 10px solid #f4c430;     /* Zluty "vzhled a styl" */
}
div.labelced-pageinfo-type-move {
  border-left: 10px solid #9932cc;     /* Fialovy "presun" */
}
div.labelced-pageinfo-type-protection {
  border-left: 10px solid #bba;        /* Sedozlate "zabezpeceni" */
}
div.labelced_message  {
  border: none;
  padding: .25em 0.5em;
  width: auto;
  text-align: left;
}
div.labelced hr {                         /* Skryti horizontalni cary mezi textem a poznamkou */
  display: none;
}
div.labelced_image {
  float: left;
  border: none;
  padding: 2px 0;
  text-align: center;
  width: 48px;
}
div.labelced_imageright {                 /* Predpripraveno i pro umisteni obrazku vpravo; sablona zatim nepodporuje */
  float: right;
  border: none;
  padding: 2px 0;
  text-align: center;
  width: 48px;
}
div.labelced_message_headline {
  font-size: 90%;
  font-weight: bold;
  margin: 0 0 .25em 52px;
  padding: 0 .25em;
  text-align: left;
  width: auto;
}
div.labelced_message_text {
  font-size: 90%;
  margin: 0 0 0 52px;
  padding: 0 .25em;
  text-align: left;
  width: auto;
}
div.labelced_message_text p,
div.labelced_note_text p {
  margin: 0;
}
div.labelced_message_text p + p,          /* Odsazeni odstavcu ve viceodstavcovem textu zpravy nebo poznamky */
div.labelced_note_text p + p {
  margin-top: .5em;
}
div.labelced_note {
  padding: .25em 0.5em;
  background: #eeeeee;
  width: auto;
}
div.labelced_note_text {
  font-size: smaller;
  margin: 0 0 0 52px;
  padding: 0 .25em;
  text-align: left;
}
div.labelced_message_headline-noimage,
div.labelced_message_text-noimage,
div.labelced_message_note-noimage {       /* Zruseni odsazeni zleva v pripade chybejiciho obrazku */
  margin-left: 0;
}
div.labelced_note div.labelced_image {       /* Skryti obrazku v poznamce */
  display: none;
}
 
/* Tree style lists */
.treeview ul {
    padding: 0;
    margin: 0;
}
.treeview li {
    padding: 0;
    margin: 0;
    list-style-type: none;
    list-style-image: none;
    zoom: 1; /* BE KIND TO IE6 */;
}
.treeview li li {
    background: url("//upload.wikimedia.org/wikipedia/commons/f/f2/Treeview-grey-line.png") no-repeat 0 -2981px;
    /* @noflip */
    padding-left: 20px;
    text-indent: 0.3em;
}
.treeview li li.lastline {
    background-position: 0 -5971px
}
.treeview li.emptyline > ul {
    /* @noflip */
    margin-left: -1px;
}
.treeview li.emptyline > ul > li:first-child {
    background-position: 0 9px
}
 
/* Styl pro řádkové seznamy s oddělovačem mezi položkami.
   Upozornění: formátování pomocí hlist nebude fungovat, jestliže výsledný HTML kód
   nebude obsahovat zalomitelný znak mezi položkami seznamu. K tomu může dojít za
   těchto podmínek:
   1) Seznam je vytvořen pomocí wiki syntaxe (tzn. HTML je vytvářeno pomocí
   parser.php) a
   2) HTMLTidy je zakázané nebo nedostupné (jako ve jmenném prostoru Speciální:)
   Problém lze obejít tím že vytvořít seznam formátovaný třídou .hlist pomocí HTML
   namísto wiki syntaxe. Viz také [[:en:Bugzilla:39617]].
   Specifické třídy pro IE8 jsou doplněny pomocí [[MediaWiki:Common.js/IEFixes.js]].
   Poslední aktualizace: 24. leden, 2013
   @source mediawiki.org/wiki/Snippets/Horizontal_lists
   @maintainer: [[User:Edokter]]
   @revision: 3.1
*/
.skin-monobook .hlist dl,
.skin-modern .hlist dl,
.skin-vector .hlist dl {
    line-height: 1.5em;
}
.hlist dl,
.hlist ol,
.hlist ul {
    margin: 0;
    padding: 0;
}
/* Display list items inline and make them nowrap */
.hlist dd,
.hlist dt,
.hlist li {
    margin: 0;
    display: inline;
    white-space: nowrap;
}
/* Allow wrapping for list items (in tight spaces) */
.hlist.hwrap dd,
.hlist.hwrap dt,
.hlist.hwrap li {
    white-space: normal;
}
/* Display nested lists inline and allow them to wrap */
.hlist dl dl, .hlist dl ol, .hlist dl ul,
.hlist ol dl, .hlist ol ol, .hlist ol ul,
.hlist ul dl, .hlist ul ol, .hlist ul ul {
    display: inline;
    white-space: normal;
}
/* Generate interpuncts */
.hlist dt:after {
    content: ":";
}
.hlist dd:after,
.hlist li:after {
    content: " ·";
    font-weight: bold;
}
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
    content: none;
}
/* For IE8 */
.hlist dd.hlist-last-child:after,
.hlist dt.hlist-last-child:after,
.hlist li.hlist-last-child:after {
    content: none;
}
/* Add parentheses around nested lists */
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
    content: "(";
    font-weight: normal;
}
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
    content: ")";
    font-weight: normal;
}
/* For IE8 */
.hlist dd dd.hlist-last-child:after, .hlist dd dt.hlist-last-child:after, .hlist dd li.hlist-last-child:after,
.hlist dt dd.hlist-last-child:after, .hlist dt dt.hlist-last-child:after, .hlist dt li.hlist-last-child:after,
.hlist li dd.hlist-last-child:after, .hlist li dt.hlist-last-child:after, .hlist li li.hlist-last-child:after {
    content: ")";
    font-weight: normal;
}
/* Put numbers in front of ordered list items */
.hlist.hnum ol {
    counter-reset: list-item;
}
.hlist.hnum ol > li {
    counter-increment: list-item;
}
.hlist.hnum ol > li:before {
    content: counter(list-item) " ";
}
.hlist.hnum dd ol > li:first-child:before,
.hlist.hnum dt ol > li:first-child:before,
.hlist.hnum li ol > li:first-child:before {
    content: "(" counter(list-item) " ";
}
 
/**
 * @brief Odkazy na sesterské projekty
 * 
 * @author [[meta:User:Danny B.]]
 */
li span.sisterproject {
	background-color: transparent;
	border: none;
	clear: none;
	float: none;
	font-size: 100%;
	margin: 0;
	padding: 0;
	width: auto;
}
 
span.sisterproject span.sisterproject_image {
	display: inline-block;
	height: 16px;
	width: 16px;
}
 
.sisterproject_text_target
   {
   font-weight: bold;
   }
.sisterproject-wikinews .sisterproject_text_target {
	font-style: italic;
   }