Improved card fold, Added one to the index, Fixed typos
Update .gitignore, 403.php, and 4 more files...
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -15,4 +15,3 @@ resources/Azias/css/*.css
|
||||
resources/Azias/css/*.map
|
||||
resources/Azias/sass/**.css
|
||||
resources/Azias/sass/**.map
|
||||
|
||||
|
2
403.php
2
403.php
@@ -22,7 +22,7 @@ include_once 'modals.php';
|
||||
$debuggingText = "Referrer: " . (
|
||||
array_key_exists('HTTP_REFERER', $_SERVER) ? htmlspecialchars($_SERVER['HTTP_REFERER']) : "<i>Not present in request !</i>"
|
||||
) . "<br>";
|
||||
$debuggingText .= "<br>TODO: Add more info once the cache if properly configured for 4xx errors !";
|
||||
$debuggingText .= "<br>TODO: Add more info once the cache is properly configured for 4xx errors !";
|
||||
add_code_modal(
|
||||
"http-error",
|
||||
localize('modal.title.debugging'),
|
||||
|
2
404.php
2
404.php
@@ -22,7 +22,7 @@ include_once 'modals.php';
|
||||
$debuggingText = "Referrer: " . (
|
||||
array_key_exists('HTTP_REFERER', $_SERVER) ? htmlspecialchars($_SERVER['HTTP_REFERER']) : "<i>Not present in request !</i>"
|
||||
) . "<br>";
|
||||
$debuggingText .= "<br>TODO: Add more info once the cache if properly configured for 4xx errors !";
|
||||
$debuggingText .= "<br>TODO: Add more info once the cache is properly configured for 4xx errors !";
|
||||
add_code_modal(
|
||||
"http-error",
|
||||
localize('modal.title.debugging'),
|
||||
|
@@ -126,8 +126,15 @@ include_once 'langs.php';
|
||||
<i class="fad fa-globe"></i> <a href="<?php echo(l10n_url_abs("/content/excel-worksheet-password-remover")); ?>">Project's page</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<a href="<?php print(l10n_url_abs('/content/')); ?>">
|
||||
<div class="container-card-fold primary">
|
||||
<i class="fas fa-angle-right r-45"></i>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -21,6 +21,13 @@
|
||||
|
||||
user-select: none;
|
||||
|
||||
&.primary {
|
||||
color: var(--dm-button-primary-text-color);
|
||||
background-color: var(--dm-button-primary-bg-color);
|
||||
background-image: var(--dm-button-primary-bg-image);
|
||||
border-color: var(--dm-button-primary-border-color);
|
||||
}
|
||||
|
||||
&.secondary {
|
||||
color: var(--dm-button-secondary-text-color);
|
||||
background-color: var(--dm-button-secondary-bg-color);
|
||||
@@ -41,6 +48,11 @@
|
||||
bottom: 0.2rem;
|
||||
transition: right 0.25s ease, bottom 0.25s ease;
|
||||
transition-timing-function: cubic-bezier(.47,1.64,.41,.8);
|
||||
|
||||
&.r-45 {
|
||||
// Small fix
|
||||
right: 0.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
@@ -51,6 +63,29 @@
|
||||
i {
|
||||
bottom: 0.325em;
|
||||
right: 0.325rem;
|
||||
|
||||
&.r-45 {
|
||||
// Small fix
|
||||
right: 0.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Extra rule for mobile
|
||||
// If it doesn't work, use "768px" !
|
||||
@media (max-width: 576px) {
|
||||
width: 3.5rem;
|
||||
height: 3.5rem;
|
||||
opacity: 0.8;
|
||||
|
||||
i {
|
||||
bottom: 0.325em;
|
||||
right: 0.325rem;
|
||||
|
||||
&.r-45 {
|
||||
// Small fix
|
||||
right: 0.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -14,3 +14,11 @@
|
||||
// Same as above.
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.r-45 {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.r-135 {
|
||||
transform: rotate(135deg);
|
||||
}
|
||||
|
Reference in New Issue
Block a user