MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(25 intermediate revisions by the same user not shown)
Line 8: Line 8:
}
}


/* Make drawer always visible > 1300px */
@media screen and ( min-width: 1300px ) {
    :root {
        --fixed-menu-width: 240px;
    }
   
    .citizen-page-container {
        /* Reserve space for drawer on both sides */
        margin-left: calc( var(--header-size) + var(--fixed-menu-width) );
        margin-right: var(--fixed-menu-width); /* New right margin */
    }
   
    .citizen-drawer__button {
        /* Hide drawer button */
        display: none;
    }
   
    .citizen-drawer__card {
        bottom: 0;
        /* Put drawer behind other header cards */
        z-index: -1;
        margin: 0;
        /* Compensate header border */
        margin-left: 1px;
        padding: 0;
        min-width: auto;
        width: var(--fixed-menu-width);
        max-height: none;
        border-right: 1px solid var(--border-color-base);
        border-radius: 0;
        background-color: var(--color-surface-0);
        box-shadow: none;
        /* Force drawer to show */
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        visibility: visible !important;
        left: 56px;
    }
   
    .citizen-drawer__card > * {
        /* Force drawer content to show */
        opacity: 1 !important;
    }


    .citizen-drawer__header {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }


/* Ensure the container for the namespaces and views tabs is a flex container */
    .citizen-drawer__logo {
#p-namespaces .vector-menu-content,
        /* Hide drawer header logo */
#p-views .vector-menu-content {
        display: none;
    display: flex;
    }
     justify-content: flex-start; /* Align items to the left, adjust as needed */
 
     align-items: center;
    .citizen-drawer__siteinfo .mw-logo-wordmark {
    list-style-type: none;
        font-size: 1.25rem;
     padding: 0;
    }
     margin: 0;
 
    .citizen-siteStats {
        font-size: 0.8125rem;
    }
 
    #citizen-siteStats__item--images,
    #citizen-siteStats__item--users {
        /* Hide image and user stats to make space */
        display: none;
     }
   
    .citizen-drawer__menu {
        padding-left: var(--space-xs);
        padding-right: var(--space-xs);
        grid-template-columns: 1fr;
    }
}
 
/* Custom button color adjustments */
body .mw-ui-button, body .mw-ui-button.mw-ui-progressive:not(:disabled) {
    background-color: #4A90E2 !important; /* New button background color */
     color: #FFFFFF !important; /* New button text color */
    border-color: #357ABD !important; /* Optional: change border color to match */
}
 
body .mw-ui-button:hover, .mw-ui-button.mw-ui-progressive:not(:disabled):hover {
     background-color: #357ABD !important; /* Darker shade on hover */
     color: #FFFFFF !important; /* Maintaining text color on hover */
}
}


/* Target the specific tabs to ensure they are positioned correctly */
body .mw-ui-button:active, .mw-ui-button.mw-ui-progressive:not(:disabled):active {
#ca-nstab-main,
     background-color: #285C8E !important; /* Even darker on active/click */
#ca-talk {
     color: #FFFFFF !important; /* Text color on active */
     order: -1; /* Move these items to the beginning */
     margin-right: 10px; /* Adjust spacing as needed */
}
}


/* Optional: Adjust individual tab spacing */
/* Regular state of the input fields */
#p-namespaces ul li,
.mw-ui-input {
#p-views ul li {
     color: #4A77E2 !important; /* Changes text color while typing to blue */
     margin-right: 10px; /* Adjust this value as needed */
    padding: 0; /* Ensure no extra padding */
}
}


/* General styles to ensure consistent appearance */
/* Focus state to enhance visibility when the input field is active */
#p-namespaces ul,
.mw-ui-input:focus {
#p-views ul {
     color: #285C8E !important; /* Changes text color to a darker shade of blue when focused */
     display: flex;
     background-color: #E0EFFF !important; /* Optional: changes background to a lighter blue for focus */
     align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
}


