MediaWiki:Vector.css: Difference between revisions

From The Talos Principle Wiki
Logo link is brown
Hide [ edit | edit source ] links on h3
 
(4 intermediate revisions by the same user not shown)
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 */


/* Move vector-page-toolbar above vector-page-titlebar in a grid */
  .vector-page-titlebar {
    grid-row: 2;
  }
  .vector-page-toolbar {
    grid-row: 1;
  }




Line 6: Line 14:
   #p-navigation .vector-menu-content-list {
   #p-navigation .vector-menu-content-list {
     list-style: none;
     list-style: none;
     padding: 0;
     padding-left: 3px;
    margin-left: -8px;
     padding-right: 3px;
     margin-right: -6px;
   }
   }
    
    
   #p-navigation .vector-menu-content-list .mw-list-item {
   #p-navigation .vector-menu-content-list .mw-list-item {
     margin-bottom: 1px; /* Adjust the spacing between buttons as needed */
     margin-bottom: 6px; /* Adjust the spacing between buttons as needed */
   }
   }
    
    
Line 63: Line 70:
     color: #b95;
     color: #b95;
   }
   }
/* Hide "Switch to old look" link */
  div.vector-main-menu-action-opt-out { display: none; }
/* Hide [ edit | edit source ] links on h3 and below */
h3 span.mw-editsection {
    display: none !important;
}
h4 span.mw-editsection {
    display: none !important;
}
h5 span.mw-editsection {
    display: none !important;
}
h6 span.mw-editsection {
    display: none !important;
}

Latest revision as of 15:42, 22 November 2023

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


/* Move vector-page-toolbar above vector-page-titlebar in a grid */
  .vector-page-titlebar {
    grid-row: 2;
  }
  .vector-page-toolbar {
    grid-row: 1;
  }


/* Customizing the navigation list in the sidebar */
  #p-navigation .vector-menu-content-list {
    list-style: none;
    padding-left: 3px;
    padding-right: 3px;
  }
  
  #p-navigation .vector-menu-content-list .mw-list-item {
    margin-bottom: 6px; /* Adjust the spacing between buttons as needed */
  }
  
  #p-navigation .vector-menu-content-list a {
    display: block; /* Set to block for full width */
    padding: 8px 6px; /* Adjust the padding as needed */
    text-decoration: none;
    font-size: 110%;
    background-color: #dc9; /* Set your desired background color */
    color: #000; /* Set your desired text color */
    border: 1px solid #b95; /* Set your desired border color */
    border-radius: 4px; /* Adjust the border radius as needed */
    transition: background-color 0.3s ease;
  }
  
  #p-navigation .vector-menu-content-list a:hover {
    background-color: #b95; /* Set your desired background color on hover */
    border-color: #dc9; /* Set your desired border color on hover */
    color: #fff; /* Set your desired text color on hover */
  }

  /* Tools links */
  #p-tb a {
    color: #874; /* Set your desired text color */
  }
  #p-tb a:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
    color: #b95; /* Set your desired text color on hover */
  }
/* End navbar customization */

/* Customizing border around pages */
  .vector-legacy-menu-tabs-legacy, .vector-menu-tabs-legacy a, #mw-head .vector-menu-dropdown-legacy .vector-menu-heading-legacy {
    background-image: linear-gradient(to bottom, rgba(176, 144, 80, 0) 0, #b95 100%);
  }
  .vector-legacy-menu-tabs-legacy li {
    background-image: linear-gradient(to top, #CFAF6C 0, #EEEBE1 1px, #ffffff 100%);
  }
  .mw-body { 
    border-color: #b95;
  }
/* End border customization */


/* Logo link always brown */
  a.mw-logo, strong.mw-wordmark { 
     color: #B0925C;
  }
  a.mw-logo:hover {
     color: #b95;
  }


/* Hide "Switch to old look" link */
  div.vector-main-menu-action-opt-out { display: none; }


/* Hide [ edit | edit source ] links on h3 and below */
h3 span.mw-editsection {
    display: none !important;
}
h4 span.mw-editsection {
    display: none !important;
}
h5 span.mw-editsection {
    display: none !important;
}
h6 span.mw-editsection {
    display: none !important;
}