fix javascript and images, update css

This commit is contained in:
envoyr
2022-02-16 11:59:52 +01:00
parent f7db5497af
commit f8a00a5f1e
7 changed files with 32 additions and 9 deletions

8
.gitignore vendored
View File

@@ -1,5 +1,4 @@
install/update.log install/update.log
templates/*
lib/userdata.inc.php lib/userdata.inc.php
lib/userdata.inc.php.bak lib/userdata.inc.php.bak
logs/* logs/*
@@ -13,10 +12,11 @@ logs/*
.idea .idea
*.iml *.iml
img/ img/
vendor/
node_modules/
templates/*
!templates/Froxlor/ !templates/Froxlor/
!templates/Sparkle/ !templates/Sparkle/
!templates/misc/
templates/Sparkle/assets/css/custom.css templates/Sparkle/assets/css/custom.css
vendor/ !templates/misc/
node_modules/

View File

@@ -20503,7 +20503,7 @@ readers do not read off random characters that represent icons */
@apply shadow; @apply shadow;
} }
.card .card-body { .card .card-body {
padding: 1.5rem; padding: 2rem;
} }
.rounded-corner-tl-bl { .rounded-corner-tl-bl {

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -3,3 +3,28 @@
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/ */
/*!
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2021-02-16
*/
/*!
* jQuery JavaScript Library v3.6.0
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2021-03-02T17:08Z
*/

View File

@@ -8,12 +8,10 @@
<meta name="googlebot" content="nosnippet"/> <meta name="googlebot" content="nosnippet"/>
<!-- CSS --> <!-- CSS -->
<link href="{{ basehref|default("") }}templates/Froxlor/assets/css/main.css" rel="stylesheet">
{{ theme_css|raw }} {{ theme_css|raw }}
{% block custom_css %}{% endblock %} {% block custom_css %}{% endblock %}
<!-- Scripts --> <!-- Scripts -->
<script src="{{ basehref|default("") }}templates/Froxlor/assets/js/main.js"></script>
{{ theme_js|raw }} {{ theme_js|raw }}
{% block custom_js %}{% endblock %} {% block custom_js %}{% endblock %}
<title>Froxlor <title>Froxlor

View File

@@ -14,7 +14,7 @@
</div> </div>
<div class="col text-white position-relative"> <div class="col text-white position-relative">
<img class="h-75 position-absolute bottom-0 end-0 rounded-corner-tl-bl" src="{{ basehref }}templates/Froxlor/assets/img/preview.png"> <img class="h-75 position-absolute bottom-0 end-0 rounded-corner-tl-bl" src="{{ basehref }}templates/Froxlor/assets/img/preview.jpg">
</div> </div>
</div> </div>
<div class="mt-5 text-end"> <div class="mt-5 text-end">

View File

@@ -13,7 +13,7 @@
@apply shadow; @apply shadow;
.card-body { .card-body {
padding: 1.5rem; padding: 2rem;
} }
} }