discourse-user-card-directory/common/common.scss

78 lines
1.2 KiB
SCSS
Raw Normal View History

.directory {
.filter-name {
float: none;
}
2020-02-28 10:01:48 -05:00
.filters {
2020-02-28 10:01:48 -05:00
display: flex;
justify-content: space-between;
2020-02-28 10:01:48 -05:00
flex-wrap: wrap;
> span {
margin-bottom: 5px;
2020-02-28 10:01:48 -05:00
}
}
.group-filter:not(.active) .select-kit-header {
color: $primary-high;
}
}
.user-card-directory {
display: flex;
flex-wrap: wrap;
justify-content: center;
.user-card {
z-index: z("base");
position: relative;
left: auto;
width: 100%;
box-shadow: none;
margin: 0;
.badge-section {
overflow: hidden;
}
}
.usercard-controls {
display: none;
}
.user-card-container {
flex-grow: 1;
2020-03-09 12:42:45 -04:00
width: 500px;
margin: 50px 5px 10px 5px;
background-color: $secondary;
box-shadow: shadow("card");
margin-bottom: auto;
}
.user-card-directory-footer {
background-color: $secondary;
padding: 0px 10px 10px 10px;
display: flex;
flex-wrap: wrap;
.stat {
flex-basis: 0;
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
margin: 2px;
.label {
font-size: $font-down-2;
.d-icon {
margin-right: 0.2em;
color: $primary-medium;
}
}
2020-02-28 10:01:48 -05:00
}
}
}