diff --git a/templates/Froxlor/settings/configuration.html.twig b/templates/Froxlor/settings/configuration.html.twig
index daba566833..4fbfa8b7c2 100644
--- a/templates/Froxlor/settings/configuration.html.twig
+++ b/templates/Froxlor/settings/configuration.html.twig
@@ -5,7 +5,7 @@
{{ lng('admin.configfiles.serverconfiguration') }}
- {{ lng('admin.configfiles.description') }}
+ {{ lng('admin.configfiles.description') }}
{% endblock %}
{% block actions %}
diff --git a/templates/Froxlor/settings/index.html.twig b/templates/Froxlor/settings/index.html.twig
index 0c9e79d283..a45695f7bf 100644
--- a/templates/Froxlor/settings/index.html.twig
+++ b/templates/Froxlor/settings/index.html.twig
@@ -7,7 +7,7 @@
{% if fields._group is defined %} » {{ fields._group.title|raw }}
{% endif %}
- {{ lng('admin.serversettings_desc') }}
+ {{ lng('admin.serversettings_desc') }}
{% endblock %}
{% block actions %}
@@ -47,7 +47,7 @@
{% if not field.activated %}
- {{ lng('panel.not_activated') }}
+ {{ lng('panel.not_activated') }}
{% endif %}
diff --git a/templates/Froxlor/src/js/components/search.js b/templates/Froxlor/src/js/components/search.js
index be898a4182..7939edddd9 100755
--- a/templates/Froxlor/src/js/components/search.js
+++ b/templates/Froxlor/src/js/components/search.js
@@ -16,7 +16,7 @@ $(function() {
}
// Show notification for short search query
if (query.length && query.length < 3) {
- dropdown.html('Please enter more than 2 characters');
+ dropdown.html('Please enter more than 2 characters');
dropdown.parent().show();
return;
}
@@ -31,7 +31,7 @@ $(function() {
success: data => {
// Show notification if we got no results
if (Object.keys(data).length === 0) {
- dropdown.html('Nothing found!');
+ dropdown.html('Nothing found!');
dropdown.parent().show();
return;
}
@@ -40,7 +40,7 @@ $(function() {
dropdown.html('');
dropdown.parent().show();
Object.keys(data).forEach(key => {
- dropdown.append('' + key + '');
+ dropdown.append('' + key + '');
data[key].forEach(item => {
dropdown.append('' + item.title + '');
});
@@ -48,7 +48,7 @@ $(function() {
},
error: function (a, b) {
console.log(a, b);
- dropdown.html('Whoops we got some errors!');
+ dropdown.html('Whoops we got some errors!');
dropdown.parent().show();
}
});
diff --git a/templates/Froxlor/src/scss/components/_card.scss b/templates/Froxlor/src/scss/components/_card.scss
index 2d553d0bd1..58b0f7acf6 100644
--- a/templates/Froxlor/src/scss/components/_card.scss
+++ b/templates/Froxlor/src/scss/components/_card.scss
@@ -14,11 +14,11 @@
}
&.deactivated {
- @extend .text-muted;
+ @extend .text-body-secondary;
background: lighten($light-bg, 3%);
i {
- @extend .text-muted;
+ @extend .text-body-secondary;
}
}
}
diff --git a/templates/Froxlor/src/scss/components/_dropdown.scss b/templates/Froxlor/src/scss/components/_dropdown.scss
index 7a998526d2..40b6f37a86 100644
--- a/templates/Froxlor/src/scss/components/_dropdown.scss
+++ b/templates/Froxlor/src/scss/components/_dropdown.scss
@@ -5,7 +5,7 @@
width: 1rem;
margin-right: 1rem;
text-align: center;
- color: $text-muted;
+ color: $body-secondary-color;
}
}
}
diff --git a/templates/Froxlor/src/scss/components/_footer.scss b/templates/Froxlor/src/scss/components/_footer.scss
index fd966ec3a3..46e585eb7b 100644
--- a/templates/Froxlor/src/scss/components/_footer.scss
+++ b/templates/Froxlor/src/scss/components/_footer.scss
@@ -2,7 +2,7 @@ footer {
@extend .small;
a {
- @extend .text-muted;
+ @extend .text-body-secondary;
@extend .text-decoration-none;
}
diff --git a/templates/Froxlor/user/form.html.twig b/templates/Froxlor/user/form.html.twig
index fce9afe0da..83d7c5e46a 100644
--- a/templates/Froxlor/user/form.html.twig
+++ b/templates/Froxlor/user/form.html.twig
@@ -11,7 +11,7 @@
{{ formdata.title }}
{% if formdata.description is not empty %}
- {{ formdata.description }}
+ {{ formdata.description }}
{% endif %}
{% endif %}
diff --git a/templates/Froxlor/user/table.html.twig b/templates/Froxlor/user/table.html.twig
index 4568f5ff07..7fd8e952a2 100644
--- a/templates/Froxlor/user/table.html.twig
+++ b/templates/Froxlor/user/table.html.twig
@@ -15,7 +15,7 @@
{% endif %}
{% if listing.description is not empty %}
- {{ listing.description }}
+ {{ listing.description }}
{% endif %}
{% endif %}
diff --git a/templates/Froxlor/user/traffic.html.twig b/templates/Froxlor/user/traffic.html.twig
index c835bc401a..247bc960d2 100644
--- a/templates/Froxlor/user/traffic.html.twig
+++ b/templates/Froxlor/user/traffic.html.twig
@@ -7,7 +7,7 @@
{{ lng('admin.traffic') }}
- {{ lng('admin.traffic_sub') }}
+ {{ lng('admin.traffic_sub') }}
{% endblock %}
diff --git a/templates/Froxlor/userarea.html.twig b/templates/Froxlor/userarea.html.twig
index ac0bc9b14d..9d5406830b 100644
--- a/templates/Froxlor/userarea.html.twig
+++ b/templates/Froxlor/userarea.html.twig
@@ -30,7 +30,7 @@
-
+
{% if call_static('\\Froxlor\\CurrentUser', 'getField', ['switched_user']) is not empty and call_static('\\Froxlor\\CurrentUser', 'getField', ['switched_user']) is iterable %}
@@ -79,7 +79,7 @@