Skip to content

Commit 620b3e9

Browse files
authored
Merge pull request joomla#45591 from muhme/5.4-upmerge-2025-06-10
[5.4] Upmerge 2025-06-10
2 parents 010fbfc + 75a3f22 commit 620b3e9

File tree

2 files changed

+68
-1
lines changed

2 files changed

+68
-1
lines changed

installation/template/error.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<jdoc:include type="metas" />
3939
<jdoc:include type="styles" />
4040
</head>
41-
<body>
41+
<body class="j-installation-error">
4242
<div class="j-install">
4343
<!-- Header -->
4444
<header class="j-header" role="banner">

installation/template/scss/template.scss

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,3 +501,70 @@ progress {
501501
border: 0 none;
502502
border-radius: 4px;
503503
}
504+
505+
/* error page */
506+
.j-header {
507+
display: flex;
508+
flex-direction: row;
509+
color: #fff;
510+
background-color: #0b3257;
511+
}
512+
513+
.j-header-logo {
514+
width: 100%;
515+
max-width: 240px;
516+
margin: 20px;
517+
}
518+
519+
.j-header-help {
520+
margin: 20px 20px 20px auto;
521+
a {
522+
padding: 1rem;
523+
font-size: 2rem;
524+
color: #fff;
525+
}
526+
}
527+
528+
.j-footer {
529+
padding: 10px 20px;
530+
margin-top: auto;
531+
font-size: .8rem;
532+
color: #fff;
533+
text-align: right;
534+
background-color: #0b3257;
535+
}
536+
537+
.alert {
538+
position: relative;
539+
display: flex;
540+
margin: 0 0 20px;
541+
background: #fafafa;
542+
border: 1px solid rgba(0,0,0,.1);
543+
box-shadow: 0 0 10px rgba(0,0,0,.05);
544+
p {
545+
margin-bottom: 0;
546+
}
547+
}
548+
549+
.alert-icon {
550+
display: flex;
551+
align-items: center;
552+
justify-content: center;
553+
width: 25%;
554+
margin-bottom: 0;
555+
font-size: 3rem;
556+
opacity: .6;
557+
.fa {
558+
width: 100%;
559+
text-align: center;
560+
}
561+
}
562+
563+
.alert-text {
564+
padding: 10px 20px;
565+
}
566+
567+
.j-installation-error {
568+
background-color: #1c3d5c;
569+
background-image: linear-gradient(90deg, #1c3d5c 0%, #2a5c8b 100%);
570+
}

0 commit comments

Comments
 (0)