Module:NavboxMobile/styles.css: Difference between revisions

From Ikwipedia
No edit summary
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 9: Line 9:
     margin: 0 auto; /* Reduced top margin */
     margin: 0 auto; /* Reduced top margin */
     background-color: #fdfdfd;
     background-color: #fdfdfd;
}
/* Ensure the title cell allows for absolute positioning */
.navboxMobile-title {
    position: relative;  /* Already set in the Lua code, but good to confirm in CSS */
}
}


Line 17: Line 22:
}
}


.navboxMobile-title div {
    text-align: center;
}


.navboxMobile td, .navboxMobile th {
.navboxMobile td, .navboxMobile th {
Line 23: Line 31:
     overflow-wrap: anywhere;
     overflow-wrap: anywhere;
}
}


/* Above and Below Content */
/* Above and Below Content */
Line 36: Line 43:
/* Group Content */
/* Group Content */
.navboxMobile-group-content {
.navboxMobile-group-content {
   
     text-align: center; /* Centered text */
     text-align: center; /* Centered text */
     font-size: 1em;
     font-size: 1em;
}
}


/* Style the navbar within the title cell */
.navboxMobile-navbar {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.2em;  /* Adjust as needed for alignment */
    /* Optional: Set background or text styles if necessary */
}
/* Ensure the title text is centered across the full width */
.navboxMobile-title > div {
    text-align: center;
    margin: 0 auto;
}


/* Title Row */
/* Title Row */
.navboxMobile-title {
.navboxMobile-title {
    position: relative;
     align-items: center;
     align-items: center;
     justify-content: center;
     justify-content: center;
    position: relative;
     padding: 0.1em; /* Unified padding */
     padding: .1em; /* Unified padding */
     text-align: center;
     text-align: center;
     background-color: #ccf;
     background-color: #ccf;
Line 57: Line 77:
.navboxMobile-group-level1 {
.navboxMobile-group-level1 {
     background-color: #ddf;
     background-color: #ddf;
     margin-top: 0.05em;
     margin: 0.05em 0; /* Symmetric top and bottom margins */
     padding: 0.1em; /* Unified padding */
     padding: 0.08em; /* Reduced padding */
     border-top: 2px solid white;
     border-top: 3px solid white;
     border-bottom: 1px solid white;
     border-bottom: 2px solid white;
     border-left: 2px solid white;
     border-left: 2px solid white;
     border-right: 2px solid white;
     border-right: 2px solid white;
Line 68: Line 88:
.navboxMobile-group-level2 {
.navboxMobile-group-level2 {
     background-color: #e6e6ff;
     background-color: #e6e6ff;
     margin-top: 0.05em;
     margin: 0.05em 0; /* Symmetric margins */
     padding: 0.1em; /* Unified padding */
     padding: 0.08em; /* Reduced padding */
     border-top: 2px solid white;
     border-top: 3px solid white;
     border-bottom: 1px solid white;
     border-bottom: 2px solid white;
     border-left: 2px solid white;
     border-left: 2px solid white;
     border-right: 2px solid white;
     border-right: 2px solid white;
Line 80: Line 100:
.navboxMobile-group-level3 {
.navboxMobile-group-level3 {
     background-color: #e6e6ff;
     background-color: #e6e6ff;
     margin-top: 0.05em;
     margin: 0.05em 0; /* Symmetric margins */
     padding: 0.1em; /* Slightly smaller padding for third-level */
     padding: 0.08em; /* Reduced padding */
     border-top: 2px solid white;
     border-top: 3px solid white;
     border-bottom: 1px solid white;
     border-bottom: 2px solid white;
     border-left: 2px solid white;
     border-left: 2px solid white;
     border-right: 2px solid white;
     border-right: 2px solid white;
Line 94: Line 114:
     font-size: 1em;
     font-size: 1em;
     text-align: center;
     text-align: center;
     padding: 0.25em; /* Inner spacing */
     padding-top: 0.1em;     /* Added vertical padding */
    padding-bottom: 0.1em;  /* Added vertical padding */
    padding-left: 2px;
    padding-right: 2px;
     white-space: normal;
     white-space: normal;
     word-wrap: break-word;
     word-wrap: break-word;
     overflow-wrap: break-word;
     overflow-wrap: break-word;
     border-top: 1px solid white;
     border-top: 2px solid white;
     border-bottom: 2px solid white;
     border-bottom: 3px solid white;
     border-left: 2px solid white;
     border-left: 2px solid white;
     border-right: 2px solid white;
     border-right: 2px solid white;
Line 110: Line 133:
     margin: 0 auto;
     margin: 0 auto;
     border: 2px solid white; /* Uniform 2px border */
     border: 2px solid white; /* Uniform 2px border */
     border-top: 1px solid white;
     border-top: 2px solid white;
     border-bottom: 2px solid white;
     border-bottom: 3px solid white;
     border-left: 2px solid white;
     border-left: 2px solid white;
     border-right: 2px solid white;
     border-right: 2px solid white;
    padding-top: 0.1em;      /* Added vertical padding */
    padding-bottom: 0.1em;  /* Added vertical padding */
    padding-left: 10px;
    padding-right: 10px;
}
}


Line 121: Line 148:
     box-sizing: border-box;
     box-sizing: border-box;
     margin: 0 auto;
     margin: 0 auto;
     border-top: 1px solid white;
     border-top: 2px solid white;
     border-bottom: 2px solid white;
     border-bottom: 3px solid white;
    padding-left: 18px; /* Inner spacing */
    padding-right: 18px;
     border-left: 2px solid white;
     border-left: 2px solid white;
     border-right: 2px solid white;
     border-right: 2px solid white;
    padding: 0.1em; /* This already sets vertical padding to 0.1em */
    padding-left: 18px; /* Overrides left padding */
    padding-right: 18px; /* Overrides right padding */
}
}


Line 142: Line 170:
     }
     }
}
}


