Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 8 additions & 16 deletions src/themes/fda/app/footer/footer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
<div class="content-container">
<ul class="footer-info list-unstyled d-flex justify-content-center mb-0">
<li>
<a routerLink="about" tabindex="0">About the Archive</a>
<a routerLink="info/about">About the Archive</a>
</li>
<li *ngIf="showCookieSettings">
<button class="btn btn-link text-white" type="button" (click)="openCookieSettings()" role="button" tabindex="0">
{{ 'footer.link.cookies' | translate}}
</button>
<li>
<a href="https://support.nyu.edu/esc?id=kb_article&sysparm_article=KB0012311">Get Started &nbsp;<i class="fa fa-external-link fa-xs" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.nyu.edu/footer/accessibility.html">{{ 'footer.link.accessibility' | translate }} &nbsp;<i class="fa fa-external-link fa-xs" aria-hidden="true"></i></a>
</li>
<li>
<a class="btn text-white" href="https://www.nyu.edu/footer/accessibility.html" tabindex="0">{{ 'footer.link.accessibility' | translate }} <span class="glyphicon glyphicon-new-window"></span></a>
<a routerLink="info/about" fragment="rights">Rights</a>
</li>
<li *ngIf="showPrivacyPolicy">
<a class="btn text-white" routerLink="info/privacy" role="link" tabindex="0">{{ 'footer.link.privacy-policy' | translate}}</a>
Expand All @@ -20,16 +21,7 @@
<a class="btn text-white" routerLink="info/end-user-agreement" role="link" tabindex="0">{{ 'footer.link.end-user-agreement' | translate}}</a>
</li>
<li *ngIf="showSendFeedback$ | async">
<a class="btn text-white" routerLink="info/feedback" role="link" tabindex="0">{{ 'footer.link.feedback' | translate}}</a>
</li>
<li>
<a routerLink="help" tabindex="0">Help</a>
</li>
<li>
<a routerLink="contact" tabindex="0">Contact</a>
</li>
<li>
<a routerLink="rights" tabindex="0">Rights</a>
<a routerLink="info/feedback">{{ 'footer.link.feedback' | translate}}</a>
</li>
</ul>
</div>
Expand Down
31 changes: 31 additions & 0 deletions src/themes/fda/styles/_global-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,37 @@ li:first-of-type .fda-syllabus-header {
.simple-view-element-body {
padding: 1rem;
}

.simple-view-element-body .file-section {

ds-file-download-link {
border-bottom: 1px solid #58058c17;
display: block;

&:last-of-type {
border: none;
padding-bottom: .5rem;
}
}

.badge-primary {
margin-right: .5rem;
}

a {
display: inline-block;
line-height: 2rem;
font-weight: 600;

span:nth-child(2) {
color: darkslategray;
font-size: smaller;
display: inline-block;
margin-left: 5px;
font-weight: normal;
}
}
}
}

#expandable-navbar-section-browse_global {
Expand Down