Jump to content

MediaWiki:Vector.css: Difference between revisions

From WikiGor
Content deleted Content added
No edit summary
Tag: Reverted
Undo revision 913 by Gvihar (talk)
Tag: Undo
 
Line 1: Line 1:
/* पुराना Vector (Legacy) logo override */
/* Vector Legacy के header logo को कस्टम SVG से बदलें */
/* पहले default background हटाएं */
#p-logo a {
#p-logo a {
background: none !important;
}
/* फिर custom SVG background सेट करें */
#p-logo .mw-logo {
background-image: url("/resources/assets/wikilogo.svg") !important;
background-image: url("/resources/assets/wikilogo.svg") !important;
background-repeat: no-repeat !important;
background-size: contain !important;
background-size: contain !important;
width: 200px !important; /* अपनी लोगो width */
width: 200px; /* अपनी लोगो की width यहाँ लिखें */
height: 60px !important; /* अपनी लोगो height */
height: 60px; /* अपनी लोगो की height यहाँ लिखें */
text-indent: -9999px !important;
text-indent: -9999px; /* लिंक टेक्स्ट छुपाए */
}
/* लिंक टेक्स्ट पूरी तरह छुपाने के लिए */
#p-logo .mw-logo a {
text-indent: -9999px !important;
}
}

Latest revision as of 09:37, 23 July 2025

/* Vector Legacy के header logo को कस्टम SVG से बदलें */
#p-logo a {
  background-image: url("/resources/assets/wikilogo.svg") !important;
  background-size: contain !important;
  width: 200px;    /* अपनी लोगो की width यहाँ लिखें */
  height: 60px;    /* अपनी लोगो की height यहाँ लिखें */
  text-indent: -9999px;  /* लिंक टेक्स्ट छुपाए */
}