Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjusted the admin page to W3C standards #921

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/admin/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,8 @@ iframe {
.sign-text:hover{
color: #000 !important;
background-color: #fff
}
}

iframe {
border: none;
}
6 changes: 4 additions & 2 deletions apps/admin/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta author="JasoxNaN" />
<meta name="author" content="JasoxNaN" />


<!-- css files -->
<link rel="stylesheet" href="../common.css" />
<link
Expand Down Expand Up @@ -111,7 +113,7 @@
</div>
</nav>
<main id="main" class="col-md-9 ml-sm-auto col-lg-10 px-md-4">
<iframe src="../collection/collection.html" frameborder="0"></iframe>
<iframe src="../collection/collection.html"></iframe>
</main>
</div>
</div>
Expand Down