MediaWiki:Common.css: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1,179: Line 1,179:
   display: block;
   display: block;
   border-radius: 6px;
   border-radius: 6px;
}
/* Tweet Thread */
.tweet-thread .tweet {
    display: grid;
    grid-template-areas: "header date" "content content";
    grid-template-columns: min-content 1fr;
    margin: 0 0 0.5em;
    padding: 0;
    border: none;
}
.tweet-thread .tweet-header {
    grid-area: header;
}
.tweet-thread .tweet-content {
    grid-area: content;
    margin-left: 22px;
    padding-left: 22px;
    border-left: 3px solid #dddddd;
}
.tweet-thread .tweet-content p:first-child {
    margin: 0 0 0.5em;
}
.tweet-thread .tweet-timestamp {
    grid-area: date;
    align-items: start;
    margin: 0;
}
}