MediaWiki:Common.css: Difference between revisions

mNo edit summary
mNo edit summary
Line 1,123: Line 1,123:


/* Base tab style */
/* Base tab style */
.tabber__tab {
.tabber__tabs .tabber__tab {
   padding:8px 14px;
   padding:8px 14px;
   border:1px solid var(--ooo-border);
   border:1px solid var(--ooo-border);
Line 1,133: Line 1,133:


/* Hover */
/* Hover */
.tabber__tab:hover {
.tabber__tabs .tabber__tab:hover {
   background:rgba(245,196,0,0.12);
   background:rgba(245,196,0,0.12);
   border:2px solid rgba(245,196,0,0.75);
   border:2px solid rgba(245,196,0,0.75);
Line 1,140: Line 1,140:


/* Active */
/* Active */
.tabber__tab--active {
.tabber__tabs .tabber__tab--active {
   background:rgba(245,196,0,0.18);
   background:rgba(245,196,0,0.18);
   border:2px solid rgba(245,196,0,0.95);
   border:2px solid rgba(245,196,0,0.95);
Line 1,146: Line 1,146:
}
}


/* Link color fix */
/* Link colors */
.tabber__tab a {
.tabber__tabs .tabber__tab a,
.tabber__tabs .tabber__tab a:visited {
   color:inherit !important;
   color:inherit !important;
   text-decoration:none;
   text-decoration:none;
}
.tabber__tab a:visited {
  color:inherit !important;
}
.tabber__tab--active a {
  color:inherit !important;
}
}