scombs
(Steve Combs)
24 يونيو 2016، 10:59م
1
The group titles on the group pages are white on white now, so not visible. Example: Discourse team - Discourse Meta
I was able to add some CSS to fix it:
.user-main .about.group .details {
color: #000000;
}
Was hoping to get an option for “pretty group names” as part of group related enhancements . Would like the slug view to stay visible until then.
EDIT: Just noticed on mobile that the title area background is gray, so the white title is visible, but only on mobile.
إعجابَين (2)
Hmm, Using desktop I’m not seeing white on white at that page,
Nor do I see any details class ( I do see user-details with a color: rgb(145, 145, 145) applied to it)
Is there some custom CSS you have, or maybe you’re running an old version of Discourse?
He’s right – it’s at the top of the page. Highlight with your mouse to find it.
lol I did try doing that before, but obviously not in the right place.
Yes, so it is indeed.
إعجاب واحد (1)
linc01n
(Lincoln)
25 يونيو 2016، 4:04م
5
This is related to this line:
.about {
background-position: center center;
background-size: cover;
width: 100%;
overflow: hidden;
&.group {
.details {
padding: 15px;
margin: 0;
color: dark-light-choose($secondary, lighten($primary, 10%));
}
}
.secondary {
background: scale-color($secondary, $lightness: -5%);
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
font-size: 0.929em;
.btn { padding: 3px 12px; }
And this line:
}
dt {
color: dark-light-diff($secondary, $primary, 50%, -40%);
margin: 0;
}
}
.details {
padding: 0 0 4px 0;
background: rgba($secondary, .85);
margin-top: -200px;
transition: margin .15s linear;
blockquote {
background-color: dark-light-diff($secondary, $primary, 30%, -70%);
border-left-color: dark-light-diff($secondary, $primary, 50%, -50%);
}
h1 {
font-size: 2.143em;
Related to this bug:
probably a leftover from the dark theme experiments. I can replicate this on my discourse sites too.
[image]
and this pull request few days ago:
https://github.com/discourse/discourse/pull/4276
Fixed via:
https://github.com/discourse/discourse/pull/4290
6 إعجابات