Difference between revisions of "MediaWiki:Common.css"

From UCSB Nanofab Wiki
Jump to navigation Jump to search
 
(34 intermediate revisions by 4 users not shown)
Line 1: Line 1:
  +
/* Site-wide mods */
/** Collapsible tables *********************************************************
 
  +
*
 
  +
/* disable "discussion" link on every page */
* Description: Allows tables to be collapsed, showing only the header. See
 
  +
li#ca-talk { display:none!important; }
* http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
 
  +
* Maintainers: [[en:User:R. Koot]]
 
  +
/*-------------------------------*/
*/
 
  +
 
  +
table.collapsed tr.collapsible {
 
  +
display: none;
 
  +
/* MediaWiki:Sidebar CSS rules */
  +
  +
/* remove the first Section title causing a blank space */
  +
div#p-InvisibleMenu {
 
display:none!important;
 
}
 
}
  +
 
  +
/* targets the div holding the logo */
.collapseButton { /* 'show'/'hide' buttons created dynamically by the */
 
  +
div#p-logo {
float: left; /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
 
  +
/* CSS goes here */
font-weight: normal; /* are styled here so they can be customised. */
 
text-align: right;
 
width: auto;
 
 
}
 
}
  +
/*
 
  +
/* targets the link inside the logo div */
*.tablecollapse span.collapsible-toggle{ float:right; }
 
  +
div#plogo a.mw-wiki-logo {
*
 
  +
*.collapse span.collapsible-toggle { float: left; }
 
  +
}
*/
 
  +
  +
  +
/* Bold specific sidebar items: */
  +
li#n-Lab-Rules a {
  +
font-weight: bold;
  +
}
  +
  +
li#n-COVID-19-Protocols a {
  +
font-weight: bold;
  +
}
  +
  +
  +
  +
/*-----------------------------------*/
  +
/* Sidebar title elements */
  +
  +
/* THESE ARE OVERRIDDEN BY ANOTHER RULE `@media screen #mw-panel .portal {}` */
  +
  +
h3#p-navigation-label {
  +
  +
}
  +
h3#p-Equipment-label {
  +
}
  +
h3#p-Recipes_and_Data-label {
  +
  +
}
  +
h3#p-Facility_Data-label {
  +
  +
}
  +
h3#p-Editing_Tools-label {
  +
  +
}
  +
h3#p-p-tb-label {
  +
  +
}
  +
  +
/* For the spacing between elements, you want to target all li elements inside of the section divs and increase the padding top and bottom on those elements */
  +
div#p-navigation li {
  +
  +
}
  +
  +
div#p-Equipment li {
  +
  +
  +
}
  +
  +
/* etc... */

Latest revision as of 12:54, 27 August 2021

/* Site-wide mods */

/* disable "discussion" link on every page */
li#ca-talk { display:none!important; }

/*-------------------------------*/



/* MediaWiki:Sidebar CSS rules */

/* remove the first Section title causing a blank space */
div#p-InvisibleMenu {
display:none!important;
}

/* targets the div holding the logo */
div#p-logo {
    /* CSS goes here */
}

/* targets the link inside the logo div */
div#plogo a.mw-wiki-logo {

}


/* Bold specific sidebar items: */
li#n-Lab-Rules a {
   font-weight: bold;
}

li#n-COVID-19-Protocols a {
   font-weight: bold;
}



/*-----------------------------------*/
/* Sidebar title elements */

/* THESE ARE OVERRIDDEN BY ANOTHER RULE `@media screen #mw-panel .portal {}`  */

h3#p-navigation-label {

}
h3#p-Equipment-label {
}
h3#p-Recipes_and_Data-label {
    
}
h3#p-Facility_Data-label {
    
}
h3#p-Editing_Tools-label {
    
}
h3#p-p-tb-label {
    
}

/* For the spacing between elements, you want to target all li elements inside of the section divs and increase the padding top and bottom on those elements */
div#p-navigation li {

}

div#p-Equipment li {


}

/* etc... */