MediaWiki: Common.css: Difference between revisions

From Cookipedia
Jump to: navigation, search
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 9: Line 9:


.YumBox {
.YumBox {
     width: 140px !important; /* Adjust the width as needed */
     width: 180px !important; /* Adjust the width as needed */
     height: 80px !important; /* Adjust the height as needed */
     height: 100px !important; /* Adjust the height as needed */
     overflow: hidden !important; /* Prevent scroll bars */
     overflow: hidden !important; /* Prevent scroll bars */
     display: inline-block; /* Ensures proper alignment */
     display: inline-block; /* Ensures proper alignment */
     box-sizing: border-box; /* Consistent sizing */
     box-sizing: border-box; /* Consistent sizing */
}
}

Revision as of 15:15, 17 November 2024

/* CSS placed here will be applied to all skins */

/* JP Added to block whatlinkshere link on toolbar to (hopefully) prevent link appearing on pages and being constantly crawled */

/*#t-whatlinkshere { display: none; } - hides the link What links here.*/
/* enable showing Categories */
#catlinks { display:block }
/* Yummly button 'enlgarger' */

.YumBox {
    width: 180px !important; /* Adjust the width as needed */
    height: 100px !important; /* Adjust the height as needed */
    overflow: hidden !important; /* Prevent scroll bars */
    display: inline-block; /* Ensures proper alignment */
    box-sizing: border-box; /* Consistent sizing */
}