[151] fix link

pull/1351/head
meisnate12 2 years ago
parent ac1b32b88b
commit ee2cecd675

@ -1 +1 @@
1.18.3-develop150 1.18.3-develop151

@ -380,8 +380,8 @@ table.dualTable td, table.dualTable th {
padding-left: 15px !important; padding-left: 15px !important;
} }
.image-accordion { .image-accordion {
background-color: #eee; background-color: #1D1D1D;
color: #444; color: #0ce3ac;
cursor: pointer; cursor: pointer;
padding: 18px; padding: 18px;
width: 100%; width: 100%;
@ -391,29 +391,30 @@ table.dualTable td, table.dualTable th {
font-size: 15px; font-size: 15px;
transition: 0.4s; transition: 0.4s;
} }
.image-active, .image-accordion:hover { .image-active, {
background-color: #ccc; background-color: #D1D1D;
}
.image-accordion:hover {
background-color: #181818;
} }
.image-panel { .image-panel {
padding: 0 18px; background-color: #181818;
background-color: white;
max-height: 0; max-height: 0;
overflow: hidden; overflow: hidden;
transition: max-height 0.2s ease-out; transition: max-height 0.2s ease-out;
} }
.image-accordion:after { .image-accordion:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */ content: '\25BC';
font-size: 13px; font-size: 13px;
color: #777; color: #777;
float: right; float: right;
margin-left: 5px; margin-left: 5px;
} }
.image-active:after { .image-active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */ content: "\25B2";
} }
table.image-table { table.image-table {
margin-top: 5px; margin: 0 auto;
margin-bottom: 5px;
border-spacing: 10px; border-spacing: 10px;
border-collapse: separate; border-collapse: separate;
} }

@ -1,22 +1,18 @@
<script type="text/javascript"> <script type="text/javascript">
$(document).ready(function(){ $(document).ready(function(){
$("#bing").load("https://raw.githubusercontent.com/meisnate12/PMM-Image-Sets/master/movies/readme.md"); $("#bing").load("https://raw.githubusercontent.com/meisnate12/PMM-Image-Sets/master/movies/readme.md", function () {
var acc = document.getElementsByClassName("image-accordion"); $(".image-accordion").click(function () {
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("image-active"); this.classList.toggle("image-active");
var parent = this.parentElement; var parent = this.parentElement;
var panel = this.nextElementSibling; var panel = this.nextElementSibling;
if (panel.style.maxHeight){ if (panel.style.maxHeight) {
panel.style.maxHeight = null; panel.style.maxHeight = null;
} else { } else {
panel.style.maxHeight = panel.scrollHeight + "px"; panel.style.maxHeight = panel.scrollHeight + "px";
parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px"; parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px";
} }
}); });
} });
}); });
</script> </script>

@ -16,7 +16,7 @@ collections:
collection_order: release collection_order: release
``` ```
Note: The `sort_title` in these examples is wrapped in quotes because it contains a character [`!`] which has [syntactic meaning in YAML files](../home/guides/yaml#string-literals). This "quoting special characters" is a general YAML requirement, not something specific to `sort_title`. Note: The `sort_title` in these examples is wrapped in quotes because it contains a character [`!`] which has [syntactic meaning in YAML files](../home/guides/yaml.md#string-literals). This "quoting special characters" is a general YAML requirement, not something specific to `sort_title`.
Then you add another: Then you add another:

Loading…
Cancel
Save