MediaWiki:Common.css: Difference between revisions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 24: | Line 24: | ||
} | } | ||
.mode-nav-item { | |||
position: relative; | |||
/* Ensure this matches other navigation items */ | |||
padding: 0.5em 0; | |||
} | |||
. | .mode-text { | ||
cursor: pointer; | |||
color: #54595d; | |||
} | } | ||
.mode- | .mode-text:hover { | ||
color: #202122; | color: #202122; | ||
} | } | ||
.mode- | .mode-menu { | ||
display: none; | display: none; | ||
position: absolute; | |||
left: 0; | |||
top: 100%; | |||
background: white; | |||
border: 1px solid #a2a9b1; | |||
border-radius: 2px; | |||
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | |||
z-index: 1000; | |||
min-width: 120px; | |||
} | } | ||
.mode- | .mode-menu.visible { | ||
display: block; | display: block; | ||
} | } | ||
Line 48: | Line 58: | ||
.mode-option { | .mode-option { | ||
display: block; | display: block; | ||
padding: | padding: 6px 12px; | ||
color: # | color: #202122; | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
.mode-option:hover { | .mode-option:hover { | ||
text-decoration: | background-color: #f8f9fa; | ||
text-decoration: none; | |||
} | } | ||
.mode-option.active { | .mode-option.active { | ||
background-color: #eaecf0; | |||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
Revision as of 18:01, 6 February 2025
/* CSS placed here will be applied to all skins */
.infobox {
background: #eee;
border: 1px solid #aaa;
float: right;
margin: 0 0 1em 1em;
padding: 1em;
width: 300px;
}
.infobox-title {
font-size: 2em;
text-align: center;
}
.infobox-image {
text-align: center;
}
.infobox-table th {
text-align: left;
vertical-align: top;
width: 120px;
}
.infobox-table td {
vertical-align: top;
}
.mode-nav-item {
position: relative;
/* Ensure this matches other navigation items */
padding: 0.5em 0;
}
.mode-text {
cursor: pointer;
color: #54595d;
}
.mode-text:hover {
color: #202122;
}
.mode-menu {
display: none;
position: absolute;
left: 0;
top: 100%;
background: white;
border: 1px solid #a2a9b1;
border-radius: 2px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
z-index: 1000;
min-width: 120px;
}
.mode-menu.visible {
display: block;
}
.mode-option {
display: block;
padding: 6px 12px;
color: #202122;
text-decoration: none;
}
.mode-option:hover {
background-color: #f8f9fa;
text-decoration: none;
}
.mode-option.active {
background-color: #eaecf0;
font-weight: bold;
}
/* Content marking styles */
.manga-content {
border-left: 2px solid #36c;
padding-left: 0.5em;
margin: 0.5em 0;
}
.anime-content {
padding-left: 0.5em;
margin: 0.5em 0;
}