Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Updated deprecated notice
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrivedi88 committed Jul 16, 2024
1 parent 02d0229 commit b0d13ff
Show file tree
Hide file tree
Showing 3 changed files with 425 additions and 863 deletions.
31 changes: 31 additions & 0 deletions antora-lunr-ui/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,34 @@ aside.toc.sidebar {
.popup:hover .popuptext {
visibility: visible;
}


.banner {
width: 100%;
background-color: #f44336;
/* Red background */
color: white;
text-align: center;
padding: 15px 0;
position: fixed;
top: 0;
z-index: 1000;
animation: slideDown 0.5s ease-in-out;
}

.banner a {
color: #ffc107;
/* Amber link color */
font-weight: bold;
text-decoration: none;
}

@keyframes slideDown {
from {
transform: translateY(-100%);
}

to {
transform: translateY(0);
}
}
8 changes: 8 additions & 0 deletions antora-lunr-ui/partials/header-content.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@
</div>
</nav>
</header>
<body>
<div class="banner">
<h1>Deprecated Document Notice</h1>
<h3>The documentation you are viewing is deprecated. For the latest updates on Konflux, review
<a href="https://konflux-ci.dev/docs/" target="_blank">Konflux documentation</a>.</h3>
</div>

</body>
Loading

0 comments on commit b0d13ff

Please sign in to comment.