/* Align the tabs container to ensure it occupies the full width */
/* Hover state for better user interaction feedback */
#p-personal,
.mw-ui-input:hover {
#p-namespaces,
     color: #357ABD !important; /* Slightly darker text color on hover */
#p-views {
     display: inline-block;
    vertical-align: top;
}
}
/* Adjust placeholder text color for better visibility */
.mw-ui-input::placeholder {
    color: #2D5DA1 !important; /* Darker shade of blue for placeholder text */
}
/* Change the color of horizontal lines under <h2> headings */
h2 {
    border-bottom: 2px solid #333333; /* Dark grey line */
    padding-bottom: 4px; /* Space between the text and the line */

Latest revision as of 01:08, 26 June 2024

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

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.sci-fi-font {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

/* Make drawer always visible > 1300px */
@media screen and ( min-width: 1300px ) {
    :root {
        --fixed-menu-width: 240px;
    }
    
    .citizen-page-container {
        /* Reserve space for drawer on both sides */
        margin-left: calc( var(--header-size) + var(--fixed-menu-width) );
        margin-right: var(--fixed-menu-width); /* New right margin */
    }
    
    .citizen-drawer__button {
        /* Hide drawer button */
        display: none;
    }
    
    .citizen-drawer__card {
        bottom: 0;
        /* Put drawer behind other header cards */
        z-index: -1;
        margin: 0;
        /* Compensate header border */
        margin-left: 1px;
        padding: 0;
        min-width: auto;
        width: var(--fixed-menu-width);
        max-height: none;
        border-right: 1px solid var(--border-color-base);
        border-radius: 0;
        background-color: var(--color-surface-0);
        box-shadow: none;
        /* Force drawer to show */
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        visibility: visible !important;
        left: 56px;
    }
    
    .citizen-drawer__card > * {
        /* Force drawer content to show */
        opacity: 1 !important;
    }

    .citizen-drawer__header {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    .citizen-drawer__logo {
        /* Hide drawer header logo */
        display: none;
    }

    .citizen-drawer__siteinfo .mw-logo-wordmark {
        font-size: 1.25rem;
    }

    .citizen-siteStats {
        font-size: 0.8125rem;
    }

    #citizen-siteStats__item--images,
    #citizen-siteStats__item--users {
        /* Hide image and user stats to make space */
        display: none;
    }
    
    .citizen-drawer__menu {
        padding-left: var(--space-xs);
        padding-right: var(--space-xs);
        grid-template-columns: 1fr;
    }
}

/* Custom button color adjustments */
body .mw-ui-button, body .mw-ui-button.mw-ui-progressive:not(:disabled) {
    background-color: #4A90E2 !important; /* New button background color */
    color: #FFFFFF !important; /* New button text color */
    border-color: #357ABD !important; /* Optional: change border color to match */
}

body .mw-ui-button:hover, .mw-ui-button.mw-ui-progressive:not(:disabled):hover {
    background-color: #357ABD !important; /* Darker shade on hover */
    color: #FFFFFF !important; /* Maintaining text color on hover */
}

body .mw-ui-button:active, .mw-ui-button.mw-ui-progressive:not(:disabled):active {
    background-color: #285C8E !important; /* Even darker on active/click */
    color: #FFFFFF !important; /* Text color on active */
}

/* Regular state of the input fields */
.mw-ui-input {
    color: #4A77E2 !important; /* Changes text color while typing to blue */
}

/* Focus state to enhance visibility when the input field is active */
.mw-ui-input:focus {
    color: #285C8E !important; /* Changes text color to a darker shade of blue when focused */
    background-color: #E0EFFF !important; /* Optional: changes background to a lighter blue for focus */
}

/* Hover state for better user interaction feedback */
.mw-ui-input:hover {
    color: #357ABD !important; /* Slightly darker text color on hover */
}

/* Adjust placeholder text color for better visibility */
.mw-ui-input::placeholder {
    color: #2D5DA1 !important; /* Darker shade of blue for placeholder text */
}

/* Change the color of horizontal lines under <h2> headings */
h2 {
    border-bottom: 2px solid #333333; /* Dark grey line */
    padding-bottom: 4px; /* Space between the text and the line */