mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-12-01 03:16:40 +00:00
929c249018
* Move after the content in Vector * Make title uppercase Bug: T122030 Change-Id: I8f33ff4115a6a5d328ebbb924293cd4944bc0143
37 lines
551 B
Plaintext
37 lines
551 B
Plaintext
@import "mediawiki.ui/variables";
|
|
|
|
// Hide RelatedArticles when VE is activated (https://phabricator.wikimedia.org/T120443)
|
|
.ve-activated {
|
|
.ra-read-more {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ra-read-more {
|
|
margin-top: 35px;
|
|
margin-bottom: 70px;
|
|
|
|
h2 {
|
|
font-size: 1em;
|
|
font-weight: normal;
|
|
color: @colorGray9;
|
|
padding-bottom: 0.5em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.page-list {
|
|
border-top: 1px solid @colorGray14;
|
|
}
|
|
}
|
|
|
|
body.skin-vector {
|
|
.ra-read-more {
|
|
margin: 0 0 0 10em;
|
|
padding: 1em;
|
|
|
|
.ext-cards-card-list {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|