Module:NavboxMobile/styles.css: Difference between revisions
EnWikiAdmin (talk | contribs) Created page with " .navbox { box-sizing: border-box; border: 1px solid #a2a9b1; width: 100%; clear: both; font-size: 88%; text-align: center; padding: 1px; margin: 1em auto 0; →Prevent preceding content from clinging to navboxes: } .navbox .navbox { margin-top: 0; →No top margin for nested navboxes: } .navbox + .navbox, →TODO: remove first line after transclusions have updated: .navbox + .navboxMobile-styles + .navbox { margin-top: -1px; /* Single pixel border betw..." |
EnWikiAdmin (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
. | .navboxMobile { | ||
box-sizing: border-box; | box-sizing: border-box; | ||
border: 1px solid #a2a9b1; | border: 1px solid #a2a9b1; | ||
Line 11: | Line 11: | ||
} | } | ||
. | .navboxMobile .navboxMobile { | ||
margin-top: 0; /* No top margin for nested navboxes */ | margin-top: 0; /* No top margin for nested navboxes */ | ||
} | } | ||
. | .navboxMobile + .navboxMobile, /* TODO: remove first line after transclusions have updated */ | ||
. | .navboxMobile + .navboxMobile-styles + .navboxMobile { | ||
margin-top: -1px; /* Single pixel border between adjacent navboxes */ | margin-top: -1px; /* Single pixel border between adjacent navboxes */ | ||
} | } | ||
Line 39: | Line 39: | ||
} | } | ||
. | .navboxMobile, | ||
.navboxMobile-subgroup { | .navboxMobile-subgroup { | ||
background-color: #fdfdfd; | background-color: #fdfdfd; | ||
Line 90: | Line 90: | ||
/* TODO: figure out how to remove reliance on td as structure */ | /* TODO: figure out how to remove reliance on td as structure */ | ||
. | .navboxMobile .hlist td dl, | ||
. | .navboxMobile .hlist td ol, | ||
. | .navboxMobile .hlist td ul, | ||
. | .navboxMobile td.hlist dl, | ||
. | .navboxMobile td.hlist ol, | ||
. | .navboxMobile td.hlist ul { | ||
padding: 0.125em 0; | padding: 0.125em 0; | ||
} | } | ||
. | .navboxMobile .navbar { | ||
display: block; | display: block; | ||
font-size: 100%; | font-size: 100%; | ||
Line 119: | Line 119: | ||
@media print { | @media print { | ||
body.ns-0 . | body.ns-0 .navboxMobile { | ||
display: none !important; | display: none !important; | ||
} | } | ||
} | } |
Revision as of 08:34, 21 November 2024
.navboxMobile {
box-sizing: border-box;
border: 1px solid #a2a9b1;
width: 100%;
clear: both;
font-size: 88%;
text-align: center;
padding: 1px;
margin: 1em auto 0; /* Prevent preceding content from clinging to navboxes */
}
.navboxMobile .navboxMobile {
margin-top: 0; /* No top margin for nested navboxes */
}
.navboxMobile + .navboxMobile, /* TODO: remove first line after transclusions have updated */
.navboxMobile + .navboxMobile-styles + .navboxMobile {
margin-top: -1px; /* Single pixel border between adjacent navboxes */
}
.navboxMobile-inner,
.navboxMobile-subgroup {
width: 100%;
}
.navboxMobile-group,
.navboxMobile-title,
.navboxMobile-abovebelow {
padding: 0.25em 1em;
line-height: 1.5em;
text-align: center;
}
.navboxMobile-group {
white-space: nowrap;
/* @noflip */
text-align: right;
}
.navboxMobile,
.navboxMobile-subgroup {
background-color: #fdfdfd;
}
.navboxMobile-list {
line-height: 1.5em;
border-color: #fdfdfd; /* Must match background color */
}
.navboxMobile-list-with-group {
text-align: left;
border-left-width: 2px;
border-left-style: solid;
}
/* cell spacing for navbox cells */
/* Borders above 2nd, 3rd, etc. rows */
/* TODO: figure out how to replace tr as structure;
* with div structure it should be just a matter of first-child */
tr + tr > .navboxMobile-abovebelow,
tr + tr > .navboxMobile-group,
tr + tr > .navboxMobile-image,
tr + tr > .navboxMobile-list {
border-top: 2px solid #fdfdfd; /* Must match background color */
}
.navboxMobile-title {
background-color: #ccf; /* Level 1 color */
}
.navboxMobile-abovebelow,
.navboxMobile-group,
.navboxMobile-subgroup .navboxMobile-title {
background-color: #ddf; /* Level 2 color */
}
.navboxMobile-subgroup .navboxMobile-group,
.navboxMobile-subgroup .navboxMobile-abovebelow {
background-color: #e6e6ff; /* Level 3 color */
}
.navboxMobile-even {
background-color: #f7f7f7;
}
.navboxMobile-odd {
background-color: transparent;
}
/* TODO: figure out how to remove reliance on td as structure */
.navboxMobile .hlist td dl,
.navboxMobile .hlist td ol,
.navboxMobile .hlist td ul,
.navboxMobile td.hlist dl,
.navboxMobile td.hlist ol,
.navboxMobile td.hlist ul {
padding: 0.125em 0;
}
.navboxMobile .navbar {
display: block;
font-size: 100%;
}
.navboxMobile-title .navbar {
/* @noflip */
float: left;
/* @noflip */
text-align: left;
/* @noflip */
margin-right: 0.5em;
}
/** T367463 */
body.skin--responsive .navboxMobile-image img {
max-width: none !important;
}
@media print {
body.ns-0 .navboxMobile {
display: none !important;
}
}