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

Материал из СисадминВики песочница
Перейти к: навигация, поиск
м (возврат обрамления кнопки)
Строка 6: Строка 6:
 
color: white;
 
color: white;
 
float: right;
 
float: right;
margin: 0px;
+
margin: 0 0 -15px 0;
 
padding: 0px;
 
padding: 0px;
 
background: #164EAF;
 
background: #164EAF;

Версия 12:23, 30 сентября 2016

/**
 * Slide panel
 * @author ALEX, based on code by mwjames
 */
div.slideTab {
	color: white;
	float: right;
	margin: 0 0 -15px 0;
	padding: 0px;
	background: #164EAF;
 	display: block;	 
	cursor:pointer;	
	border: 2px solid #fff;	
	border-right: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	border-radius: 5px 0 0 5px;
	box-shadow: 0px 1px 5px 0px #000;
	filter: progid:DXImageTransform.Microsoft.DropShadow(sProperties);
	-webkit-box-shadow: 0px 1px 5px 0px #000;
	-moz-box-shadow: 0px 1px 5px 0px #000;
}

div.slideContent {
	position: relative;
	overflow: hidden;
	height: 100%;
	background: transparent;
	background: #fff;
	border: 0 solid #000;
	float:right;
	width: 100%;
	margin-left: 10px;	
}

table.slideTable {        
	background: #164eaf;
	border: 1px solid black;
	margin: 0 0 0 0px;
	padding: 3px 3px 3px 3px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: 100%;
}
 
table.slideTable tr {
    background: #fff;
	position: relative
}
 
table.slideTable td {
	padding: 5px;
    vertical-align: top !important;
    max-height:500px;
}
 
table.slideTable th {
	background: #164eaf;
	border: 0px;
	padding: 5px;
	font-size: 120%;
	font-weight: bold;
	font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
	color: white;
    vertical-align: top !important;
}

table.slideTable th a {
	color: #fff;
}

.sticky { /* -pm- Нужно? */
    position: fixed;
    top: 0px;
    z-index: 101;    
}

.common {
    display: inline;
    position: relative;
    float: right;
}

.block1 {
    float: right;
    width:50px
}

.block2 {
    float: right;    
}
/* end of slide panel section */