MediaWiki:Vector.css: Difference between revisions

From PZwiki
(added curved borders for file toc)
m (combine catlinks & filetoc)
 
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* All CSS here will be loaded for users of the Vector skin */


/* Category links */
/* rounded corners for category links & file table of contents */
.catlinks {
.catlinks,
border-radius: var(--border-radius);
}
 
/* File table of contents */
#filetoc {
#filetoc {
border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}
}

Latest revision as of 06:54, 29 March 2024

/* All CSS here will be loaded for users of the Vector skin */

/* rounded corners for category links & file table of contents */
.catlinks,
#filetoc {
    border-radius: var(--border-radius);
}