Merge develop

This commit is contained in:
Pieter Vander Vennet 2021-10-13 17:23:51 +02:00
commit 448468c928
97 changed files with 5039 additions and 1139 deletions

View file

@ -828,6 +828,10 @@ video {
margin: 1rem;
}
.m-px {
margin: 1px;
}
.my-2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
@ -852,10 +856,6 @@ video {
margin-left: 0.75rem;
}
.mr-3 {
margin-right: 0.75rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
@ -920,6 +920,10 @@ video {
margin-bottom: 0.25rem;
}
.mr-3 {
margin-right: 0.75rem;
}
.box-border {
box-sizing: border-box;
}
@ -1390,14 +1394,6 @@ video {
padding: 0px;
}
.pl-6 {
padding-left: 1.5rem;
}
.pt-2 {
padding-top: 0.5rem;
}
.pl-2 {
padding-left: 0.5rem;
}
@ -1466,6 +1462,14 @@ video {
padding-right: 0.5rem;
}
.pl-6 {
padding-left: 1.5rem;
}
.pt-2 {
padding-top: 0.5rem;
}
.text-center {
text-align: center;
}
@ -1590,6 +1594,10 @@ video {
opacity: 0;
}
.opacity-50 {
opacity: 0.5;
}
.opacity-40 {
opacity: 0.4;
}
@ -1632,6 +1640,18 @@ video {
transition-duration: 150ms;
}
.transition-colors {
transition-property: background-color, border-color, color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-opacity {
transition-property: opacity;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.\!transition {
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
@ -1792,6 +1812,10 @@ svg, img {
height: 100%;
}
.no-images img {
display: none;
}
.mapcontrol svg path {
fill: var(--subtle-detail-color-contrast) !important;
}
@ -1892,6 +1916,10 @@ li::marker {
border: 5px solid var(--catch-detail-color);
}
.border-attention {
border-color: var(--catch-detail-color);
}
.direction-svg svg path {
fill: var(--catch-detail-color) !important;
}
@ -1934,6 +1962,27 @@ li::marker {
max-width: 2em !important;
}
.block-ruby {
display: block ruby;
}
.disable-links a {
pointer-events: none;
text-decoration: none !important;
color: var(--subtle-detail-color-contrast) !important;
}
.enable-links a {
pointer-events: unset;
text-decoration: underline !important;
color: unset !important;
}
.disable-links a.must-link, .disable-links .must-link a {
/* Hide links if they are disabled */
display: none;
}
/**************** GENERIC ****************/
.alert {
@ -2193,6 +2242,10 @@ li::marker {
color: rgba(30, 64, 175, var(--tw-text-opacity));
}
.hover\:opacity-100:hover {
opacity: 1;
}
.hover\:shadow-xl:hover {
--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
@ -2254,6 +2307,10 @@ li::marker {
justify-content: space-between;
}
.sm\:border-4 {
border-width: 4px;
}
.sm\:p-0\.5 {
padding: 0.125rem;
}
@ -2270,6 +2327,10 @@ li::marker {
padding: 0.25rem;
}
.sm\:p-2 {
padding: 0.5rem;
}
.sm\:pl-2 {
padding-left: 0.5rem;
}
@ -2373,6 +2434,10 @@ li::marker {
padding: 1rem;
}
.md\:p-3 {
padding: 0.75rem;
}
.md\:pt-4 {
padding-top: 1rem;
}

View file

@ -8,7 +8,7 @@
justify-content: flex-start;
align-items: start;
background-color: var(--background-color);
max-width: 100vw;
max-width: 100%;
overflow-x: auto;
}

View file

@ -20,12 +20,6 @@
height: 100%;
}
.question a {
pointer-events: none;
text-decoration: none;
color: var(--subtle-detail-color-contrast)
}
.question-text {
font-size: larger;
font-weight: bold;

View file

@ -33,6 +33,12 @@
text-decoration: none;
}
.disable-links .wikipedia-article a {
color: black !important;
background: none !important;
text-decoration: none;
}
.wikipedia-article p {
margin-bottom: 0.5rem;