MediaWiki:Mobile.css: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(11 intermediate revisions by 2 users not shown)
Line 792: Line 792:
/*******************************/
/*******************************/


/* Commented out 2025-09-14 and replaced with below
.tweet {
.tweet {
     border: 1px solid #c7c7c7;
     border: 1px solid #c7c7c7;
Line 808: Line 809:


.tweet-header-image img {
.tweet-header-image img {
    border-radius: 100%;
     width: 40px !important;
     width: 40px !important;
     height: 40px !important;
     height: 40px !important;
}
}


.tweet-username {
.tweet-username {
    font-size: 0.8rem;
    color: #777 !important;
}
.tweet-timestamp {
     font-size: 0.8rem;
     font-size: 0.8rem;
     color: #777 !important;
     color: #777 !important;
Line 819: Line 827:
.tweet-display-name a.external {
.tweet-display-name a.external {
     font-size: 1rem;
     font-size: 1rem;
    color: #000 !important;
    font-weight: bold;
    text-decoration: none;
}
*/
.tweet {
    border-radius: 12px;
    border: 1px solid #c7c7c7;
    padding: 0.75rem;
    max-width: 560px;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}
.tweet-header {
    display: flex;
    gap: 0.75rem;
    margin: 0 0 0.5rem;
}
.tweet-header-image p {
    margin: 0;
}
.tweet > .tweet-header .tweet-header-image img {
    border-radius: 100%;
    max-width: 48px!important;
    width: 48px !important;
    height: 48px !important;
}
.tweet-header-name {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}
.tweet-header-name a.external {
    background-image: none;
}
.tweet-timestamp {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}
.tweet-username {
    color: #555 !important;
    font-size: 0.85rem;
    line-height: 1.2;
    margin-top: 0.15rem;
}
.tweet-display-name a.external {
    color: #000 !important;
    font-weight: bold;
    text-decoration: none;
}
.tweet-display-name:hover a.external {
    text-decoration: underline;
}
/* Keep the quoted card look but without changing fonts */
.tweet-quote {
    padding-top: 0.75rem;
}
.tweet-quote .tweet {
    border-radius: 10px;
    background-color: #f9f9f9;
}
.tweet-quote .tweet-header-image img {
    width: 42px !important;
    height: 42px !important;
}
/* Tweet media */
.tweet-media {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.tweet-media.count-1 { grid-template-columns: 1fr; }
.tweet-media.count-2 { grid-template-columns: 1fr 1fr; }
.tweet-media.count-3 { grid-template-columns: 1fr 1fr; }
.tweet-media.count-4 { grid-template-columns: 1fr 1fr; }
/* Make the first image span full width in a 3-image layout (2x1 + 1x2) */
.tweet-media.count-3 > :first-child { grid-column: 1 / -1; }
/* Ensure images fill their grid cell */
.tweet-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}
/* Tweet Thread */
.tweet-thread > .tweet {
    display: grid;
    grid-template-areas: "header date" "content content" "media media" "quote quote";
    grid-template-columns: min-content 1fr;
    margin: 0 0 0.25em;
    padding: 0;
    border: none;
}
.tweet-thread > .tweet > .tweet-header {
    grid-area: header;
    margin: 0 0 0.25rem;
}
.tweet-thread > .tweet > .tweet-content {
    grid-area: content;
    margin-left: 23px;
    padding-left: 22px;
    border-left: 2px solid #ced9de;
}
.tweet-thread > .tweet > .tweet-content p:first-child {
    margin: 0 0 0.5em;
}
.tweet-thread > .tweet > .tweet-timestamp {
    grid-area: date;
    align-items: start;
    margin: 0;
}
.tweet-thread > .tweet > .tweet-media {
    grid-area: media;
    margin-left: 23px;
    margin-top: 0;
    padding-left: 22px;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    border-left: 2px solid #ced9de;
}
.tweet-thread > .tweet > .tweet-quote {
    grid-area: quote;
    margin-left: 23px;
    padding-left: 22px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-left: 2px solid #ced9de;
}
}