mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
Merge branch 'w2p-132350_minor-css-fixes_contribute-7.6' into bootstrap-issues_contribute-main
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
.nav-breadcrumb {
|
||||
background-color: var(--ds-breadcrumb-bg);
|
||||
background-color: var(--ds-breadcrumb-bg) !important;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
border-radius: 0;
|
||||
padding-bottom: calc(var(--ds-content-spacing) / 2);
|
||||
padding-top: calc(var(--ds-content-spacing) / 2);
|
||||
background-color: var(--ds-breadcrumb-bg);
|
||||
background-color: var(--ds-breadcrumb-bg) !important;
|
||||
padding-left: calc(var(--bs-spacer) *.75);
|
||||
padding-right: calc(var(--bs-spacer) *.75);
|
||||
}
|
||||
|
@@ -24,17 +24,19 @@
|
||||
|
||||
@if ((isHierarchicalVocabulary() | async) !== true) {
|
||||
<div class="position-relative right-addon">
|
||||
<div class="authority-icons position-absolute d-flex align-items-center">
|
||||
@if (searching || loadingInitialValue) {
|
||||
<i class="fas fa-circle-notch fa-spin fa-2x fa-fw text-primary position-absolute mt-1 p-0" aria-hidden="true"></i>
|
||||
<i class="fas fa-circle-notch fa-spin fa-2x fa-fw text-primary my-auto p-0" aria-hidden="true"></i>
|
||||
}
|
||||
@if (!searching && !loadingInitialValue) {
|
||||
<i
|
||||
dsAuthorityConfidenceState
|
||||
class="far fa-circle fa-2x fa-fw position-absolute mt-1 p-0"
|
||||
class="far fa-circle fa-2x fa-fw my-auto p-0"
|
||||
aria-hidden="true"
|
||||
[authorityValue]="currentValue"
|
||||
(whenClickOnConfidenceNotAccepted)="whenClickOnConfidenceNotAccepted($event)"></i>
|
||||
}
|
||||
</div>
|
||||
<input #instance="ngbTypeahead"
|
||||
class="form-control"
|
||||
[attr.aria-labelledby]="'label_' + model.id"
|
||||
|
@@ -31,3 +31,9 @@
|
||||
.tree-input[readonly]{
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.authority-icons {
|
||||
top: 50%;
|
||||
right: 0;
|
||||
transform: translateY(-50%)
|
||||
}
|
||||
|
@@ -105,7 +105,7 @@
|
||||
--ds-home-news-link-hover-color: #{darken($ds-home-news-link-color, 15%)};
|
||||
--ds-home-news-background-color: #{$gray-200};
|
||||
|
||||
--ds-breadcrumb-bg: #{$gray-200} !important;
|
||||
--ds-breadcrumb-bg: #{$gray-200};
|
||||
--ds-breadcrumb-link-color: #{$ds-breadcrumb-link-color};
|
||||
--ds-breadcrumb-link-active-color: #{darken($ds-breadcrumb-link-color, 30%)};
|
||||
--ds-breadcrumb-max-length: 200px;
|
||||
|
Reference in New Issue
Block a user