MediaWiki:Common.css: различия между версиями

Материал из Ботвапедии
Перейти к: навигация, поиск
Строка 16: Строка 16:
 
         width: auto;
 
         width: auto;
 
}
 
}
 
/* Popup */
 
#popup {
 
position: absolute;
 
display: none;
 
z-index: 10;
 
overflow: hidden;
 
opacity: .9;
 
filter: alpha(opacity=90);
 
width: 320px;
 
border: 1px solid #7b5a34;
 
}
 
 
#popup_title {
 
font-size: 11px;
 
background: #d4b387;
 
color: black;
 
border-bottom: 1px solid #7b5a34;
 
}
 
 
#popup_img {font-size: 11px;
 
background: #DBCBAD;
 
color: black;
 
width: 60px;
 
vertical-align: top;
 
}
 
 
#popup_body {
 
font-size: 11px;
 
background: #DBCBAD;
 
color: black;
 
width: 260px;
 
vertical-align: top;
 
text-align: left;
 
}
 
 
span.polzun img { height: 18px;}
 
.scroll tr td input, .scroll tr td select {border: solid #ccc 1px; background: #fff; width: 100px; opacity: .5; filter: alpha(opacity=60);}
 
 
.scroll1 tr td input, .scroll1 tr td select {border: solid #ccc 1px; background: #fff; filter: alpha(opacity=60);}
 

Версия 00:45, 6 сентября 2012

/** Collapsible tables *********************************************************
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *                         http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
 *  Maintainers: [[en:User:R. Koot]]
 */
 
table.collapsed tr.collapsible {
        display: none;
}
 
.collapseButton {               /* 'show'/'hide' buttons created dynamically by the             */
        float: right;           /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
        font-weight: normal;    /* are styled here so they can be customised.             */
        text-align: right;
        width: auto;
}