MediaWiki:Refreshed.css: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
No edit summary
(Undo revision 685 by MacFan4000 (talk))
Line 7: Line 7:
background-image: -webkit-linear-gradient(right,#F49B00 0,#FFCF0B 50%,#F49B00 100%);
background-image: -webkit-linear-gradient(right,#F49B00 0,#FFCF0B 50%,#F49B00 100%);
background-image: linear-gradient(to left,#F49B00 0,#FFCF0B 50%,#F49B00 100%);
background-image: linear-gradient(to left,#F49B00 0,#FFCF0B 50%,#F49B00 100%);
}
#echo {
float: right; /* so Echo doesn't push menu items out of the header when the mobile logo is enabled */
padding-top: 1em;
line-height: 0;
}
#echo li {
display: inline;
margin-left: 0.5em;
line-height: 1;
}
#pt-mytalk a.mw-echo-alert { /* "you have new messages" alert in the personal tools dropdown */
white-space: normal;
color: #555555 !important; /* 6 digits instead of 3 because Echo's CSS uses 6 to define the color in the standard state (!important to override color on hover) */
}
.pt-mytalk a.mw-echo-alert:hover {
background-color: #FAB951;
}
#pt-notifications-personaltools { /* "Notifications" item in the personal tools dropdown */
display: none;
}
#pt-notifications {
display: inline;
float: right;
margin: 0.9em 0 0 0;
}
.mw-echo-overlay {
position: fixed !important;
z-index: 999999 !important;
width: 20em !important;
top: 3em !important;
left: auto !important;
right: 1em !important;
}
.mw-echo-overlay:before,
.mw-echo-overlay::before {
left: 114px !important; /* centering dropdown arrow on notifications badge */
}
#echo .oo-ui-labelElement-label {
font-size: 1.125em;
}
.mw-echo-ui-notificationBadgeButtonPopupWidget .oo-ui-popupWidget-footer .oo-ui-buttonElement > .oo-ui-buttonElement-button {
line-height: 1.5 !important;
}
.mw-echo-state .mw-echo-content {
font-size: 0.875em;
line-height: 1.5;
}
}

Revision as of 13:55, 15 May 2017

#header-wrapper {
	background-color: #103ca2;
	background-image: -webkit-gradient(linear,0% 0%,100% 0%,color-stop(0,#F49B00),color-stop(50%,#FFCF0B),color-stop(100%,#F49B00));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F49B00',endColorstr='#FFCF0B',GradientType=1);
	-ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=1,StartColorStr=#F49B00,EndColorStr=#FFCF0B)";
	background-image: -webkit-gradient(linear,right top,left top,color-stop(0,#F49B00),color-stop(50%,#FFCF0B),to(#F49B00));
	background-image: -webkit-linear-gradient(right,#F49B00 0,#FFCF0B 50%,#F49B00 100%);
	background-image: linear-gradient(to left,#F49B00 0,#FFCF0B 50%,#F49B00 100%);
}