mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 18:23:43 +08:00
f28f82f99e
* Improvements, refactors, remove dead code --------- Co-authored-by: Martin Brennan <martin@discourse.org>
145 lines
2.4 KiB
SCSS
145 lines
2.4 KiB
SCSS
@mixin theme-card-border($color) {
|
|
border-color: var(--#{$color}-medium);
|
|
box-shadow: 0px 0px 0px 3px var(--#{$color}-low);
|
|
}
|
|
|
|
.themes-cards-container {
|
|
display: grid;
|
|
grid-template-columns: calc(66.66% - 0.5em) calc(33.33% - 0.5em);
|
|
gap: 1em;
|
|
|
|
@media screen and (max-width: 1300px) {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
&__main {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(calc(325px - 1em), 1fr));
|
|
gap: 1em;
|
|
}
|
|
}
|
|
|
|
.theme-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
.admin-config-area-card__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&.-active {
|
|
@include theme-card-border(tertiary);
|
|
}
|
|
|
|
&.-disabled {
|
|
@include theme-card-border(primary);
|
|
}
|
|
|
|
&.-broken {
|
|
@include theme-card-border(danger);
|
|
}
|
|
|
|
.broken-indicator {
|
|
color: var(--danger);
|
|
}
|
|
|
|
&__icons {
|
|
display: flex;
|
|
}
|
|
|
|
&__image-wrapper {
|
|
width: 100%;
|
|
height: 160px;
|
|
overflow: hidden;
|
|
|
|
svg {
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
&__image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
object-position: top left;
|
|
border-radius: calc(var(--d-border-radius) + 1px);
|
|
}
|
|
|
|
.ember-checkbox {
|
|
margin: 0 5px 0 0;
|
|
}
|
|
|
|
&__checkbox-label {
|
|
margin: 0;
|
|
font-weight: 400;
|
|
}
|
|
|
|
&__content {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
&__description {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
&__components {
|
|
display: -webkit-box;
|
|
font-size: var(--font-down-1);
|
|
color: var(--primary-high);
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
-webkit-line-clamp: 3;
|
|
}
|
|
|
|
&__install-button {
|
|
margin-top: auto;
|
|
}
|
|
|
|
&__footer {
|
|
margin-top: auto;
|
|
display: flex;
|
|
}
|
|
|
|
&__footer-actions {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.admin-config-area-card__header-action {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(--secondary);
|
|
right: 20px;
|
|
top: 22px;
|
|
}
|
|
}
|
|
|
|
.admin-config-area-card.theme-card
|
|
.admin-config-area-card__content
|
|
.external-resources {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
font-size: var(--font-down-1);
|
|
margin-bottom: 10px;
|
|
|
|
.external-link {
|
|
margin-bottom: 0.25em;
|
|
color: var(--primary);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.theme-card .admin-config-area-card {
|
|
&__title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
}
|
|
}
|