Merge "Refactor TimelessTemplate.php"

isekai
jenkins-bot 8 years ago committed by Gerrit Code Review
commit 3937ef2f4d

File diff suppressed because it is too large Load Diff

@ -6,7 +6,7 @@ $( function() {
// Open the various menus
$( '#user-tools h2' ).on( 'click', function( e ) {
if ( $( window ).width() < 851 ) {
$( '#p-personal-inner, #menus-cover' ).fadeToggle( toggleTime );
$( '#personal-inner, #menus-cover' ).fadeToggle( toggleTime );
}
} );
$( '#site-navigation h2' ).on( 'click', function( e ) {
@ -35,7 +35,7 @@ $( function() {
// Close menus on click outside
$( document ).click( function( e ) {
if ( $( e.target ).closest( '#menus-cover' ).length > 0 ) {
$( '#p-personal-inner' ).fadeOut( toggleTime );
$( '#personal-inner' ).fadeOut( toggleTime );
$( '.sidebar-inner' ).fadeOut( toggleTime );
$( '#menus-cover' ).fadeOut( toggleTime );
}
@ -44,10 +44,9 @@ $( function() {
// Include alternative closing method for ios
$( window ).on( 'swiperight', function( e ) {
if ( $( window ).width() < 851 ) {
$( '#p-personal-inner' ).fadeOut( toggleTime );
$( '#personal-inner' ).fadeOut( toggleTime );
$( '.sidebar-inner' ).fadeOut( toggleTime );
$( '#menus-cover' ).fadeOut( toggleTime );
}
} );
} );

@ -179,7 +179,7 @@ div.suggestions {
list-style: none;
padding: 0;
}
#footer-icons {
.footer-icons {
float: right;
margin: 0 0 0 1em;
@ -187,11 +187,14 @@ div.suggestions {
margin: 0 0 1em 0;
}
}
}
#footer-places li {
.footer-places li {
display: inline;
padding-right: 1em;
}
#lastmod {
display: block;
}
}
/* Content */
@ -481,13 +484,13 @@ table.wikitable > * > tr > th {
/* Echo */
#p-personal h2,
#p-personal-extra,
#p-personal-extra ul,
#p-personal-extra li {
#personal h2,
#personal-extra,
#personal-extra ul,
#personal-extra li {
display: inline-block;
}
#p-personal-extra {
#personal-extra {
// Position and keep it from randomly overflowing massively for no apparent reason
margin: .7em 0 -2em 0;

@ -104,7 +104,7 @@
// Personal menu
#p-personal {
#personal {
float: right;
h2 span {
@ -129,6 +129,6 @@
.extension-icons #p-search {
margin-right: 11em;
}
#p-personal-extra {
#personal-extra {
margin-left: -2.5em;
}

@ -66,7 +66,7 @@
display: none !important;
}
#p-personal {
#personal {
display: inline-block;
position: relative;
padding-left: 1.5em;
@ -108,7 +108,7 @@
}
/* Echo stuff */
#p-personal-extra {
#personal-extra {
float: left;
margin-left: -4.5em;
}

@ -19,6 +19,7 @@
#mw-page-header-links #ca-view,
#mw-header-nav-hack,
#page-tools h2,
#other-languages h2,
#p-logo {
display: none;
}
@ -128,7 +129,7 @@
.mw-echo-ui-notificationBadgeButtonPopupWidget {
z-index: 2;
}
#p-personal-extra {
#personal-extra {
position: absolute;
top: .9em;
right: 11.75em;

Loading…
Cancel
Save