/* Odd and Even Rows with Increased Specificity */
/* Odd and Even Rows with Increased Specificity */
Line 152: Line 179:
     background-color: #f4f4f4;
     background-color: #f4f4f4;
}
}


/* Adjust for odd/even rows if needed */
/* Adjust for odd/even rows if needed */
Line 160: Line 186:
     overflow-wrap: anywhere;
     overflow-wrap: anywhere;
}
}
/* List with Group
.navboxMobile-list-with-group {
    text-align: left;
    border-left: 2px solid #fdfdfd;
}*/


/* Styles Container */
/* Styles Container */
Line 187: Line 204:


.navboxMobile-title .navbar {
.navboxMobile-title .navbar {
     float: left;
     float: right;
     text-align: left;
     text-align: right;
     margin-right: 0.5em;
    margin-left: 0.5em;
     margin-bottom: 0.1em; /* Optional: Adjust vertical alignment */
}
}


.navboxMobile-navbar {
.navboxMobile-navbar {

Latest revision as of 06:32, 27 November 2024

/* Container Styles */
.navboxMobile {
    box-sizing: border-box;
    border: 1px solid #a2a9b1;
    border-collapse: collapse; /* Ensure all rows share a border */
    white-space: normal; /* Allow wrapping for content */
    text-align: left;
    padding: 1px;
    margin: 0 auto; /* Reduced top margin */
    background-color: #fdfdfd;
}

/* Ensure the title cell allows for absolute positioning */
.navboxMobile-title {
    position: relative;  /* Already set in the Lua code, but good to confirm in CSS */
}

/* Inner and Subgroup Tables */
.navboxMobile-inner,
.navboxMobile-subgroup {
    box-sizing: border-box;
}

.navboxMobile-title div {
    text-align: center;
}

.navboxMobile td, .navboxMobile th {
    white-space: normal; /* Prevent nowrap constraints */
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* Above and Below Content */
.navboxMobile-abovebelow-content,
.navboxMobile-below-content {
    padding: 0.25em 1em;
    line-height: 1.0em;
    background-color: #ddf;
    font-size: 1em;
}

/* Group Content */
.navboxMobile-group-content {
    text-align: center; /* Centered text */
    font-size: 1em;
}

/* Style the navbar within the title cell */
.navboxMobile-navbar {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.2em;  /* Adjust as needed for alignment */
    /* Optional: Set background or text styles if necessary */
}

/* Ensure the title text is centered across the full width */
.navboxMobile-title > div {
    text-align: center;
    margin: 0 auto;
}

/* Title Row */
.navboxMobile-title {
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0.1em; /* Unified padding */
    text-align: center;
    background-color: #ccf;
    font-size: 1.0em;
    border: 2px solid white; /* Uniform 2px white border */
}

/* Level 1: Top-level Groups */
.navboxMobile-group-level1 {
    background-color: #ddf;
    margin: 0.05em 0; /* Symmetric top and bottom margins */
    padding: 0.08em; /* Reduced padding */
    border-top: 3px solid white;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
}

/* Level 2 Groups */
.navboxMobile-group-level2 {
    background-color: #e6e6ff;
    margin: 0.05em 0; /* Symmetric margins */
    padding: 0.08em; /* Reduced padding */
    border-top: 3px solid white;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
    box-shadow: inset 8px 0 #fff, inset -8px 0 #fff; /* Retained box shadow */
}

/* Level 3 Groups */
.navboxMobile-group-level3 {
    background-color: #e6e6ff;
    margin: 0.05em 0; /* Symmetric margins */
    padding: 0.08em; /* Reduced padding */
    border-top: 3px solid white;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
    box-shadow: inset 16px 0 #fff, inset -16px 0 #fff; /* Retained box shadow */
}

/* List Content */
.navboxMobile-list-content {
    line-height: 1.2em;
    font-size: 1em;
    text-align: center;
    padding-top: 0.1em;      /* Added vertical padding */
    padding-bottom: 0.1em;   /* Added vertical padding */
    padding-left: 2px;
    padding-right: 2px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-top: 2px solid white;
    border-bottom: 3px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
}

/* Level 2 Content */
.navboxMobile-list-level2 {
    box-shadow: inset 8px 0 #fff, inset -8px 0 #fff; /* Retain shadows */
    box-sizing: border-box;
    margin: 0 auto;
    border: 2px solid white; /* Uniform 2px border */
    border-top: 2px solid white;
    border-bottom: 3px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
    padding-top: 0.1em;      /* Added vertical padding */
    padding-bottom: 0.1em;   /* Added vertical padding */
    padding-left: 10px;
    padding-right: 10px;
}

/* Level 3 Content */
.navboxMobile-list-level3 {
    box-shadow: inset 16px 0 #fff, inset -16px 0 #fff; /* Retain shadows */
    box-sizing: border-box;
    margin: 0 auto;
    border-top: 2px solid white;
    border-bottom: 3px solid white;
    border-left: 2px solid white;
    border-right: 2px solid white;
    padding: 0.1em; /* This already sets vertical padding to 0.1em */
    padding-left: 18px; /* Overrides left padding */
    padding-right: 18px; /* Overrides right padding */
}

/* Responsive Adjustments */
@media all and (min-width: 720px) {
    .navboxMobile {
        /* Adjustments for larger mobile screens */
    }
}

/* Hide on Print */
@media print {
    .navboxMobile {
        display: none !important;
    }
}

/* Odd and Even Rows with Increased Specificity */
.navboxMobile-list-content.navboxMobile-even {
    background-color: #eaeaea;
}

.navboxMobile-list-content.navboxMobile-odd {
    background-color: #f4f4f4;
}

/* Adjust for odd/even rows if needed */
.navboxMobile-list-content.navboxMobile-even,
.navboxMobile-list-content.navboxMobile-odd {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* Styles Container */
.navboxMobile-styles {
    /* Additional styles if necessary */
}

/* Container Padding */
.navboxMobile-container {
    padding: 1px;
}

/* Navbar Specific Styles */
.navboxMobile .navbar {
    display: block;
    font-size: 100%;
}

.navboxMobile-title .navbar {
    float: right;
    text-align: right;
    margin-left: 0.5em;
    margin-bottom: 0.1em; /* Optional: Adjust vertical alignment */
}

.navboxMobile-navbar {
    text-align: right; /* Align Navbar content to the right */
    font-size: 0.85em; /* Optional: Adjust size */
    padding: 0.0em 0; /* Add a little padding */
    border-top: none;
}