mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:50:24 +08:00
116 lines
2.1 KiB
SCSS
116 lines
2.1 KiB
SCSS
[data-content][data-identifier="card"] {
|
|
z-index: z("max");
|
|
}
|
|
|
|
// shared styles for user and group cards
|
|
.user-card,
|
|
.group-card {
|
|
max-width: 95vw;
|
|
margin: 0;
|
|
max-height: 85vh; // 2.5vh margin-top and margin-bottom. 10vh top
|
|
box-sizing: border-box;
|
|
// avatar - names - controls
|
|
.first-row {
|
|
flex-wrap: wrap;
|
|
.names {
|
|
flex: 1 1 auto;
|
|
box-sizing: border-box;
|
|
}
|
|
.user-card-avatar {
|
|
flex: 0 0 auto;
|
|
}
|
|
.usercard-controls {
|
|
width: 100%; // always wraps to next line
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 1em;
|
|
gap: 0.5em;
|
|
li {
|
|
flex: 1 0 45%;
|
|
min-width: 8em;
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
button {
|
|
margin: 0;
|
|
.d-button-label {
|
|
@include ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
h1 {
|
|
font-size: var(--font-up-3);
|
|
.d-icon {
|
|
font-size: var(--font-down-2);
|
|
}
|
|
}
|
|
h2 {
|
|
font-size: var(--font-0);
|
|
}
|
|
h3 {
|
|
font-size: var(--font-down-1);
|
|
}
|
|
}
|
|
|
|
// styles for user cards only
|
|
.user-card {
|
|
// badges
|
|
.badge-section {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
.user-card-badge-link,
|
|
.more-user-badges {
|
|
display: flex;
|
|
flex: 0 1 50%;
|
|
max-width: 50%; // for text ellipsis
|
|
padding: 2px 0;
|
|
box-sizing: border-box;
|
|
&:nth-child(odd) {
|
|
padding-right: 4px;
|
|
}
|
|
a {
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
}
|
|
.user-badge {
|
|
display: flex;
|
|
margin: 0;
|
|
width: 100%;
|
|
.badge-display-name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
|
|
.public-user-fields {
|
|
@media screen and (max-height: 550px) {
|
|
max-height: 12vh;
|
|
}
|
|
max-height: 40vh;
|
|
overflow-y: auto;
|
|
.public-user-field {
|
|
@include line-clamp(3);
|
|
}
|
|
}
|
|
}
|
|
|
|
// mobile card cloak
|
|
.card-cloak {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: z("mobile-composer") + 1; // 1101
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-color: rgba(black, 0.5);
|
|
animation: fadein 0.2s;
|
|
@media (prefers-reduced-motion) {
|
|
animation-duration: 0s;
|
|
}
|
|
}
|