MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "mw.loader.using('mediawiki.util', function () { $(function () { if ($('#handwiki-topnav').length) { return; } var sidebarLinks = []; $('#mw-panel a').each(function () { var text = $(this).text().trim(); var href = $(this).attr('href'); if (text && href) { sidebarLinks.push({ text: text, href: href }); }..." |
No edit summary |
||
| Line 1: | Line 1: | ||
/* HandWiki Stage top roll-down navigation */ | |||
#handwiki-topnav { | |||
display: flex; | |||
gap: 12px; | |||
align-items: flex-start; | |||
margin: 0 0 12px 0; | |||
padding: 8px 10px; | |||
border-bottom: 1px solid #c8ccd1; | |||
background: #fff8cc; | |||
font-size: 14px; | |||
} | |||
.handwiki-dropdown { | |||
position: relative; | |||
display: inline-block; | |||
} | |||
.handwiki-dropdown-button { | |||
border: 1px solid #a2a9b1; | |||
background: #ffffff; | |||
padding: 6px 12px; | |||
cursor: pointer; | |||
min-width: 170px; | |||
text-align: left; | |||
font-weight: bold; | |||
} | |||
.handwiki-dropdown-content { | |||
display: none; | |||
position: absolute; | |||
z-index: 9999; | |||
min-width: 220px; | |||
background: #ffffff; | |||
border: 1px solid #a2a9b1; | |||
box-shadow: 0 2px 6px rgba(0,0,0,0.18); | |||
padding: 8px 0; | |||
} | |||
.handwiki-dropdown:hover .handwiki-dropdown-content { | |||
display: block; | |||
} | |||
.handwiki-dropdown-content a { | |||
display: block; | |||
padding: 6px 12px; | |||
text-decoration: none; | |||
} | |||
.handwiki-dropdown-content a:hover { | |||
background: #eaecf0; | |||
} | |||
Revision as of 16:49, 9 May 2026
/* HandWiki Stage top roll-down navigation */
#handwiki-topnav {
display: flex;
gap: 12px;
align-items: flex-start;
margin: 0 0 12px 0;
padding: 8px 10px;
border-bottom: 1px solid #c8ccd1;
background: #fff8cc;
font-size: 14px;
}
.handwiki-dropdown {
position: relative;
display: inline-block;
}
.handwiki-dropdown-button {
border: 1px solid #a2a9b1;
background: #ffffff;
padding: 6px 12px;
cursor: pointer;
min-width: 170px;
text-align: left;
font-weight: bold;
}
.handwiki-dropdown-content {
display: none;
position: absolute;
z-index: 9999;
min-width: 220px;
background: #ffffff;
border: 1px solid #a2a9b1;
box-shadow: 0 2px 6px rgba(0,0,0,0.18);
padding: 8px 0;
}
.handwiki-dropdown:hover .handwiki-dropdown-content {
display: block;
}
.handwiki-dropdown-content a {
display: block;
padding: 6px 12px;
text-decoration: none;
}
.handwiki-dropdown-content a:hover {
background: #eaecf0;
}