User:FakerofDeadlock/common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* | /* Sidebar and Bottom Panel Background */ | ||
#mw-panel, | |||
background-color: # | #footer { | ||
background-color: #d2b48c; /* Replace with your darker tan color */ | |||
} | } | ||
/* | /* Sidebar small sliver issue fix */ | ||
#mw-panel { | |||
border-right: 1px solid #d2b48c; /* Ensures no lighter tan slivers are visible */ | |||
} | } | ||
/* | /* Category Bar Background */ | ||
# | #catlinks { | ||
background-color: # | background-color: #d2b48c; /* Replace with your darker tan color */ | ||
} | } | ||
/* | /* Restore Original Search Bar Outline */ | ||
# | #searchInput { | ||
border-width: 1px; /* Reverts any thickness change */ | |||
border-color: initial; /* Restores original outline color */ | |||
border-color: | |||
} | } | ||
/* | /* Fix "More" Button Background */ | ||
.vector-menu- | .vector-menu-dropdown-noicon .vector-menu-content { | ||
background-color: # | background-color: #d2b48c; /* Darker tan color */ | ||
} | } | ||
.vector- | /* Button Link Colors (Same as Read, Edit, etc.) */ | ||
#p-personal ul > li > a, | |||
.vector-tab, | |||
#mw-panel .portal h3, | |||
.vector-menu-content { | |||
color: #8b4513; /* Chocolate brown color */ | |||
} | } | ||
/* | /* Fix Sidebar Remaining Sections */ | ||
# | #mw-panel .portal { | ||
background-color: # | background-color: #d2b48c; /* Darker tan for all sections of the sidebar */ | ||
} | } | ||
/* Fix | /* Fix the Magnifying Glass Icon Background */ | ||
# | #searchButton { | ||
background-color: # | background-color: #d2b48c; /* Apply the darker tan color */ | ||
} | } | ||
/* | /* Fix Category Bar Background */ | ||
# | #catlinks { | ||
background-color: # | background-color: #d2b48c; /* Apply the darker tan color */ | ||
} | } | ||
/* | /* Ensure No Lighter Tan on Sidebar or Bottom Panel */ | ||
#mw-panel, | |||
color: # | #footer, | ||
#catlinks, | |||
.vector-menu-dropdown-noicon .vector-menu-content { | |||
background-color: #d2b48c !important; | |||
} | |||
/* Restore Search Bar Outline Color */ | |||
#searchInput { | |||
border-color: #a2a9b1; /* Default outline color for MediaWiki search bar */ | |||
} | } |
Revision as of 21:23, 30 August 2024
/* Sidebar and Bottom Panel Background */
#mw-panel,
#footer {
background-color: #d2b48c; /* Replace with your darker tan color */
}
/* Sidebar small sliver issue fix */
#mw-panel {
border-right: 1px solid #d2b48c; /* Ensures no lighter tan slivers are visible */
}
/* Category Bar Background */
#catlinks {
background-color: #d2b48c; /* Replace with your darker tan color */
}
/* Restore Original Search Bar Outline */
#searchInput {
border-width: 1px; /* Reverts any thickness change */
border-color: initial; /* Restores original outline color */
}
/* Fix "More" Button Background */
.vector-menu-dropdown-noicon .vector-menu-content {
background-color: #d2b48c; /* Darker tan color */
}
/* Button Link Colors (Same as Read, Edit, etc.) */
#p-personal ul > li > a,
.vector-tab,
#mw-panel .portal h3,
.vector-menu-content {
color: #8b4513; /* Chocolate brown color */
}
/* Fix Sidebar Remaining Sections */
#mw-panel .portal {
background-color: #d2b48c; /* Darker tan for all sections of the sidebar */
}
/* Fix the Magnifying Glass Icon Background */
#searchButton {
background-color: #d2b48c; /* Apply the darker tan color */
}
/* Fix Category Bar Background */
#catlinks {
background-color: #d2b48c; /* Apply the darker tan color */
}
/* Ensure No Lighter Tan on Sidebar or Bottom Panel */
#mw-panel,
#footer,
#catlinks,
.vector-menu-dropdown-noicon .vector-menu-content {
background-color: #d2b48c !important;
}
/* Restore Search Bar Outline Color */
#searchInput {
border-color: #a2a9b1; /* Default outline color for MediaWiki search bar */
}