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 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:
discourse:master
← awesomerobot:master
opened 06:46PM - 19 Jun 16 UTC
💇
<img width="1223" alt="screen shot 2016-06-19 at 1 47 42 pm" src="https://cl… oud.githubusercontent.com/assets/1681963/16179201/8ed1bcac-362c-11e6-8ddc-c087adfc9e81.png">
<img width="1214" alt="screen shot 2016-06-19 at 1 47 52 pm" src="https://cloud.githubusercontent.com/assets/1681963/16179200/8ed1ae42-362c-11e6-91ed-c77ca6539a08.png">
<img width="1222" alt="screen shot 2016-06-19 at 1 49 26 pm" src="https://cloud.githubusercontent.com/assets/1681963/16179203/8ed2c0c0-362c-11e6-82d6-4a3b34cac2fd.png">
<img width="1187" alt="screen shot 2016-06-19 at 1 49 35 pm" src="https://cloud.githubusercontent.com/assets/1681963/16179202/8ed1e542-362c-11e6-8037-464286f3c8df.png">
Fixed via:
discourse:master
← linc01n:fix-group-title-page-color
opened 04:03PM - 25 Jun 16 UTC
Change according to group header background color
6 إعجابات