mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 22:12:24 +01:00
Add missing CSS for client preview
This commit is contained in:
parent
3375276f0d
commit
28b3084186
@ -198,6 +198,59 @@ pre {
|
||||
}
|
||||
}
|
||||
|
||||
@mixin line_clamp($lines: 0) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
@if $lines == 0 {
|
||||
white-space: nowrap;
|
||||
} @else {
|
||||
// Fallbacks for browsers not supporting line-clamp.
|
||||
max-height: $lines * 1.4em;
|
||||
display: block;
|
||||
|
||||
// Line-clamp settings.
|
||||
line-clamp: $lines;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $lines;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
}
|
||||
|
||||
.client-preview {
|
||||
background: #50525e;
|
||||
padding: 17px 24px 17px 24px;
|
||||
gap: 25px;
|
||||
font-size: 15px;
|
||||
|
||||
.mt-thumb {
|
||||
width: 96px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #fefefe;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.desc p:nth-child(2) {
|
||||
@include line_clamp(2);
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: #72fe63;
|
||||
}
|
||||
|
||||
.desc {
|
||||
margin-top: -4px;
|
||||
}
|
||||
}
|
||||
|
||||
.flex-grow {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#featuredCarousel h3 {
|
||||
font-size: calc(1.325rem + .9vw) !important;
|
||||
|
@ -16,7 +16,7 @@
|
||||
{%- endif %}
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/static/libs/bootstrap.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/static/custom.css?v=39">
|
||||
<link rel="stylesheet" type="text/css" href="/static/custom.css?v=40">
|
||||
<link rel="search" type="application/opensearchdescription+xml" href="/static/opensearch.xml" title="ContentDB" />
|
||||
|
||||
{% if noindex -%}
|
||||
|
Loading…
Reference in New Issue
Block a user