Page MenuHomec4science

No OneTemporary

File Metadata

Created
Thu, May 2, 23:24
This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/gulp/config.js b/gulp/config.js
index 7ea82fb..af079d9 100644
--- a/gulp/config.js
+++ b/gulp/config.js
@@ -1,215 +1,217 @@
'use strict';
let customFile = 'custom.js';
let customModuleFile = 'custom.module.js';
let customCssFile = 'custom1.css';
let mainFile = 'main.js';
let browserify;
let view;
let ve;
let useScss;
let reinstallNodeModules;
let saml;
let cas;
+var PROXY_SERVER;
function setView(_view) {
view = _view;
}
function setSaml(_saml) {
saml = _saml;
}
function getSaml() {
return saml;
}
function setCas(_cas) {
cas = _cas;
}
function getCas() {
return cas;
}
function setUseScss(_useScss) {
useScss = _useScss;
}
function getUseScss() {
return useScss;
}
function setProxy(_proxy) {
this.PROXY_SERVER = _proxy;
+ PROXY_SERVER = _proxy;
}
function getProxy(){
return PROXY_SERVER;
}
function getVe() {
return ve;
}
function setVe(_ve) {
ve = _ve;
}
function getBrowserify() {
return browserify;
}
function setBrowserify(_browserify) {
browserify = _browserify;
}
function setReinstallNodeModules(_reinstallNodeModules) {
reinstallNodeModules = _reinstallNodeModules;
}
function getReinstallNodeModules() {
return reinstallNodeModules;
}
function getView(){
return view;
}
function customPath() {
return viewJsDir()+'/'+customFile;
}
function customModulePath() {
return viewJsDir()+'/'+customModuleFile;
}
function viewHtmlDir() {
return `primo-explore/custom/${view}/html`;
}
function viewJsDir() {
return `primo-explore/custom/${view}/js`;
}
function mainPath() {
return viewJsDir()+'/*.js';
}
function mainJsPath() {
return viewJsDir()+'/main.js';
}
function customCssMainPath() {
return viewCssDir()+'/*.css';
}
function customColorsPath(){
return `colors.json`;
}
function viewRootDir() {
return `primo-explore/custom/${view}`;
}
function viewCssDir() {
return `primo-explore/custom/${view}/css`;
}
function customScssDir() {
return `primo-explore/custom/${view}/scss`;
}
function customScssMainPath() {
return customScssDir() + "/main.scss";
}
function customCssPath() {
return `primo-explore/custom/${view}/css/custom1.css`;
}
function customNpmModuleRootDir() {
return `primo-explore/custom/${view}/node_modules`;
}
function customNpmJsCustomPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/js/custom.js`;
}
function customNpmJsModulePath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/js/custom.module.js`;
}
function customNpmJsPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/js/*.js`;
}
function customNpmDistPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/dist/*.js`;
}
function customNpmCssPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/css/*.css`;
}
function customNpmHtmlPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/html/*.html`;
}
var SERVERS = {
local: 'http://localhost:8002'
};
/**
* The URL to your sandbox or production Primo instance.
* For SSL environments (https), the port number (443) must be included.
*
* Examples:
* var PROXY_SERVER = 'http://abc-primo.hosted.exlibrisgroup.com'
* var PROXY_SERVER = 'https://abc-primo.hosted.exlibrisgroup.com:443'
*/
-var PROXY_SERVER = 'https://slsp-epfl.primo.exlibrisgroup.com:443';
+// var PROXY_SERVER = 'https://slsp-epfl.primo.exlibrisgroup.com:443';
let buildParams = {
customFile: customFile,
customCssFile: customCssFile,
customPath: customPath,
customModulePath: customModulePath,
mainPath: mainPath,
mainJsPath: mainJsPath,
viewRootDir: viewRootDir,
viewJsDir: viewJsDir,
viewHtmlDir: viewHtmlDir,
viewCssDir: viewCssDir,
customScssDir: customScssDir,
customScssMainPath: customScssMainPath,
customCssPath: customCssPath,
customNpmModuleRootDir: customNpmModuleRootDir,
customNpmJsPath: customNpmJsPath,
customNpmDistPath: customNpmDistPath,
customNpmJsCustomPath: customNpmJsCustomPath,
customNpmJsModulePath: customNpmJsModulePath,
customNpmCssPath: customNpmCssPath,
customNpmHtmlPath: customNpmHtmlPath,
customCssMainPath: customCssMainPath,
customColorsPath: customColorsPath
};
module.exports = {
buildParams: buildParams,
- PROXY_SERVER: PROXY_SERVER,
+ PROXY_SERVER: getProxy(),
setView: setView,
setUseScss: setUseScss,
getUseScss: getUseScss,
setProxy: setProxy,
getReinstallNodeModules: getReinstallNodeModules,
setReinstallNodeModules: setReinstallNodeModules,
proxy: getProxy,
view: getView,
getBrowserify: getBrowserify,
setBrowserify: setBrowserify,
getVe: getVe,
setVe: setVe,
getSaml: getSaml,
setSaml: setSaml,
getCas: getCas,
setCas: setCas
};
diff --git a/gulpfile.js b/gulpfile.js
index a7c6469..146a2a2 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1,20 +1,37 @@
const gulp = require('gulp');
const minimist = require('minimist');
const requireDir = require('require-dir');
requireDir('./gulp/tasks', { recurse: true });
const config = require('./gulp/config');
var options = minimist(process.argv.slice(2));
-config.setView(options.view ? '41SLSP_EPF-' + options.view : false);
-console.log(options.view ? '41SLSP_EPF-' + options.view : false);
+console.log(options)
+
+// console.log(options.view ? '41SLSP_EPF-' + options.view : false);
//config.setVe(!!options.ve);
config.setVe(true);
+if (options.sandbox) {
+ config.setView('41SLSP_HPH-EPFL');
+ config.setProxy('https://slsp-hph-psb.primo.exlibrisgroup.com:443');
+} else {
+ config.setView(options.view ? '41SLSP_EPF-' + options.view : false);
+ config.setProxy('https://slsp-epfl.primo.exlibrisgroup.com:443');
+}
if (options.reinstallNodeModules) config.setReinstallNodeModules(options.reinstallNodeModules);
if (options.proxy) config.setProxy(options.proxy);
if (options.useScss) config.setUseScss(options.useScss);
//config.setBrowserify(options.browserify);
config.setBrowserify(true);
config.setSaml(options.saml);
config.setCas(options.cas);
+
+gulp.task('copy_to_prod', function(){
+ return gulp.src(['./primo-explore/custom/41SLSP_HPH-EPFL/**'])
+ .pipe(gulp.dest('./primo-explore/custom/41SLSP_EPF-prod/'));
+})
+gulp.task('copy_to_sandbox', function(){
+ return gulp.src(['./primo-explore/custom/41SLSP_EPF-prod/**'])
+ .pipe(gulp.dest('./primo-explore/custom/41SLSP_HPH-EPFL/'));
+})
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css b/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css
index d79109c..ddb56f8 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css
+++ b/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css
@@ -1,675 +1,707 @@
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** Central Package CSS ******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************** Navigation ******************/
/*Font Navigation and buttons*/
#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
font-size: small !important;
font-weight: 500 !important;
color: #111 !important;
}
/*hover effect Navigation and buttons*/
#mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]), .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]) {
background-color: #ddd !important;
color: #111 !important;
}
/*remove capitalized text*/
.md-button {
text-transform: none;
}
/*Menu button*/
button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
.md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
color: #111 !important;
}
/*hide hover effect on Library Logo*/
#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
background: none;
}
/*background buttons*/
prm-search-bookmark-filter .md-button {
background-color: #fff !important;
}
/*hiding Refworks from the pulldown menu*/
.my-refworks-ctm, .my-refworks-separator-ctm {
display: none;
}
/*switch to advanced search button*/
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-style: solid;
border-width: 1px;
border-radius: 5px;
}
.md-button.button-confirm {
border: 1px solid #ffffff;
}
.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
color: #fff;
background-color:#111;
}
/*the main color border on mobile view*/
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-bottom-style: solid;
border-bottom-width: 8px;
}
}
/*************** Main Content ******************/
/*backgound of the Textboxes Homepage*/
prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
background-color: #fff !important;
border-radius: 3px;
}
/*first header of the Textboxes*/
.cardbox h1 {
font-size: 48px;
line-height: 56px;
}
/*second header of the Textboxes*/
.cardbox h2 {
font-size: 32px;
line-height: 36px;
}
/*third header of the Textboxes (if needed)*/
.cardbox h3 {
font-size: 26px;
line-height: 30px;
}
/*removes the upper and lower space in a list */
.cardbox ul, .cardbox ol {
margin-top: 0px !important;
margin-bottom: 0px !important;
}
/*links in the textboxes*/
md-card-content a, prm-service-details a {
color: #222222 !important;
}
md-card-content a, prm-service-details a, div.courier-info > span a {
text-decoration: underline !important;
}
md-card-content a:hover, prm-service-details a:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*Responsive Video Frame*/
.resp-container {
position: relative;
overflow: hidden;
padding-top: 56.25%;
}
.resp-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter {
margin: 16px 0 0 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter-legal {
margin: 1px 0 0 0;
}
/*Responsive footer layout*/
@media (min-width: 960px) {
md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
text-align: end;
}
}
/*footer links*/
md-icon.ps_icon, a.ps_link {
margin-right: 5%;
text-decoration: underline;
}
/*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
background-color: rgba(61,110,148,.1) !important;
}*/
/*footer text*/
md-card-content.prm-primary-bg {
font-weight: 300;
}
/*links in the legal part of the footer*/
a.ps_link.legal, span.legal {
font-size: 14px;
font-weight: 300;
}
/************************************************************************************************
span.legal {
color: #14413c;
}
*/
span.legal > a {
/*color: #14413c;*/
font-weight: 600;
}
/*main container width for footer positioning*/
prm-static.md-padding.flex {
min-width: 100%;
padding: 0;
}
/*mainly white background*/
.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
background-color: #fff !important;
}
/*font color on white background*/
.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
color: #222 !important;
}
/*************** Brief results ******************/
/*color of the Alertbar*/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
/*background-color: #8dd8d8 !important;*/
border: none !important;
}
/*backgound search results boxes*/
.list-item-wrapper {
background-color: #f9f9f9;
}
/*Title color*/
prm-brief-result .item-title span {
color: #333;
}
prm-brief-result .item-title span:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*remove hover effect from title links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
box-shadow: none !important;
}
/*background color of bookmarked items*/
.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
background-color: #ddd !important;
}
/*hover effect on all Links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
color: #222 !important;
}
div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
background-color: #6b6b6b !important;
}
/*Facet titles*/
span.section-title-header:hover {
color: #8a8a8a !important;
}
/*underlined search results*/
/*.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
}*/
/*versions link and other*/
.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
color: #222 !important;
}
/*icon color and text color in request forms*/
.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
color: #222 !important;
}
/*space between item details in Fullview*/
#item-details > div > div {
margin-bottom: .8em !important;
}
/*fullview background of the left part*/
.md-dialog-container.fixed-container {
background-color: #444 !important;
}
/*background color of the signin window and the fullscreen navigation*/
md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
background-color: #1f1f1f !important;
}
/*text color of the signin window and the fullscreen navigation*/
prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
color: #fff !important;
}
/*hiding the Library Logo in the login window*/
.login-header {
display: none;
}
/*alertbar for the courier info*/
.courier-info {
margin: 0px 8px;
}
/*Library info icon*/
prm-location-items-after > div > span > a > img {
vertical-align: middle;
max-width: 30px;
margin: 4px 12px;
}
/*Library card Personal details display*/
#personalDetails > md-card-content > div {
flex-flow: column;
}
#prm_contact\.address_1 {
width: 400px;
}
+/*Full view Resource sharing */
+#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
+ display: flex;
+ flex-direction: column;
+}
+
+prm-opac {
+ order: 1;
+}
+
+prm-alma-other-members {
+ order: 2;
+ display: grid;
+}
+
+alma-htgi-svc {
+ order: 3;
+}
+
+primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
+ order: 0 !important;
+}
+
+.medium-uppercase-bold {
+ text-transform: none;
+ font-size: 1em;
+}
+
/******************************************************************************/
/************************************ Help Page *******************************/
/******************************************************************************/
#help img {
max-width: 100%;
height: auto;
}
img.icon_up1 {
width: 16px;
float: right;
margin: 13px 2px;
}
img.icon_up2 {
width: 10px;
float: right;
margin: 4px;
}
a > h3:hover {
background-color: #eee !important;
}
/*****************lenght of the address field in personal details**************/
/*#personalDetails > md-card-content {
flex-direction: column;
}
#prm_contact\.address_1 {
min-width: 420px;
}*/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/********************** End of the Central Package CSS ************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** EPFL CUSTOM COLORS *******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/* This file contains the EPFL part of the custom package. The SLSP part is in
the custom_slsp.css file. */
/*****************This two entries are the background of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg,
md-checkbox.md-checked ._md-icon, md-tabs md-ink-bar, md-radio-button.md-checked ._md-on, button.switch-to-simple, .md-button.button-confirm {
background-color: #ff0000 !important;
}
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-color: #ff0000 !important;
}
}
/*****************This entry is the mouse over background of the links and buttons*******************/
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
button.switch-to-simple:hover, .md-button.button-confirm:hover {
background-color: #ae0010 !important;
}
/*****************This two entries are the font color of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, .md-button.switch-to-advanced, button.switch-to-simple,
span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, md-checkbox.md-checked ._md-icon, .md-button.button-confirm {
color: #fff !important;
}
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-color: #c1c1c1 !important;
}
/*****************This two entries are the background of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
background-color: #ffcccc !important;
}
.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
}
/*****************This entry is the font color of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
color: #111111 !important;
}
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
-
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
-
/*****************Selected text color*******************/
::selection {
background: #ffbe8f; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffbe8f; /* Gecko Browsers */
}
/*****************This entry remove default color from various texts*******************/
md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
color: #ffcccc !important;
}
/* Bouton pour confirmer une demande */
prm-request button.md-button.button-confirm{
background-color: #080 !important;
}
prm-request button.md-button.button-confirm:hover{
background-color: #050 !important;
}
/* Fix SLSP pour la couleur du bouton secondaire */
.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
background-color:#ffdddd !important;
border: 1px solid #ae0010;
}
/* Fix SLSP pour le bouton ""élargir" */
button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
background-color: #D3D3D3!important;
}
+/*****************This entry remove default color from various forms*******************/
+
+.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
+md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
+md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
+md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
+md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
+prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
+prm-tags-list md-chips .md-chip-input-container::after {
+ background-color: #ff0000 !important;
+}
+
md-card.psfooter, md-card.psfooter-legal,
md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
background-color: #d6d6d6 !important;
}
md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
md-card.prm-primary-bg.psfooter-legal span.legal {
color: #3a3a3a !important;
}
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
color: #ff0000 !important;
}
/* Couleur rouge pour les logos téléphone, mail, etc. */
.puce{
text-decoration: none !important;
}
.puce > span:first-child{
color: #ff0000;
fill: #ff0000;
}
h1.md-headline{
font-size: 36px;
line-height: 42px;
}
h2.md-headline{
font-size: 28px;
line-height: 34px;
}
md-content.epfl-row {
justify-content: center;
}
.epfl-row md-card-title{
flex: none;
}
.epfl-row md-card {
height: 100%;
}
.epfl-social a{
text-decoration: none !important;
}
-prm-account-links-after p {
+prm-account-links-after div {
+ display: flex;
+ align-items: center;
margin-top: 10px;
}
+prm-account-links-after img{
+ margin-right: 5px;
+}
/* Empêcher les retours à la ligne pour les cotes */
span[ng-if="$ctrl.location.callNumber"]{
white-space: nowrap
}
+/*****************This entry adapt the message fee*******************/
+
+.feemsg {
+ background-color: #ffcccc;
+ border-radius: 3px;
+ padding: 8px;
+}
+
+.feemsg>div {
+ margin-left: 10px;
+}
+
+.bigfont {
+ font-size: 20px;
+}
+
/* Bouton de la recherche avancée */
.search-switch-buttons span{
font-variant: small-caps;
font-size: 1.15em;
}
.search-switch-buttons button{
border: none !important;
}
/* Message d'alerte */
prm-search-bar>div {
height: inherit !important;
min-height: inherit !important;
}
prm-search-bar-after>div {
background-color: #fff !important;
margin-top: 20px;
padding: 10px 15px;
}
prm-search-bar-after p {
margin: 0 12px;
}
.info-symbol::before {
content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
width: 24px;
height: 24px;
position: absolute;
display: inline-block;
top: 50%;
left: .6rem;
width: 1.6rem;
height: 1.6rem;
margin-top: -.8rem;
}
.info-symbol {
position: relative;
}
.info-symbol div {
margin-left: 50px;
}
prm-search-bar-after p {
padding: .25em 0 .25em;
margin: 0;
}
prm-search-bar-after a {
color: black;
text-decoration: underline;
}
/* Mise en évidence des boutons pour les demandes de service */
/* span[translate="AlmaRequest"] {
text-decoration: underline #0B0 3px;
padding: 2px 6px;
}
span[translate="AlmaRequest"]:hover{
background-color: #050 !important;
text-decoration: none;
color: white;
border-radius: 2px;
}
span[translate="nui.request.request"]{
display: none;
} */
/* Soulignement des boutons proposant un service */
prm-service-button button, .greenbutton {
padding-left: 0px !important;
padding-right: 0px !important;
}
prm-service-button button > span, .greenbutton>span {
background-color: #080 !important;
color: white !important;
padding: 2px 6px;
border-radius: 2px;
}
prm-service-button button > span:hover, .greenbutton>span:hover {
background-color: #050 !important;
}
/* Suppression du sous-titre demande */
span[translate="nui.request.request"]{
display: none;
}
/* Suppression du bouton PEB
span[translate="AlmaResourceSharing"]{
display: none;
}
.links-block .separated-block-item::after{
content: none !important;
} */
/* Crée la place pour le titre et le sous-titre */
prm-topbar {
height: 150px !important;
}
prm-main-menu[menu-type="menu"],
.top-nav-bar,
prm-search-bookmark-filter
{
max-height: 60px !important;
height: 60px !important;
min-height: auto !important;
}
/* Mise en forme du titre et sous-titre */
.main-title{
padding: .85em;
background-color: white;
}
.main-title h1{
font-size: 2em !important;
margin-bottom: 0;
}
.main-title h1 > a{
color: black;
}
prm-main-menu[menu-type="menu"] #mainMenu>div {
border-bottom: solid #ddd 1px;
}
.main-title h2{
font-size: 1.2em !important;
font-weight: bold;
}
/* Adapte le sous-titre lorsque l'écran est relativement petit */
@media only screen and (max-width: 660px){
.main-title h2{
font-size: 1.1em !important;
}
}
/* Menu sur les petits écrans */
prm-main-menu[menu-type="full"] .md-button .md-headline{
color: #ff9999 !important;
}
prm-main-menu .md-subhead{
display: none;
}
.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
margin-top: 6em !important;
}
/* Menu sur grand écran */
prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
color: #222 !important;
}
/* Petit triangle du menu */
prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
background-color: inherit;
}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css b/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css
index 8e698ab..c3625eb 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css
+++ b/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css
@@ -1,335 +1,363 @@
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** Central Package CSS ******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************** Navigation ******************/
/*Font Navigation and buttons*/
#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
font-size: small !important;
font-weight: 500 !important;
color: #111 !important;
}
/*hover effect Navigation and buttons*/
#mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]), .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]) {
background-color: #ddd !important;
color: #111 !important;
}
/*remove capitalized text*/
.md-button {
text-transform: none;
}
/*Menu button*/
button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
.md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
color: #111 !important;
}
/*hide hover effect on Library Logo*/
#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
background: none;
}
/*background buttons*/
prm-search-bookmark-filter .md-button {
background-color: #fff !important;
}
/*hiding Refworks from the pulldown menu*/
.my-refworks-ctm, .my-refworks-separator-ctm {
display: none;
}
/*switch to advanced search button*/
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-style: solid;
border-width: 1px;
border-radius: 5px;
}
.md-button.button-confirm {
border: 1px solid #ffffff;
}
.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
color: #fff;
background-color:#111;
}
/*the main color border on mobile view*/
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-bottom-style: solid;
border-bottom-width: 8px;
}
}
/*************** Main Content ******************/
/*backgound of the Textboxes Homepage*/
prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
background-color: #fff !important;
border-radius: 3px;
}
/*first header of the Textboxes*/
.cardbox h1 {
font-size: 48px;
line-height: 56px;
}
/*second header of the Textboxes*/
.cardbox h2 {
font-size: 32px;
line-height: 36px;
}
/*third header of the Textboxes (if needed)*/
.cardbox h3 {
font-size: 26px;
line-height: 30px;
}
/*removes the upper and lower space in a list */
.cardbox ul, .cardbox ol {
margin-top: 0px !important;
margin-bottom: 0px !important;
}
/*links in the textboxes*/
md-card-content a, prm-service-details a {
color: #222222 !important;
}
md-card-content a, prm-service-details a, div.courier-info > span a {
text-decoration: underline !important;
}
md-card-content a:hover, prm-service-details a:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*Responsive Video Frame*/
.resp-container {
position: relative;
overflow: hidden;
padding-top: 56.25%;
}
.resp-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter {
margin: 16px 0 0 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter-legal {
margin: 1px 0 0 0;
}
/*Responsive footer layout*/
@media (min-width: 960px) {
md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
text-align: end;
}
}
/*footer links*/
md-icon.ps_icon, a.ps_link {
margin-right: 5%;
text-decoration: underline;
}
/*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
background-color: rgba(61,110,148,.1) !important;
}*/
/*footer text*/
md-card-content.prm-primary-bg {
font-weight: 300;
}
/*links in the legal part of the footer*/
a.ps_link.legal, span.legal {
font-size: 14px;
font-weight: 300;
}
/************************************************************************************************
span.legal {
color: #14413c;
}
*/
span.legal > a {
/*color: #14413c;*/
font-weight: 600;
}
/*main container width for footer positioning*/
prm-static.md-padding.flex {
min-width: 100%;
padding: 0;
}
/*mainly white background*/
.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
background-color: #fff !important;
}
/*font color on white background*/
.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
color: #222 !important;
}
/*************** Brief results ******************/
/*color of the Alertbar*/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
/*background-color: #8dd8d8 !important;*/
border: none !important;
}
/*backgound search results boxes*/
.list-item-wrapper {
background-color: #f9f9f9;
}
/*Title color*/
prm-brief-result .item-title span {
color: #333;
}
prm-brief-result .item-title span:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*remove hover effect from title links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
box-shadow: none !important;
}
/*background color of bookmarked items*/
.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
background-color: #ddd !important;
}
/*hover effect on all Links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
color: #222 !important;
}
div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
background-color: #6b6b6b !important;
}
/*Facet titles*/
span.section-title-header:hover {
color: #8a8a8a !important;
}
/*underlined search results*/
/*.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
}*/
/*versions link and other*/
.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
color: #222 !important;
}
/*icon color and text color in request forms*/
.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
color: #222 !important;
}
/*space between item details in Fullview*/
#item-details > div > div {
margin-bottom: .8em !important;
}
/*fullview background of the left part*/
.md-dialog-container.fixed-container {
background-color: #444 !important;
}
/*background color of the signin window and the fullscreen navigation*/
md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
background-color: #1f1f1f !important;
}
/*text color of the signin window and the fullscreen navigation*/
prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
color: #fff !important;
}
/*hiding the Library Logo in the login window*/
.login-header {
display: none;
}
/*alertbar for the courier info*/
.courier-info {
margin: 0px 8px;
}
/*Library info icon*/
prm-location-items-after > div > span > a > img {
vertical-align: middle;
max-width: 30px;
margin: 4px 12px;
}
/*Library card Personal details display*/
#personalDetails > md-card-content > div {
flex-flow: column;
}
#prm_contact\.address_1 {
width: 400px;
}
+/*Full view Resource sharing */
+#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
+ display: flex;
+ flex-direction: column;
+}
+
+prm-opac {
+ order: 1;
+}
+
+prm-alma-other-members {
+ order: 2;
+ display: grid;
+}
+
+alma-htgi-svc {
+ order: 3;
+}
+
+primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
+ order: 0 !important;
+}
+
+.medium-uppercase-bold {
+ text-transform: none;
+ font-size: 1em;
+}
+
/******************************************************************************/
/************************************ Help Page *******************************/
/******************************************************************************/
#help img {
max-width: 100%;
height: auto;
}
img.icon_up1 {
width: 16px;
float: right;
margin: 13px 2px;
}
img.icon_up2 {
width: 10px;
float: right;
margin: 4px;
}
a > h3:hover {
background-color: #eee !important;
}
/*****************lenght of the address field in personal details**************/
/*#personalDetails > md-card-content {
flex-direction: column;
}
#prm_contact\.address_1 {
min-width: 420px;
}*/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/********************** End of the Central Package CSS ************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css b/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css
index ddbaec9..88b903c 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css
+++ b/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css
@@ -1,95 +1,66 @@
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** EPFL CUSTOM COLORS *******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/* This file contains the EPFL part of the custom package. The SLSP part is in
the custom_slsp.css file. */
/*****************This two entries are the background of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg,
md-checkbox.md-checked ._md-icon, md-tabs md-ink-bar, md-radio-button.md-checked ._md-on, button.switch-to-simple, .md-button.button-confirm {
background-color: #ff0000 !important;
}
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-color: #ff0000 !important;
}
}
/*****************This entry is the mouse over background of the links and buttons*******************/
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
button.switch-to-simple:hover, .md-button.button-confirm:hover {
background-color: #ae0010 !important;
}
/*****************This two entries are the font color of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, .md-button.switch-to-advanced, button.switch-to-simple,
span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, md-checkbox.md-checked ._md-icon, .md-button.button-confirm {
color: #fff !important;
}
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-color: #c1c1c1 !important;
}
/*****************This two entries are the background of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
background-color: #ffcccc !important;
}
.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
}
/*****************This entry is the font color of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
color: #111111 !important;
}
-
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
-
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css b/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css
index e2e9a0c..a079444 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css
+++ b/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css
@@ -1,33 +1,45 @@
/*****************Selected text color*******************/
::selection {
background: #ffbe8f; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffbe8f; /* Gecko Browsers */
}
/*****************This entry remove default color from various texts*******************/
md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
color: #ffcccc !important;
}
/* Bouton pour confirmer une demande */
prm-request button.md-button.button-confirm{
background-color: #080 !important;
}
prm-request button.md-button.button-confirm:hover{
background-color: #050 !important;
}
/* Fix SLSP pour la couleur du bouton secondaire */
.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
background-color:#ffdddd !important;
border: 1px solid #ae0010;
}
/* Fix SLSP pour le bouton ""élargir" */
button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
background-color: #D3D3D3!important;
}
+
+/*****************This entry remove default color from various forms*******************/
+
+.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
+md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
+md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
+md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
+md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
+prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
+prm-tags-list md-chips .md-chip-input-container::after {
+ background-color: #ff0000 !important;
+}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmAccountLink.css b/primo-explore/custom/41SLSP_EPF-prod/css/prmAccountLink.css
index 92cb00d..25c5181 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/prmAccountLink.css
+++ b/primo-explore/custom/41SLSP_EPF-prod/css/prmAccountLink.css
@@ -1,3 +1,8 @@
-prm-account-links-after p {
+prm-account-links-after div {
+ display: flex;
+ align-items: center;
margin-top: 10px;
}
+prm-account-links-after img{
+ margin-right: 5px;
+}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmRequest.css b/primo-explore/custom/41SLSP_EPF-prod/css/prmRequest.css
new file mode 100644
index 0000000..1ebe3ea
--- /dev/null
+++ b/primo-explore/custom/41SLSP_EPF-prod/css/prmRequest.css
@@ -0,0 +1,15 @@
+/*****************This entry adapt the message fee*******************/
+
+.feemsg {
+ background-color: #ffcccc;
+ border-radius: 3px;
+ padding: 8px;
+}
+
+.feemsg>div {
+ margin-left: 10px;
+}
+
+.bigfont {
+ font-size: 20px;
+}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js b/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js
index 53443aa..dd90628 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js
@@ -1,16 +1,19 @@
"use strict";
/*
OBJECTIF: Ajouter le lien vers SWITCH edu-ID.
REMARQUES: contient juste les liens vers SWITCH edu-ID et vers
l'application de changement des code-barres.
*/
module.exports = {
bindings: {parentCtrl: '<'},
controllerAs: 'ctrl',
controller: [function() {
var vm = this;
+ console.log(vm);
+ vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');
+
}],
- template: `<div ng-if="ctrl.parentCtrl.tabName=='personalsettings'"><p>{{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">eduid.ch</a></p></div>`
+ template: `<div ng-if="ctrl.parentCtrl.tabName=='personalsettings'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">https://eduid.ch</a></div>`
};
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js b/primo-explore/custom/41SLSP_EPF-prod/js/custom.js
index 9da7784..d070646 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/custom.js
@@ -1,2 +1,2 @@
-!function a(s,o,l){function c(t,e){if(!o[t]){if(!s[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(u)return u(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=o[t]={exports:{}};s[t][0].call(i.exports,function(e){return c(s[t][1][e]||e)},i,i.exports,a,s,o,l)}return o[t].exports}for(var u="function"==typeof require&&require,e=0;e<l.length;e++)c(l[e]);return c}({1:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:[function(){}],template:"<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><p>{{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">eduid.ch</a></p></div>"}},{}],2:[function(e,t,r){"use strict";angular.module("accountModule",["angularLoad"]).component("prmAccountLinksAfter",e("./accountlinks.component.js"))},{"./accountlinks.component.js":1}],3:[function(e,t,r){"use strict";angular.module("customTranslateFilter",[]).filter("customTranslate",["$translate",function(r){return function(e){var t={costWarningScan:{fr:'<b><span class="bigfont" style="font-size:20px">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>',en:'<b><span class="bigfont" style="font-size:20px">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>',de:'<b><span class="bigfont" style="font-size:20px">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>',it:'<b><span class="bigfont" style="font-size:20px">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell\'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>'},costWarningScanEPFL:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",en:"<b>Free of charge for EPFL staff and students.</b>",de:"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"},costWarningNetworkLoan:{fr:"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",en:"<b>Free of charge if withdrawal at the EPFL Library.</b>",de:"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",it:"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"},costWarningPEB:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",en:"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",de:"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."},mainTitle:{fr:"Catalogue BEAST",en:"BEAST discovery tool",de:"BEAST Wissensportal",it:"Catalogo BEAST"},subTitle:{fr:"Le point d'accès à toutes les ressources de la Bibliothèque de l'EPFL",en:"The access portal to all the resources of the EPFL Library",de:"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",it:"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"},switchEduID:{fr:"Modifier vos informations personnelles sur",en:"Change your personal data on",de:"Ändern Sie Ihre persönlichen Daten auf",it:"Modifica i tuoi dati personali sul"},illButton:{fr:"Prêt entre bibliotèques (PEB)",en:"Inter Library Loan (ILL)",de:"Fernleihe",it:"Prestito interbibliotecario"}};return["en","fr","it","de"].includes(r.use())?t[e][r.use()]:t[e].fr}}])},{}],4:[function(e,t,r){"use strict";angular.module("trustHtmlFilter",[]).filter("trustHtml",["$sce",function(t){return function(e){return t.trustAsHtml(e)}}])},{}],5:[function(e,t,r){"use strict";t.exports={active:!0,txt:{fr:'<div class="info-symbol" style="text-align:left">\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">SLSP</a></p></div>\n </div>',en:'<div class="info-symbol" style="text-align:left">\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a>: a new and wider network.</p></div>\n </div>',de:'<div class="info-symbol" style="text-align:left">\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">SLSP</a></p></div>\n </div>',it:'<div class="info-symbol" style="text-align:left">\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a></p></div>\n </div>'},begin:"2020-01-04T00:00:00Z",end:"2021-03-31T12:00:00Z"}},{}],6:[function(e,t,r){"use strict";var n;(n=angular.module("homepageModule",["angularLoad"])).component("prmTopbarAfter",e("./topbar.component.js")),n.component("prmSearchBarAfter",e("./searchbar.component.js"))},{"./searchbar.component.js":7,"./topbar.component.js":8}],7:[function(n,e,t){"use strict";e.exports={bindings:{parentCtrl:"<"},template:'<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',controllerAs:"ctrl",controller:["$translate",function(t){var r=this;if(r.alert=n("./alert.js"),!(r.active=!1)===r.alert.active){var e=Date.now();new Date(r.alert.begin)<e&&e<new Date(r.alert.end)&&(r.active=!0)}r.get_txt=function(){var e=["en","fr","it","de"].includes(t.use())?t.use():"en";return r.active?r.alert.txt[e]:""},r.parentCtrl.showTabsAndScopes=!0}]}},{"./alert.js":5}],8:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:["$location","$translate",function(e,t){this.url=window.location.href.split("?")[0]+"?vid="+this.parentCtrl.configurationUtil.vid+"&lang="+t.use()}],template:"<div class=\"main-title\"><h1><a href=\"{{ ::ctrl.url }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>"}},{}],9:[function(e,t,r){"use strict";e("./slsp/epfl_custom_slsp.js"),e("./homepage/index.js"),e("./filters/custom_translate.filter.js"),e("./filters/trust_html.filter.js"),e("./account/index.js"),angular.module("viewCustom",["angularLoad","centralCustom","homepageModule","customTranslateFilter","trustHtmlFilter","accountModule"])},{"./account/index.js":2,"./filters/custom_translate.filter.js":3,"./filters/trust_html.filter.js":4,"./homepage/index.js":6,"./slsp/epfl_custom_slsp.js":10}],10:[function(e,t,r){"use strict";var n;(n=angular.module("centralCustom",["angularLoad"])).controller("CourierInfoController",["$filter",function(e){var r=this;Object.defineProperty(r.parentCtrl,"form",{configurable:!0,get:function(){var e=this.getFilteredForm(["label","multiLabel"],!1);if(!r.hasOwnProperty("pickupLocationsListOrdered"))for(var t=0;t<e.length;t++)if("pickupInstitution"==e[t].key){e[t].options.sort(function(e,t){var r=["41SLSP_EPF","41SLSP_EPFL"];return(e=r.indexOf(e.value))==(t=r.indexOf(t.value))?0:e<t?1:-1}),r.pickupLocationsListOrdered=!0}return e}}),r.isEPFL=function(){return!!(r.parentCtrl.requestService&&0<r.parentCtrl.requestService._service["link-to-service"].indexOf("institution=41SLSP_EPF"))},r.linkBase="https://slsp.ch/fees",r.typeFeeAlert=function(){return["almaRequest.header","almaRequestOther.header"].includes(r.parentCtrl.requestHeader)?"costWarningNetworkLoan":["almaDigitization.header","almaDigitizationOther.header","almaItemDigitization.header"].includes(r.parentCtrl.requestHeader)?r.isEPFL()?"costWarningScanEPFL":"costWarningScan":"almaResourceSharing.header"===r.parentCtrl.requestHeader?"costWarningPEB":"costWarningGeneral"},r.getFeeAlert=function(){return e("customTranslate")(r.typeFeeAlert())},r.get_peb_button=function(){for(var e=document.getElementsByTagName("span"),t=0,r=e.length;t<r;t++)if("AlmaResourceSharing"===e[t].getAttribute("translate")&&-1===e[t].parentNode.className.indexOf("greenbutton"))return e[t]},r.click_peb=function(){var e=r.get_peb_button();e?e.click():window.location.href=window.location.origin+"/discovery/blankIll?vid="+r.parentCtrl.vid}}]),n.component("prmRequestAfter",{bindings:{parentCtrl:"<"},controller:"CourierInfoController",template:'<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">\n <img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />\n <div>\n <div ng-if="$ctrl.typeFeeAlert()!=\'costWarningScanEPFL\'">\n <span class="md-subhead">\n <a href="{{ $ctrl.linkBase }}" target="_blank">\n <span translate="customized.fulldisplay.fees"></span>\n </a>\n </span>\n </div>\n <div>\n <span ng-if="$ctrl.typeFeeAlert()!=\'costWarningGeneral\'" ng-bind-html="$ctrl.getFeeAlert() "></span>\n <span ng-if="$ctrl.typeFeeAlert()==\'costWarningScan\'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ \'illButton\' | customTranslate }}</span></button></span>\n </div>\n\n </div>\n </div>'}),n.controller("LibInfoController",[function(){var e=this;e.biblinkText="Library",e.getLibrary=function(){return e.parentCtrl.currLoc?e.parentCtrl.currLoc.location.librarycodeTranslation:""},e.getLibraryUrl=function(){return e.parentCtrl.loc&&"E02"===e.parentCtrl.loc.location.libraryCode?"https://go.epfl.ch/library":"https://slsp.ch/libraries"}}]),n.component("prmLocationItemsAfter",{bindings:{parentCtrl:"<"},controller:"LibInfoController",controllerAs:"ctrl",template:'<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'})},{}]},{},[9]);
+!function a(s,l,o){function c(t,e){if(!l[t]){if(!s[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(u)return u(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=l[t]={exports:{}};s[t][0].call(i.exports,function(e){return c(s[t][1][e]||e)},i,i.exports,a,s,l,o)}return l[t].exports}for(var u="function"==typeof require&&require,e=0;e<o.length;e++)c(o[e]);return c}({1:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:[function(){var e=this;console.log(e),e.view=e.parentCtrl.accountLinksService.vid.replace(":","-")}],template:'<div ng-if="ctrl.parentCtrl.tabName==\'personalsettings\'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ \'switchEduID\' | customTranslate | trustHtml }} <a href="https://eduid.ch">https://eduid.ch</a></div>'}},{}],2:[function(e,t,r){"use strict";angular.module("accountModule",["angularLoad"]).component("prmAccountLinksAfter",e("./accountlinks.component.js"))},{"./accountlinks.component.js":1}],3:[function(e,t,r){"use strict";angular.module("customTranslateFilter",[]).filter("customTranslate",["$translate",function(r){return function(e){var t={costWarningScan:{fr:'<b><span class="bigfont" style="font-size:20px">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>',en:'<b><span class="bigfont" style="font-size:20px">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>',de:'<b><span class="bigfont" style="font-size:20px">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>',it:'<b><span class="bigfont" style="font-size:20px">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell\'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>'},costWarningScanEPFL:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",en:"<b>Free of charge for EPFL staff and students.</b>",de:"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"},costWarningNetworkLoan:{fr:"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",en:"<b>Free of charge if withdrawal at the EPFL Library.</b>",de:"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",it:"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"},costWarningPEB:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",en:"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",de:"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."},mainTitle:{fr:"Catalogue BEAST",en:"BEAST discovery tool",de:"BEAST Wissensportal",it:"Catalogo BEAST"},subTitle:{fr:"Le point d'accès à toutes les ressources de la Bibliothèque de l'EPFL",en:"The access portal to all the resources of the EPFL Library",de:"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",it:"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"},switchEduID:{fr:"Modifier vos informations personnelles sur",en:"Change your personal data on",de:"Ändern Sie Ihre persönlichen Daten auf",it:"Modifica i tuoi dati personali sul"},illButton:{fr:"Prêt entre bibliotèques (PEB)",en:"Inter Library Loan (ILL)",de:"Fernleihe",it:"Prestito interbibliotecario"}};return["en","fr","it","de"].includes(r.use())?t[e][r.use()]:t[e].fr}}])},{}],4:[function(e,t,r){"use strict";angular.module("trustHtmlFilter",[]).filter("trustHtml",["$sce",function(t){return function(e){return t.trustAsHtml(e)}}])},{}],5:[function(e,t,r){"use strict";t.exports={active:!0,txt:{fr:'<div class="info-symbol" style="text-align:left">\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">SLSP</a></p></div>\n </div>',en:'<div class="info-symbol" style="text-align:left">\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a>: a new and wider network.</p></div>\n </div>',de:'<div class="info-symbol" style="text-align:left">\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">SLSP</a></p></div>\n </div>',it:'<div class="info-symbol" style="text-align:left">\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a></p></div>\n </div>'},begin:"2020-01-04T00:00:00Z",end:"2021-03-31T12:00:00Z"}},{}],6:[function(e,t,r){"use strict";angular.module("homepageModule",["angularLoad"]).component("prmSearchBarAfter",e("./searchbar.component.js"))},{"./searchbar.component.js":7}],7:[function(n,e,t){"use strict";e.exports={bindings:{parentCtrl:"<"},template:'<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',controllerAs:"ctrl",controller:["$translate",function(t){var r=this;if(r.alert=n("./alert.js"),!(r.active=!1)===r.alert.active){var e=Date.now();new Date(r.alert.begin)<e&&e<new Date(r.alert.end)&&(r.active=!0)}r.get_txt=function(){var e=["en","fr","it","de"].includes(t.use())?t.use():"en";return r.active?r.alert.txt[e]:""},r.parentCtrl.showTabsAndScopes=!0}]}},{"./alert.js":5}],8:[function(e,t,r){"use strict";e("./slsp/epfl_custom_slsp.js"),e("./homepage/index.js"),e("./filters/custom_translate.filter.js"),e("./filters/trust_html.filter.js"),e("./account/index.js"),angular.module("viewCustom",["angularLoad","centralCustom","homepageModule","customTranslateFilter","trustHtmlFilter","accountModule"])},{"./account/index.js":2,"./filters/custom_translate.filter.js":3,"./filters/trust_html.filter.js":4,"./homepage/index.js":6,"./slsp/epfl_custom_slsp.js":9}],9:[function(e,t,r){"use strict";var n;(n=angular.module("centralCustom",["angularLoad"])).controller("CourierInfoController",["$filter",function(e){var r=this;Object.defineProperty(r.parentCtrl,"form",{configurable:!0,get:function(){var e=this.getFilteredForm(["label","multiLabel"],!1);if(!r.hasOwnProperty("pickupLocationsListOrdered"))for(var t=0;t<e.length;t++)if("pickupInstitution"==e[t].key){e[t].options.sort(function(e,t){var r=["41SLSP_EPF","41SLSP_EPFL"];return(e=r.indexOf(e.value))==(t=r.indexOf(t.value))?0:e<t?1:-1}),r.pickupLocationsListOrdered=!0}return e}}),r.isEPFL=function(){return!!(r.parentCtrl.requestService&&0<r.parentCtrl.requestService._service["link-to-service"].indexOf("institution=41SLSP_EPF"))},r.linkBase="https://slsp.ch/fees",r.typeFeeAlert=function(){return["almaRequest.header","almaRequestOther.header"].includes(r.parentCtrl.requestHeader)?"costWarningNetworkLoan":["almaDigitization.header","almaDigitizationOther.header","almaItemDigitization.header"].includes(r.parentCtrl.requestHeader)?r.isEPFL()?"costWarningScanEPFL":"costWarningScan":"almaResourceSharing.header"===r.parentCtrl.requestHeader?"costWarningPEB":"costWarningGeneral"},r.getFeeAlert=function(){return e("customTranslate")(r.typeFeeAlert())},r.get_peb_button=function(){for(var e=document.getElementsByTagName("span"),t=0,r=e.length;t<r;t++)if("AlmaResourceSharing"===e[t].getAttribute("translate")&&-1===e[t].parentNode.className.indexOf("greenbutton"))return e[t]},r.click_peb=function(){var e=r.get_peb_button();e?e.click():window.location.href=window.location.origin+"/discovery/blankIll?vid="+r.parentCtrl.vid}}]),n.component("prmRequestAfter",{bindings:{parentCtrl:"<"},controller:"CourierInfoController",template:'<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">\n <img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />\n <div>\n <div ng-if="$ctrl.typeFeeAlert()!=\'costWarningScanEPFL\'">\n <span class="md-subhead">\n <a href="{{ $ctrl.linkBase }}" target="_blank">\n <span translate="customized.fulldisplay.fees"></span>\n </a>\n </span>\n </div>\n <div>\n <span ng-if="$ctrl.typeFeeAlert()!=\'costWarningGeneral\'" ng-bind-html="$ctrl.getFeeAlert() "></span>\n <span ng-if="$ctrl.typeFeeAlert()==\'costWarningScan\'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ \'illButton\' | customTranslate }}</span></button></span>\n </div>\n\n </div>\n </div>'}),n.controller("LibInfoController",[function(){var e=this;e.biblinkText="Library",e.biblinkBase="https://slsp.ch/libraries",e.getLibraryUrl=function(){return e.parentCtrl.loc&&"E02"===e.parentCtrl.loc.location.libraryCode?"https://go.epfl.ch/library":e.biblinkBase},e.view=e.parentCtrl.configurationUtil.vid.replace(":","-"),e.getLibrary=function(){return e.parentCtrl.currLoc?e.parentCtrl.currLoc.location.librarycodeTranslation:""}}]),n.component("prmLocationItemsAfter",{bindings:{parentCtrl:"<"},controller:"LibInfoController",controllerAs:"ctrl",template:'<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'}),n.service("userService",["jwtHelper",function(r){this.isGuest=function(){var e=sessionStorage.getItem("primoExploreJwt");if(!e)return!0;var t=r.decodeToken(e);return!("GUEST"!==t.userGroup?t.userName:"")}}]),n.controller("IllBoxController",["$scope","$location","$translate","userService",function(e,t,r,n){return e.starturl=window.location.href.split("?")[0]+"?vid="+e.$ctrl.parentCtrl.configurationUtil.vid+"&lang="+r.use(),e.usrNme=n.isGuest(),1!=e.usrNme?angular.element(document.querySelector("primo-explore")).removeClass("logged-out"):angular.element(document.querySelector("primo-explore")).addClass("logged-out")}]),n.component("prmTopbarAfter",{bindings:{parentCtrl:"<"},controller:"IllBoxController",template:"<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>"}),n.controller("AlertMsgController",["$scope",function(e){var r=this;r.getAlert=function(){var e=r.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg,t=angular.element(document.querySelector("primo-explore"));return 0<e.length?t.addClass("alert"):t.removeClass("alert")}}]),n.component("almaHowovpAfter",{bindings:{parentCtrl:"<"},controller:"AlertMsgController",template:'<div style="display:none">{{$ctrl.getAlert()}}</div>'})},{}]},{},[8]);
//# sourceMappingURL=custom.js.map
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map b/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map
index dfde6a9..8643b13 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map
@@ -1 +1 @@
-{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js","primo-explore/custom/41SLSP_EPF-prod/js/account/index.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/custom_translate.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/trust_html.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/alert.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/topbar.component.js","primo-explore/custom/41SLSP_EPF-prod/js/main.js","primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","template","angular","component","filter","$translate","txt","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","includes","use","$sce","trustAsHtml","active","begin","end","homepage_module","vm","this","alert","d_now","Date","now","get_txt","lang","showTabsAndScopes","$location","url","window","location","href","split","configurationUtil","vid","app","$filter","Object","defineProperty","configurable","get","form","getFilteredForm","hasOwnProperty","key","options","sort","b","onTopInstitutions","indexOf","value","isEPFL","requestService","_service","linkBase","typeFeeAlert","requestHeader","getFeeAlert","get_peb_button","allElements","document","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","origin","biblinkText","getLibrary","currLoc","librarycodeTranslation","getLibraryUrl","loc","libraryCode"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,cAGbC,SAAA,6MCbqBC,QAAQN,OAAO,gBAAiB,CAAC,gBACvCO,UAAU,uBAAwBjB,EAAQ,uFCF7D,aAoCkCgB,QAAQN,OAAO,wBAAyB,IACjEQ,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAASC,GACZ,IAAIC,EAAO,CACPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,gCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,gCAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMQ,SAASf,EAAWgB,OACtCd,EAAKD,GAAKD,EAAWgB,OAErBd,EAAKD,GAAKG,+BC5FjC,aAYAP,QAAQN,OAAO,kBAAmB,IAC7BQ,OAAO,YAAa,CAAC,OAAQ,SAASkB,GACvC,OAAO,SAAShB,GACZ,OAAOgB,EAAKC,YAAYjB,4CCfhCV,EAAOJ,QAAU,CAACgC,QAAQ,EACzBlB,IACG,CAACG,GAAA,2QAGAC,GAAA,sQAGAC,GAAA,4QAGAC,GAAA,qRAGJa,MAAM,uBACNC,IAAI,6DCfL,IACQC,GAAAA,EAAkBzB,QAAQN,OAAO,iBAAkB,CAAC,iBACxCO,UAAU,iBAAkBjB,EAAQ,0BACpDyC,EAAgBxB,UAAU,oBAAqBjB,EAAQ,2GCH3D,aASAU,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBG,SAAU,4FACVF,aAAa,OACbC,WAAY,CAAC,aAAc,SAASK,GAEhC,IAAIuB,EAAKC,KAaT,GANAD,EAAGE,MAAQ5C,EAAQ,gBAGnB0C,EAAGJ,QAAS,KAGRI,EAAGE,MAAMN,OAAgB,CAGzB,IAAIO,EAAQC,KAAKC,MACZ,IAAID,KAAKJ,EAAGE,MAAML,OAASM,GAAWA,EAAQ,IAAIC,KAAKJ,EAAGE,MAAMJ,OAEjEE,EAAGJ,QAAS,GAKpBI,EAAGM,QAAU,WACT,IAAIC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAMf,SAASf,EAAWgB,OAAShB,EAAWgB,MAAM,KAClF,OAAOO,EAAGJ,OAASI,EAAGE,MAAMxB,IAAI6B,GAAQ,IAQ5CP,EAAG9B,WAAWsC,mBAAoB,2CCjD9C,aAQAxC,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,YAAa,aAAc,SAASqC,EAAWhC,GAC/CwB,KACNS,IAAMC,OAAOC,SAASC,KAAKC,MAAM,KAAK,GAAK,QADrCb,KACkD/B,WAAW6C,kBAAkBC,IAAM,SAAWvC,EAAWgB,QAIxHpB,SAAA,iMCXJf,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBAEUgB,QAAQN,OAAO,aAAc,CAAC,cAAe,gBAAiB,iBAAkB,wBAAyB,kBAAmB,kNCZtI,IAEQiD,GAAAA,EAAM3C,QAAQN,OAAO,gBAAiB,CAAC,iBAevCI,WAAW,wBAAyB,CAAC,UAAW,SAAU8C,GAC1D,IAAIlB,EAAKC,KAGTkB,OAAOC,eAAepB,EAAG9B,WAAY,OAAQ,CACzCmD,cAAc,EACdC,IAAK,WAEG,IAAIC,EAAOtB,KAAKuB,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAKxB,EAAGyB,eAAe,8BACnB,IAAK,IAAItE,EAAI,EAAGA,EAAIoE,EAAKzD,OAAQX,IAC7B,GAAmB,qBAAfoE,EAAKpE,GAAGuE,IAA2B,CAQnCH,EAAKpE,GAAGwE,QAAQC,KAPhB,SAAkBpE,EAAGqE,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFAtE,EAAIsE,EAAkBC,QAAQvE,EAAEwE,UAChCH,EAAIC,EAAkBC,QAAQF,EAAEG,QACZ,EACbxE,EAAIqE,EAAI,GAAK,IAGxB7B,EAAA,4BAAmC,EAI/C,OAAOuB,KAMnBvB,EAAGiC,OAAS,WACR,SAAOjC,EAAG9B,WAAWgE,gBAA+G,EAA7FlC,EAAG9B,WAAWgE,eAAeC,SAAS,mBAAmBJ,QAAQ,4BAG5G/B,EAAGoC,SAAW,uBAGdpC,EAAGqC,aAAe,WACd,MAAI,CAAC,qBAAsB,2BAA2B7C,SAASQ,EAAG9B,WAAWoE,eAClE,yBACA,CAAC,0BACA,+BACA,+BACK9C,SAASQ,EAAG9B,WAAWoE,eAC7BtC,EAAGiC,SAAW,sBAAwB,kBACN,+BAAhCjC,EAAG9B,WAAWoE,cACd,iBAEA,sBAGftC,EAAGuC,YAAc,WACb,OAAOrB,EAAQ,kBAARA,CAA2BlB,EAAGqC,iBAIzCrC,EAAGwC,eAAiB,WAEhB,IADA,IAAIC,EAAcC,SAASC,qBAAqB,QACvCxF,EAAI,EAAGH,EAAIyF,EAAY3E,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7CsF,EAAYtF,GAAGyF,aAAa,eACoC,IAAhEH,EAAYtF,GAAG0F,WAAWC,UAAUf,QAAQ,eAE5C,OAAOU,EAAYtF,IAsB/B6C,EAAG+C,UAAY,WACX,IAAIC,EAAShD,EAAGwC,iBAEZQ,EACAA,EAAOC,QAEPtC,OAAOC,SAASC,KAAOF,OAAOC,SAASsC,OAAS,2BAA6BlD,EAAG9B,WAAW8C,QAWvGC,EAAI1C,UAAU,kBAAmB,CAC7BN,SAAU,CAAEC,WAAY,KACxBE,WAAY,wBACZC,SAAA,m+BAqBJ4C,EAAI7C,WAAW,oBAAqB,CAAC,WACjC,IAAI4B,EAAKC,KACTD,EAAGmD,YAAc,UAGjBnD,EAAGoD,WAAa,WAEZ,OAAOpD,EAAG9B,WAAWmF,QAAUrD,EAAG9B,WAAWmF,QAAQzC,SAAS0C,uBAAyB,IAG3FtD,EAAGuD,cAAgB,WACf,OAAIvD,EAAG9B,WAAWsF,KAC+B,QAAzCxD,EAAG9B,WAAWsF,IAAI5C,SAAS6C,YACpB,6BAGR,gCAIfxC,EAAI1C,UAAU,wBAAyB,CACnCN,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAa,OACbE,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><p>{{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">eduid.ch</a></p></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliotèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">SLSP</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">SLSP</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">SLSP</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">SLSP</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmTopbarAfter', require('./topbar.component.js'));\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs:'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: afficher l'entête de la page.\r\n REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie\r\n si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$location', '$translate', function($location, $translate) {\r\n var vm = this;\r\n vm.url = window.location.href.split('?')[0] + '?vid=' + vm.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();\r\n // console.log(vm);\r\n // console.log(vm.url);\r\n }],\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ ::ctrl.url }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n //templateUrl: './custom/41SLSP_EPF-prod/js/homepage/templates/topbar.html'\r\n};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad', 'centralCustom', 'homepageModule', 'customTranslateFilter', 'trustHtmlFilter', 'accountModule']);\r\n","(function () {\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', function ($filter) {\r\n var vm = this;\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n if (['almaRequest.header', 'almaRequestOther.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n // console.log(button);\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n template:\r\n `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n <div>\r\n <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n <span class=\"md-subhead\">\r\n <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n <span translate=\"customized.fulldisplay.fees\"></span>\r\n </a>\r\n </span>\r\n </div>\r\n <div>\r\n <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n </div>\r\n\r\n </div>\r\n </div>`\r\n });\r\n\r\n /* Icône avec le nom de la bibliothèque */\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n // console.log(vm);\r\n\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc) {\r\n if (vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\"\r\n }\r\n }\r\n return \"https://slsp.ch/libraries\";\r\n }\r\n\r\n }]);\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs:'ctrl',\r\n template: '<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
+{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js","primo-explore/custom/41SLSP_EPF-prod/js/account/index.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/custom_translate.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/trust_html.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/alert.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js","primo-explore/custom/41SLSP_EPF-prod/js/main.js","primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","vm","this","console","log","view","accountLinksService","vid","replace","template","angular","component","filter","$translate","txt","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","includes","use","$sce","trustAsHtml","active","begin","end","alert","d_now","Date","now","get_txt","lang","showTabsAndScopes","app","$filter","Object","defineProperty","configurable","get","form","getFilteredForm","hasOwnProperty","key","options","sort","b","onTopInstitutions","indexOf","value","isEPFL","requestService","_service","linkBase","typeFeeAlert","requestHeader","getFeeAlert","get_peb_button","allElements","document","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","window","location","href","origin","biblinkText","biblinkBase","getLibraryUrl","loc","libraryCode","configurationUtil","getLibrary","currLoc","librarycodeTranslation","service","jwtHelper","isGuest","jwt","sessionStorage","getItem","decodedToken","decodeToken","userGroup","userName","$scope","$location","userService","starturl","split","$ctrl","usrNme","element","querySelector","removeClass","addClass","getAlert","ga","almaHowToGetitService","reqAlert","_htmlMsg","myEl2"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,WACT,IAAIC,EAAKC,KACTC,QAAQC,IAAIH,GACZA,EAAGI,KAAOJ,EAAGH,WAAWQ,oBAAoBC,IAAIC,QAAQ,IAAK,OAGjEC,SAAA,kSChBqBC,QAAQd,OAAO,gBAAiB,CAAC,gBACvCe,UAAU,uBAAwBzB,EAAQ,uFCF7D,aAoCkCwB,QAAQd,OAAO,wBAAyB,IACjEgB,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAASC,GACZ,IAAIC,EAAO,CACPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,gCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,gCAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMQ,SAASf,EAAWgB,OACtCd,EAAKD,GAAKD,EAAWgB,OAErBd,EAAKD,GAAKG,+BC5FjC,aAYAP,QAAQd,OAAO,kBAAmB,IAC7BgB,OAAO,YAAa,CAAC,OAAQ,SAASkB,GACvC,OAAO,SAAShB,GACZ,OAAOgB,EAAKC,YAAYjB,4CCfhClB,EAAOJ,QAAU,CAACwC,QAAQ,EACzBlB,IACG,CAACG,GAAA,2QAGAC,GAAA,sQAGAC,GAAA,4QAGAC,GAAA,qRAGJa,MAAM,uBACNC,IAAI,6DCdqBxB,QAAQd,OAAO,iBAAkB,CAAC,gBACxCe,UAAU,oBAAqBzB,EAAQ,iFCF3D,aASAU,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBW,SAAU,4FACVV,aAAc,OACdC,WAAY,CAAC,aAAc,SAASa,GAEhC,IAAIZ,EAAKC,KAaT,GANAD,EAAGkC,MAAQjD,EAAQ,gBAGnBe,EAAG+B,QAAS,KAGR/B,EAAGkC,MAAMH,OAAgB,CAGzB,IAAII,EAAQC,KAAKC,MACZ,IAAID,KAAKpC,EAAGkC,MAAMF,OAASG,GAAWA,EAAQ,IAAIC,KAAKpC,EAAGkC,MAAMD,OAEjEjC,EAAG+B,QAAS,GAKpB/B,EAAGsC,QAAU,WACT,IAAIC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAMZ,SAASf,EAAWgB,OAAShB,EAAWgB,MAAM,KAClF,OAAO5B,EAAG+B,OAAS/B,EAAGkC,MAAMrB,IAAI0B,GAAQ,IAQ5CvC,EAAGH,WAAW2C,mBAAoB,wDC3C9CvD,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBAEUwB,QAAQd,OAAO,aAAc,CAAC,cAAe,gBAAiB,iBAAkB,wBAAyB,kBAAmB,gNCZtI,IAGQ8C,GAAAA,EAAMhC,QAAQd,OAAO,gBAAiB,CAAC,iBAgBvCI,WAAW,wBAAyB,CAAC,UAAW,SAAU2C,GAC1D,IAAI1C,EAAKC,KAGT0C,OAAOC,eAAe5C,EAAGH,WAAY,OAAQ,CACzCgD,cAAc,EACdC,IAAK,WAEG,IAAIC,EAAO9C,KAAK+C,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAKhD,EAAGiD,eAAe,8BACnB,IAAK,IAAInE,EAAI,EAAGA,EAAIiE,EAAKtD,OAAQX,IAC7B,GAAmB,qBAAfiE,EAAKjE,GAAGoE,IAA2B,CAQnCH,EAAKjE,GAAGqE,QAAQC,KAPhB,SAAkBjE,EAAGkE,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFAnE,EAAImE,EAAkBC,QAAQpE,EAAEqE,UAChCH,EAAIC,EAAkBC,QAAQF,EAAEG,QACZ,EACbrE,EAAIkE,EAAI,GAAK,IAGxBrD,EAAA,4BAAmC,EAI/C,OAAO+C,KAMnB/C,EAAGyD,OAAS,WACR,SAAOzD,EAAGH,WAAW6D,gBAA+G,EAA7F1D,EAAGH,WAAW6D,eAAeC,SAAS,mBAAmBJ,QAAQ,4BAG5GvD,EAAG4D,SAAW,uBAGd5D,EAAG6D,aAAe,WACd,MAAI,CAAC,qBAAsB,2BAA2BlC,SAAS3B,EAAGH,WAAWiE,eAClE,yBACA,CAAC,0BACA,+BACA,+BACKnC,SAAS3B,EAAGH,WAAWiE,eAC7B9D,EAAGyD,SAAW,sBAAwB,kBACN,+BAAhCzD,EAAGH,WAAWiE,cACd,iBAEA,sBAGf9D,EAAG+D,YAAc,WACb,OAAOrB,EAAQ,kBAARA,CAA2B1C,EAAG6D,iBAIzC7D,EAAGgE,eAAiB,WAEhB,IADA,IAAIC,EAAcC,SAASC,qBAAqB,QACvCrF,EAAI,EAAGH,EAAIsF,EAAYxE,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7CmF,EAAYnF,GAAGsF,aAAa,eACoC,IAAhEH,EAAYnF,GAAGuF,WAAWC,UAAUf,QAAQ,eAE5C,OAAOU,EAAYnF,IAsB/BkB,EAAGuE,UAAY,WACX,IAAIC,EAASxE,EAAGgE,iBAEZQ,EACAA,EAAOC,QAEPC,OAAOC,SAASC,KAAOF,OAAOC,SAASE,OAAS,2BAA6B7E,EAAGH,WAAWS,QAWvGmC,EAAI/B,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,wBACZS,SAAA,m+BAyBJiC,EAAI1C,WAAW,oBAAqB,CAAC,WACjC,IAAIC,EAAKC,KACTD,EAAG8E,YAAc,UACjB9E,EAAG+E,YAAc,4BAEjB/E,EAAGgF,cAAgB,WACf,OAAIhF,EAAGH,WAAWoF,KAAgD,QAAzCjF,EAAGH,WAAWoF,IAAIN,SAASO,YACzC,6BAEAlF,EAAG+E,aAGlB/E,EAAGI,KAAOJ,EAAGH,WAAWsF,kBAAkB7E,IAAIC,QAAQ,IAAK,KAC3DP,EAAGoF,WAAa,WAEZ,OAAOpF,EAAGH,WAAWwF,QAAUrF,EAAGH,WAAWwF,QAAQV,SAASW,uBAAyB,OAK/F7C,EAAI/B,UAAU,wBAAyB,CACnCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAc,OACdU,SAAA,+QAMJiC,EAAI8C,QAAQ,cAAe,CAAC,YAAa,SAAUC,GAC/CvF,KAAKwF,QAAU,WACX,IAAIC,EAAMC,eAAeC,QAAQ,mBACjC,IAAKF,EACD,OAAO,EAEX,IAAIG,EAAeL,EAAUM,YAAYJ,GAEzC,QAD0C,UAA3BG,EAAaE,UAAwBF,EAAaG,SAAW,QAWpFvD,EAAI1C,WAAW,mBAAoB,CAAC,SAAU,YAAa,aAAc,cAAe,SAAUkG,EAAQC,EAAWtF,EAAYuF,GAIzH,OAFAF,EAAOG,SAAW1B,OAAOC,SAASC,KAAKyB,MAAM,KAAK,GAAK,QAAUJ,EAAOK,MAAMzG,WAAWsF,kBAAkB7E,IAAM,SAAWM,EAAWgB,MACvIqE,EAAOM,OAASJ,EAAYV,UACP,GAAjBQ,EAAOM,OAMI9F,QAAQ+F,QAAQtC,SAASuC,cAAc,kBACtCC,YAAY,cANbjG,QAAQ+F,QAAQtC,SAASuC,cAAc,kBACtCE,SAAS,iBAWjClE,EAAI/B,UAAU,iBAAkB,CAC5Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,mBACZS,SAAA,2JAMJiC,EAAI1C,WAAW,qBAAsB,CAAC,SAAU,SAAUkG,GACtD,IAAIjG,EAAKC,KACTD,EAAG4G,SAEH,WACI,IAAIC,EAAK7G,EAAGH,WAAWiH,sBAAsBC,SAASC,SAClDC,EAAQxG,QAAQ+F,QAAQtC,SAASuC,cAAc,kBAEnD,OAAgB,EAAZI,EAAGpH,OACIwH,EAAMN,SAAS,SAKfM,EAAMP,YAAY,aAOrCjE,EAAI/B,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,qBACZS,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n console.log(vm);\r\n vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');\r\n\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">https://eduid.ch</a></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliotèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">SLSP</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">SLSP</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">SLSP</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">SLSP</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs: 'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad', 'centralCustom', 'homepageModule', 'customTranslateFilter', 'trustHtmlFilter', 'accountModule']);\r\n","(function () {\r\n\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', function ($filter) {\r\n var vm = this;\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n if (['almaRequest.header', 'almaRequestOther.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n // console.log(button);\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n template:\r\n `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n <div>\r\n <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n <span class=\"md-subhead\">\r\n <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n <span translate=\"customized.fulldisplay.fees\"></span>\r\n </a>\r\n </span>\r\n </div>\r\n <div>\r\n <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n </div>\r\n\r\n </div>\r\n </div>`\r\n });\r\n\r\n\r\n\r\n\r\n\r\n\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n vm.biblinkBase = \"https:\\/\\/slsp.ch\\/libraries\";\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\";\r\n } else {\r\n return vm.biblinkBase;\r\n }\r\n }\r\n vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n\r\n }]);\r\n\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs: 'ctrl',\r\n template: `<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>`\r\n });\r\n\r\n\r\n\r\n\t// ILL Signin Order\r\n app.service('userService', ['jwtHelper', function (jwtHelper) {\r\n this.isGuest = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return true;\r\n }\r\n var decodedToken = jwtHelper.decodeToken(jwt);\r\n let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';\r\n if (userName) {\r\n return false\r\n }\r\n else {\r\n return true;\r\n }\r\n }\r\n }])\r\n\r\n\r\n app.controller('IllBoxController', ['$scope', '$location', '$translate', 'userService', function ($scope, $location, $translate, userService) {\r\n\r\n $scope.starturl = window.location.href.split('?')[0] + '?vid=' + $scope.$ctrl.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();\r\n $scope.usrNme = userService.isGuest();\r\n if ($scope.usrNme == true) {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.addClass('logged-out')\r\n }\r\n\r\n else {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.removeClass('logged-out');\r\n }\r\n\r\n\r\n }]);\r\n\r\n app.component('prmTopbarAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'IllBoxController',\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n });\r\n\r\n //----------------------------------------------------------------------------------------------\r\n\r\n\r\n app.controller('AlertMsgController', ['$scope', function ($scope) {\r\n var vm = this;\r\n vm.getAlert = getAlert\r\n\r\n function getAlert() {\r\n var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;\r\n var myEl2 = angular.element(document.querySelector('primo-explore'));\r\n\r\n if (ga.length > 0) {\r\n return myEl2.addClass('alert');\r\n\r\n }\r\n else {\r\n\r\n return myEl2.removeClass('alert');\r\n\r\n }\r\n }\r\n\r\n }]);\r\n\r\n app.component('almaHowovpAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'AlertMsgController',\r\n template: '<div style=\"display:none\">{{$ctrl.getAlert()}}</div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js b/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js
index 37230b3..44d86a7 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js
@@ -1,5 +1,4 @@
(function () {
var homepage_module = angular.module('homepageModule', ['angularLoad']);
- homepage_module.component('prmTopbarAfter', require('./topbar.component.js'));
homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));
})()
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js b/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js
index 42107c6..360c673 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js
@@ -1,54 +1,54 @@
"use strict";
/*
OBJECTIFS:
- Toujours afficher l'onglet pour modifier le scope
- Afficher une alerte si les dates correspondent
UTILISATION:
Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)
*/
module.exports = {
bindings: {parentCtrl: '<'},
template: '<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',
- controllerAs:'ctrl',
+ controllerAs: 'ctrl',
controller: ['$translate', function($translate){
var vm = this;
/********************/
/* MESSAGE D'ALERTE */
/********************/
// récupère le fichier json avec les paramètres de l'alerte
vm.alert = require("./alert.js");
// par défaut, l'alerte n'est pas considérée comme active
vm.active = false;
// Vérifie dans le fichier json si une alerte est prévue
if (vm.alert.active === true){
// Teste si les dates correspondent pour l'affichage de l'alerte
var d_now = Date.now();
if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {
// déclenche l'affichage de l'alerte
vm.active = true;
}
}
// getteur qui retourne le texte en fonction de la langue
vm.get_txt = function(){
var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';
return vm.active ? vm.alert.txt[lang] : "";
}
/*******************/
/* SCOPE PERMANENT */
/*******************/
// Rendre permanent l'affichage des onglets permettant de sélectionnet le scope
vm.parentCtrl.showTabsAndScopes = true;
// console.log(vm.alert);
}
]};
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp_new.js b/primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp_new.js
new file mode 100644
index 0000000..adb18e5
--- /dev/null
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp_new.js
@@ -0,0 +1,118 @@
+(function () {
+
+
+ var app = angular.module('centralCustom', ['angularLoad']);
+
+
+ app.controller('CourierInfoController', [function () {
+ var vm = this;
+ vm.linkBase = "https:\/\/slsp.ch\/fees";
+
+ }]);
+
+ app.component('prmRequestAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'CourierInfoController',
+ template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
+ });
+
+
+
+
+
+
+ app.controller('LibInfoController', [function () {
+ var vm = this;
+ vm.getLibrary = getLibrary;
+ vm.biblinkText = "Library";
+ vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
+
+ function getLibrary() {
+ return vm.parentCtrl.currLoc.location.librarycodeTranslation;
+ }
+
+ }]);
+
+ app.component('prmLocationItemsAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'LibInfoController',
+ template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
+ });
+
+
+
+ // ILL Signin Order
+ app.service('userService', ['jwtHelper', function (jwtHelper) {
+ this.isGuest = function () {
+ var jwt = sessionStorage.getItem('primoExploreJwt');
+ if (!jwt) {
+ return true;
+ }
+ var decodedToken = jwtHelper.decodeToken(jwt);
+ let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
+ if (userName) {
+ return false
+ }
+ else {
+ return true;
+ }
+ }
+ }])
+
+
+ app.controller('IllBoxController', function ($scope, userService) {
+
+ $scope.usrNme = userService.isGuest();
+
+ if ($scope.usrNme == true) {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.addClass('logged-out')
+ }
+
+ else {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.removeClass('logged-out');
+ }
+
+
+ });
+
+ app.component('prmTopbarAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'IllBoxController',
+ template: ''
+ });
+
+ //----------------------------------------------------------------------------------------------
+
+
+ app.controller('AlertMsgController', ['$scope', function ($scope) {
+ var vm = this;
+ vm.getAlert = getAlert
+
+ function getAlert() {
+ var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
+ var myEl2 = angular.element(document.querySelector('primo-explore'));
+
+ if (ga.length > 0) {
+ return myEl2.addClass('alert');
+
+ }
+ else {
+
+ return myEl2.removeClass('alert');
+
+ }
+ }
+
+ }]);
+
+ app.component('almaHowovpAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'AlertMsgController',
+ template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
+ });
+
+
+
+})();
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js b/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js
index f136a25..45d1635 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js
+++ b/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js
@@ -1,172 +1,252 @@
(function () {
+
var app = angular.module('centralCustom', ['angularLoad']);
+
/*
## VERSION SLSP DU CONTROLLEUR ##
# Ajoute le lien vers les amendes
app.controller('CourierInfoController', [function () {
var vm = this;
vm.linkBase = "https:\/\/slsp.ch\/fees";
}]);
*/
/* ## VERSION EPFL DU CONTROLLEUR ## */
app.controller('CourierInfoController', ['$filter', function ($filter) {
var vm = this;
// Remonte l'EPFL dans la liste des bibliothèques
Object.defineProperty(vm.parentCtrl, "form", {
configurable: !0,
get: function(){
// Mettre l'EPFL en première position
var form = this.getFilteredForm(['label', 'multiLabel'], false);
if (!vm.hasOwnProperty('pickupLocationsListOrdered')){
for (var i = 0; i < form.length; i++){
if (form[i].key == 'pickupInstitution'){
function compare( a, b ){
var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];
a = onTopInstitutions.indexOf(a.value);
b = onTopInstitutions.indexOf(b.value);
if (a == b) {return 0};
return a < b ? 1 : -1;
}
form[i].options.sort(compare);
vm['pickupLocationsListOrdered'] = true;
}
}
}
return form;
}
}
);
// Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné
vm.isEPFL = function() {
return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;
}
vm.linkBase = "https:\/\/slsp.ch\/fees";
// Personnalisation du message des frais
vm.typeFeeAlert = function() {
if (['almaRequest.header', 'almaRequestOther.header'].includes(vm.parentCtrl.requestHeader)) {
return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');
} else if (['almaDigitization.header',
'almaDigitizationOther.header',
'almaItemDigitization.header']
.includes(vm.parentCtrl.requestHeader)) {
return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';
} else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {
return 'costWarningPEB';
} else {
return 'costWarningGeneral';
}
}
vm.getFeeAlert = function() {
return $filter('customTranslate')(vm.typeFeeAlert());
}
// Récupère le bouton PEB de la page afin de simuler un clic dessus
vm.get_peb_button = function(){
var allElements = document.getElementsByTagName('span');
for (var i = 0, n = allElements.length; i < n; i++) {
if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&
allElements[i].parentNode.className.indexOf('greenbutton') === -1)
{
return allElements[i];
}
}
}
// vm.get_request_button = function(){
// var allElements = document.getElementsByTagName('prm-opac');
// if (allElements.length === 0) { return null; }
// var opac = allElements[0];
// if (opac.closest('prm-alma-other-members')) { return null; }
//
// var buttons = opac.getElementsByTagName('span');
// for (var i = 0, n = buttons.length; i < n; i++) {
// if (buttons[i].getAttribute('translate') == 'AlmaRequest')
// {
// return buttons[i];
// }
// }
// }
// Fonction simulant un clic sur le bouton PEB quand on clique sur les
// frais.
vm.click_peb = function(){
var button = vm.get_peb_button();
// console.log(button);
if (button) {
button.click();
} else {
window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;
}
}
// vm.click_request = function(){
// vm.get_request_button().click();
// }
// console.log(vm);
}]);
app.component('prmRequestAfter', {
bindings: { parentCtrl: '<' },
controller: 'CourierInfoController',
template:
`<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">
<img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />
<div>
<div ng-if="$ctrl.typeFeeAlert()!='costWarningScanEPFL'">
<span class="md-subhead">
<a href="{{ $ctrl.linkBase }}" target="_blank">
<span translate="customized.fulldisplay.fees"></span>
</a>
</span>
</div>
<div>
<span ng-if="$ctrl.typeFeeAlert()!='costWarningGeneral'" ng-bind-html="$ctrl.getFeeAlert() "></span>
<span ng-if="$ctrl.typeFeeAlert()=='costWarningScan'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ 'illButton' | customTranslate }}</span></button></span>
</div>
</div>
</div>`
});
- /* Icône avec le nom de la bibliothèque */
+
+
+
+
+
app.controller('LibInfoController', [function () {
var vm = this;
vm.biblinkText = "Library";
- // console.log(vm);
+ vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
+ vm.getLibraryUrl = function() {
+ if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {
+ return "https://go.epfl.ch/library";
+ } else {
+ return vm.biblinkBase;
+ }
+ }
+ vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');
vm.getLibrary = function() {
// return vm.parentCtrl.currLoc.location.librarycodeTranslation;
return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';
}
- vm.getLibraryUrl = function() {
- if (vm.parentCtrl.loc) {
- if (vm.parentCtrl.loc.location.libraryCode==='E02') {
- return "https://go.epfl.ch/library"
- }
+ }]);
+
+ app.component('prmLocationItemsAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'LibInfoController',
+ controllerAs: 'ctrl',
+ template: `<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>`
+ });
+
+
+
+ // ILL Signin Order
+ app.service('userService', ['jwtHelper', function (jwtHelper) {
+ this.isGuest = function () {
+ var jwt = sessionStorage.getItem('primoExploreJwt');
+ if (!jwt) {
+ return true;
+ }
+ var decodedToken = jwtHelper.decodeToken(jwt);
+ let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
+ if (userName) {
+ return false
+ }
+ else {
+ return true;
+ }
+ }
+ }])
+
+
+ app.controller('IllBoxController', ['$scope', '$location', '$translate', 'userService', function ($scope, $location, $translate, userService) {
+
+ $scope.starturl = window.location.href.split('?')[0] + '?vid=' + $scope.$ctrl.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();
+ $scope.usrNme = userService.isGuest();
+ if ($scope.usrNme == true) {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.addClass('logged-out')
+ }
+
+ else {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.removeClass('logged-out');
+ }
+
+
+ }]);
+
+ app.component('prmTopbarAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'IllBoxController',
+ template: `<div class="main-title"><h1><a href="{{ starturl }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
+ });
+
+ //----------------------------------------------------------------------------------------------
+
+
+ app.controller('AlertMsgController', ['$scope', function ($scope) {
+ var vm = this;
+ vm.getAlert = getAlert
+
+ function getAlert() {
+ var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
+ var myEl2 = angular.element(document.querySelector('primo-explore'));
+
+ if (ga.length > 0) {
+ return myEl2.addClass('alert');
+
+ }
+ else {
+
+ return myEl2.removeClass('alert');
+
}
- return "https://slsp.ch/libraries";
}
}]);
- app.component('prmLocationItemsAfter', {
+
+ app.component('almaHowovpAfter', {
bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- controllerAs:'ctrl',
- template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'
+ controller: 'AlertMsgController',
+ template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
});
})();
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/README.md
new file mode 100644
index 0000000..2a12059
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/README.md
@@ -0,0 +1,40 @@
+
+# The UI Customization Workflow Development Environment
+
+
+##Package documentation
+
+The development package allows you to configure :
+
+- css
+
+- images
+
+- html
+
+- JavaScript
+
+- The root directory of the package should be named either by the `viewCode` or `CENTRAL_PACKAGE` in case of a consortia level package
+- Whether you develop a consortia level package or a view level package the process remains the same
+- Once deployed the hierarchy is as follows:
+ 1. For css - use the cascading ability of css and load the consortia level (CENTRAL_PACKAGE) css first and the view level css afterwards
+ 2. For images and html - the system checks for every file if it exists in each level - and prefers the view level file if exists
+ 3. For JavaScript - the two package types define 2 different Angular modules:
+ - ```var app = angular.module('viewCustom', ['angularLoad']);```
+ - ```var app = angular.module('centralCustom', ['angularLoad']);```
+
+ and loads both of the modules,
+
+- For each configuration type there is a specified folder in the custom package folder (that can be downloaded form your Primo Back Office)
+- In each folder you will find a specific README.md file with recipes/examples.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/colors.json.txt b/primo-explore/custom/41SLSP_HPH-EPFL/colors.json.txt
new file mode 100644
index 0000000..876cf62
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/colors.json.txt
@@ -0,0 +1 @@
+{"primary":"#ff0000","secondary":"#292929","backgroundColor":"#ffffff","links":"#14413c","warning":"#FFB816","positive":"#029986","negative":"#808080","notice":"#e08303"}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/css/README.md
new file mode 100644
index 0000000..71d9441
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/README.md
@@ -0,0 +1,129 @@
+# The Primo New UI Customization Workflow Development Environment
+
+
+##css documentation
+
+- Primo uses Angular Directives massively in this project
+
+- To learn more about directives see:
+> https://docs.angularjs.org/guide/directive
+
+- Primo uses external directives from the Angular-material framework :
+> https://material.angularjs.org/latest/
+
+- Those directives are tagged by a prefix : "md-"
+
+- Primo also creates its own directives which are tagged by the "prm-" prefix.
+
+
+Example:
+```
+ <header layout="column" layout-fill class="topbar-wrapper">
+ <prm-topbar>
+ </prm-topbar>
+
+ <prm-search-bar (search-event)="prmSearch.onSearchBarSearchEvent()">
+ </prm-search-bar>
+
+ <md-progress-linear class="header-progress-bar animation-scale-up-down" md-mode="indeterminate" ng-show="prmSearch.searchInProgress">
+ </md-progress-linear>
+
+ </header>
+```
+
+
+- You can see in the example how we use :
+
+1. An HTML5 tag - header
+2. A Primo directive : prm-topbar , prm-search-bar.
+3. An external material design directive : md-progress-bar :
+> https://material.angularjs.org/latest/api/directive/mdProgressLinear
+
+
+
+- When defining css rules it is important to understand the css cascading/specifity logic:
+
+> http://www.w3.org/TR/css3-cascade/
+
+> https://specificity.keegan.st/
+
+
+
+
+- When you start working on customizing your css be aware of the ability to define css selectors based on the directive name, which is actually equivalent
+to an html tag - this will enable you changing the design of a component cross-system without relying on id's/classes
+
+- For the example above we can define selectors:
+
+```
+prm-topbar input {....}
+prm-topbar.md-primoExplore-theme input {....}
+```
+- Primo is using a theme inside angular-material to define a palette of colors see:
+> https://material.angularjs.org/latest/Theming/01_introduction
+
+
+- This means that you will often encounter a class "md-primoExplore-theme" attached to elements.
+
+
+
+##Recipes/Examples:
+
+
+# css Recipe 1 - Color Scheme
+
+- Open a new command line window
+
+- cd to the project base directory (C:\**\**\primo-explore-devenv)
+- Run `gulp css-colors` to save the OTB css file
+- Run `css-color-extractor primo-explore/tmp/app.css --format=css > primo-explore/tmp/colors.css` to extract the color definitions from the OTB css file and copy the css rules to primo-explore/custom/css/custom1.css
+
+
+Run the following steps repeatedly until you are satisfied with the result
+
+
+- Choose a color from the interface (using your browsers' dev tools or extensions such as colorzilla)
+
+
+- Choose the new color from your library color scheme
+- Replace all values in the custom1.css file
+- Save and refresh your browser
+
+
+
+# css Recipe 2 - Moving the Facets to the Left
+
+
+- Select the parent container containing the search result and the facets
+- Copy the selector definition using your browsers' dev tools
+- Define the container as
+```
+display:flex;
+flex-flow:row-reverse;
+```
+
+
+- complete css definition:
+```
+prm-search > md-content.md-primoExplore-theme .main {
+ display: -webkit-flex; !* Safari *!
+ -webkit-flex-flow: row-reverse wrap; !* Safari 6.1+ *!
+ display: flex;
+ flex-flow: row-reverse wrap;
+
+}
+.screen-gt-sm .sidebar{
+ webkit-flex: 0 0 15%;
+ flex: 0 0 15%;
+}
+```
+- Save and refresh your browser
+
+
+
+
+
+
+
+
+
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom1.css
similarity index 97%
copy from primo-explore/custom/41SLSP_EPF-prod/css/custom1.css
copy to primo-explore/custom/41SLSP_HPH-EPFL/css/custom1.css
index d79109c..ddb56f8 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom1.css
@@ -1,675 +1,707 @@
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** Central Package CSS ******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************** Navigation ******************/
/*Font Navigation and buttons*/
#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
font-size: small !important;
font-weight: 500 !important;
color: #111 !important;
}
/*hover effect Navigation and buttons*/
#mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]), .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]) {
background-color: #ddd !important;
color: #111 !important;
}
/*remove capitalized text*/
.md-button {
text-transform: none;
}
/*Menu button*/
button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
.md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
color: #111 !important;
}
/*hide hover effect on Library Logo*/
#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
background: none;
}
/*background buttons*/
prm-search-bookmark-filter .md-button {
background-color: #fff !important;
}
/*hiding Refworks from the pulldown menu*/
.my-refworks-ctm, .my-refworks-separator-ctm {
display: none;
}
/*switch to advanced search button*/
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-style: solid;
border-width: 1px;
border-radius: 5px;
}
.md-button.button-confirm {
border: 1px solid #ffffff;
}
.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
color: #fff;
background-color:#111;
}
/*the main color border on mobile view*/
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-bottom-style: solid;
border-bottom-width: 8px;
}
}
/*************** Main Content ******************/
/*backgound of the Textboxes Homepage*/
prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
background-color: #fff !important;
border-radius: 3px;
}
/*first header of the Textboxes*/
.cardbox h1 {
font-size: 48px;
line-height: 56px;
}
/*second header of the Textboxes*/
.cardbox h2 {
font-size: 32px;
line-height: 36px;
}
/*third header of the Textboxes (if needed)*/
.cardbox h3 {
font-size: 26px;
line-height: 30px;
}
/*removes the upper and lower space in a list */
.cardbox ul, .cardbox ol {
margin-top: 0px !important;
margin-bottom: 0px !important;
}
/*links in the textboxes*/
md-card-content a, prm-service-details a {
color: #222222 !important;
}
md-card-content a, prm-service-details a, div.courier-info > span a {
text-decoration: underline !important;
}
md-card-content a:hover, prm-service-details a:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*Responsive Video Frame*/
.resp-container {
position: relative;
overflow: hidden;
padding-top: 56.25%;
}
.resp-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter {
margin: 16px 0 0 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter-legal {
margin: 1px 0 0 0;
}
/*Responsive footer layout*/
@media (min-width: 960px) {
md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
text-align: end;
}
}
/*footer links*/
md-icon.ps_icon, a.ps_link {
margin-right: 5%;
text-decoration: underline;
}
/*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
background-color: rgba(61,110,148,.1) !important;
}*/
/*footer text*/
md-card-content.prm-primary-bg {
font-weight: 300;
}
/*links in the legal part of the footer*/
a.ps_link.legal, span.legal {
font-size: 14px;
font-weight: 300;
}
/************************************************************************************************
span.legal {
color: #14413c;
}
*/
span.legal > a {
/*color: #14413c;*/
font-weight: 600;
}
/*main container width for footer positioning*/
prm-static.md-padding.flex {
min-width: 100%;
padding: 0;
}
/*mainly white background*/
.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
background-color: #fff !important;
}
/*font color on white background*/
.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
color: #222 !important;
}
/*************** Brief results ******************/
/*color of the Alertbar*/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
/*background-color: #8dd8d8 !important;*/
border: none !important;
}
/*backgound search results boxes*/
.list-item-wrapper {
background-color: #f9f9f9;
}
/*Title color*/
prm-brief-result .item-title span {
color: #333;
}
prm-brief-result .item-title span:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*remove hover effect from title links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
box-shadow: none !important;
}
/*background color of bookmarked items*/
.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
background-color: #ddd !important;
}
/*hover effect on all Links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
color: #222 !important;
}
div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
background-color: #6b6b6b !important;
}
/*Facet titles*/
span.section-title-header:hover {
color: #8a8a8a !important;
}
/*underlined search results*/
/*.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
}*/
/*versions link and other*/
.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
color: #222 !important;
}
/*icon color and text color in request forms*/
.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
color: #222 !important;
}
/*space between item details in Fullview*/
#item-details > div > div {
margin-bottom: .8em !important;
}
/*fullview background of the left part*/
.md-dialog-container.fixed-container {
background-color: #444 !important;
}
/*background color of the signin window and the fullscreen navigation*/
md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
background-color: #1f1f1f !important;
}
/*text color of the signin window and the fullscreen navigation*/
prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
color: #fff !important;
}
/*hiding the Library Logo in the login window*/
.login-header {
display: none;
}
/*alertbar for the courier info*/
.courier-info {
margin: 0px 8px;
}
/*Library info icon*/
prm-location-items-after > div > span > a > img {
vertical-align: middle;
max-width: 30px;
margin: 4px 12px;
}
/*Library card Personal details display*/
#personalDetails > md-card-content > div {
flex-flow: column;
}
#prm_contact\.address_1 {
width: 400px;
}
+/*Full view Resource sharing */
+#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
+ display: flex;
+ flex-direction: column;
+}
+
+prm-opac {
+ order: 1;
+}
+
+prm-alma-other-members {
+ order: 2;
+ display: grid;
+}
+
+alma-htgi-svc {
+ order: 3;
+}
+
+primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
+ order: 0 !important;
+}
+
+.medium-uppercase-bold {
+ text-transform: none;
+ font-size: 1em;
+}
+
/******************************************************************************/
/************************************ Help Page *******************************/
/******************************************************************************/
#help img {
max-width: 100%;
height: auto;
}
img.icon_up1 {
width: 16px;
float: right;
margin: 13px 2px;
}
img.icon_up2 {
width: 10px;
float: right;
margin: 4px;
}
a > h3:hover {
background-color: #eee !important;
}
/*****************lenght of the address field in personal details**************/
/*#personalDetails > md-card-content {
flex-direction: column;
}
#prm_contact\.address_1 {
min-width: 420px;
}*/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/********************** End of the Central Package CSS ************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** EPFL CUSTOM COLORS *******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/* This file contains the EPFL part of the custom package. The SLSP part is in
the custom_slsp.css file. */
/*****************This two entries are the background of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg,
md-checkbox.md-checked ._md-icon, md-tabs md-ink-bar, md-radio-button.md-checked ._md-on, button.switch-to-simple, .md-button.button-confirm {
background-color: #ff0000 !important;
}
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-color: #ff0000 !important;
}
}
/*****************This entry is the mouse over background of the links and buttons*******************/
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
button.switch-to-simple:hover, .md-button.button-confirm:hover {
background-color: #ae0010 !important;
}
/*****************This two entries are the font color of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, .md-button.switch-to-advanced, button.switch-to-simple,
span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, md-checkbox.md-checked ._md-icon, .md-button.button-confirm {
color: #fff !important;
}
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-color: #c1c1c1 !important;
}
/*****************This two entries are the background of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
background-color: #ffcccc !important;
}
.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
}
/*****************This entry is the font color of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
color: #111111 !important;
}
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
-
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
-
/*****************Selected text color*******************/
::selection {
background: #ffbe8f; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffbe8f; /* Gecko Browsers */
}
/*****************This entry remove default color from various texts*******************/
md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
color: #ffcccc !important;
}
/* Bouton pour confirmer une demande */
prm-request button.md-button.button-confirm{
background-color: #080 !important;
}
prm-request button.md-button.button-confirm:hover{
background-color: #050 !important;
}
/* Fix SLSP pour la couleur du bouton secondaire */
.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
background-color:#ffdddd !important;
border: 1px solid #ae0010;
}
/* Fix SLSP pour le bouton ""élargir" */
button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
background-color: #D3D3D3!important;
}
+/*****************This entry remove default color from various forms*******************/
+
+.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
+md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
+md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
+md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
+md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
+prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
+prm-tags-list md-chips .md-chip-input-container::after {
+ background-color: #ff0000 !important;
+}
+
md-card.psfooter, md-card.psfooter-legal,
md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
background-color: #d6d6d6 !important;
}
md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
md-card.prm-primary-bg.psfooter-legal span.legal {
color: #3a3a3a !important;
}
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
color: #ff0000 !important;
}
/* Couleur rouge pour les logos téléphone, mail, etc. */
.puce{
text-decoration: none !important;
}
.puce > span:first-child{
color: #ff0000;
fill: #ff0000;
}
h1.md-headline{
font-size: 36px;
line-height: 42px;
}
h2.md-headline{
font-size: 28px;
line-height: 34px;
}
md-content.epfl-row {
justify-content: center;
}
.epfl-row md-card-title{
flex: none;
}
.epfl-row md-card {
height: 100%;
}
.epfl-social a{
text-decoration: none !important;
}
-prm-account-links-after p {
+prm-account-links-after div {
+ display: flex;
+ align-items: center;
margin-top: 10px;
}
+prm-account-links-after img{
+ margin-right: 5px;
+}
/* Empêcher les retours à la ligne pour les cotes */
span[ng-if="$ctrl.location.callNumber"]{
white-space: nowrap
}
+/*****************This entry adapt the message fee*******************/
+
+.feemsg {
+ background-color: #ffcccc;
+ border-radius: 3px;
+ padding: 8px;
+}
+
+.feemsg>div {
+ margin-left: 10px;
+}
+
+.bigfont {
+ font-size: 20px;
+}
+
/* Bouton de la recherche avancée */
.search-switch-buttons span{
font-variant: small-caps;
font-size: 1.15em;
}
.search-switch-buttons button{
border: none !important;
}
/* Message d'alerte */
prm-search-bar>div {
height: inherit !important;
min-height: inherit !important;
}
prm-search-bar-after>div {
background-color: #fff !important;
margin-top: 20px;
padding: 10px 15px;
}
prm-search-bar-after p {
margin: 0 12px;
}
.info-symbol::before {
content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
width: 24px;
height: 24px;
position: absolute;
display: inline-block;
top: 50%;
left: .6rem;
width: 1.6rem;
height: 1.6rem;
margin-top: -.8rem;
}
.info-symbol {
position: relative;
}
.info-symbol div {
margin-left: 50px;
}
prm-search-bar-after p {
padding: .25em 0 .25em;
margin: 0;
}
prm-search-bar-after a {
color: black;
text-decoration: underline;
}
/* Mise en évidence des boutons pour les demandes de service */
/* span[translate="AlmaRequest"] {
text-decoration: underline #0B0 3px;
padding: 2px 6px;
}
span[translate="AlmaRequest"]:hover{
background-color: #050 !important;
text-decoration: none;
color: white;
border-radius: 2px;
}
span[translate="nui.request.request"]{
display: none;
} */
/* Soulignement des boutons proposant un service */
prm-service-button button, .greenbutton {
padding-left: 0px !important;
padding-right: 0px !important;
}
prm-service-button button > span, .greenbutton>span {
background-color: #080 !important;
color: white !important;
padding: 2px 6px;
border-radius: 2px;
}
prm-service-button button > span:hover, .greenbutton>span:hover {
background-color: #050 !important;
}
/* Suppression du sous-titre demande */
span[translate="nui.request.request"]{
display: none;
}
/* Suppression du bouton PEB
span[translate="AlmaResourceSharing"]{
display: none;
}
.links-block .separated-block-item::after{
content: none !important;
} */
/* Crée la place pour le titre et le sous-titre */
prm-topbar {
height: 150px !important;
}
prm-main-menu[menu-type="menu"],
.top-nav-bar,
prm-search-bookmark-filter
{
max-height: 60px !important;
height: 60px !important;
min-height: auto !important;
}
/* Mise en forme du titre et sous-titre */
.main-title{
padding: .85em;
background-color: white;
}
.main-title h1{
font-size: 2em !important;
margin-bottom: 0;
}
.main-title h1 > a{
color: black;
}
prm-main-menu[menu-type="menu"] #mainMenu>div {
border-bottom: solid #ddd 1px;
}
.main-title h2{
font-size: 1.2em !important;
font-weight: bold;
}
/* Adapte le sous-titre lorsque l'écran est relativement petit */
@media only screen and (max-width: 660px){
.main-title h2{
font-size: 1.1em !important;
}
}
/* Menu sur les petits écrans */
prm-main-menu[menu-type="full"] .md-button .md-headline{
color: #ff9999 !important;
}
prm-main-menu .md-subhead{
display: none;
}
.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
margin-top: 6em !important;
}
/* Menu sur grand écran */
prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
color: #222 !important;
}
/* Petit triangle du menu */
prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
background-color: inherit;
}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp.css
similarity index 96%
copy from primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css
copy to primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp.css
index 8e698ab..c3625eb 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp.css
@@ -1,335 +1,363 @@
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** Central Package CSS ******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************** Navigation ******************/
/*Font Navigation and buttons*/
#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
font-size: small !important;
font-weight: 500 !important;
color: #111 !important;
}
/*hover effect Navigation and buttons*/
#mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]), .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]) {
background-color: #ddd !important;
color: #111 !important;
}
/*remove capitalized text*/
.md-button {
text-transform: none;
}
/*Menu button*/
button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
.md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
color: #111 !important;
}
/*hide hover effect on Library Logo*/
#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
background: none;
}
/*background buttons*/
prm-search-bookmark-filter .md-button {
background-color: #fff !important;
}
/*hiding Refworks from the pulldown menu*/
.my-refworks-ctm, .my-refworks-separator-ctm {
display: none;
}
/*switch to advanced search button*/
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-style: solid;
border-width: 1px;
border-radius: 5px;
}
.md-button.button-confirm {
border: 1px solid #ffffff;
}
.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
color: #fff;
background-color:#111;
}
/*the main color border on mobile view*/
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-bottom-style: solid;
border-bottom-width: 8px;
}
}
/*************** Main Content ******************/
/*backgound of the Textboxes Homepage*/
prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
background-color: #fff !important;
border-radius: 3px;
}
/*first header of the Textboxes*/
.cardbox h1 {
font-size: 48px;
line-height: 56px;
}
/*second header of the Textboxes*/
.cardbox h2 {
font-size: 32px;
line-height: 36px;
}
/*third header of the Textboxes (if needed)*/
.cardbox h3 {
font-size: 26px;
line-height: 30px;
}
/*removes the upper and lower space in a list */
.cardbox ul, .cardbox ol {
margin-top: 0px !important;
margin-bottom: 0px !important;
}
/*links in the textboxes*/
md-card-content a, prm-service-details a {
color: #222222 !important;
}
md-card-content a, prm-service-details a, div.courier-info > span a {
text-decoration: underline !important;
}
md-card-content a:hover, prm-service-details a:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*Responsive Video Frame*/
.resp-container {
position: relative;
overflow: hidden;
padding-top: 56.25%;
}
.resp-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter {
margin: 16px 0 0 0;
}
/*footer layout*/
md-card.prm-primary-bg.psfooter-legal {
margin: 1px 0 0 0;
}
/*Responsive footer layout*/
@media (min-width: 960px) {
md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
text-align: end;
}
}
/*footer links*/
md-icon.ps_icon, a.ps_link {
margin-right: 5%;
text-decoration: underline;
}
/*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
background-color: rgba(61,110,148,.1) !important;
}*/
/*footer text*/
md-card-content.prm-primary-bg {
font-weight: 300;
}
/*links in the legal part of the footer*/
a.ps_link.legal, span.legal {
font-size: 14px;
font-weight: 300;
}
/************************************************************************************************
span.legal {
color: #14413c;
}
*/
span.legal > a {
/*color: #14413c;*/
font-weight: 600;
}
/*main container width for footer positioning*/
prm-static.md-padding.flex {
min-width: 100%;
padding: 0;
}
/*mainly white background*/
.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
background-color: #fff !important;
}
/*font color on white background*/
.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
color: #222 !important;
}
/*************** Brief results ******************/
/*color of the Alertbar*/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
/*background-color: #8dd8d8 !important;*/
border: none !important;
}
/*backgound search results boxes*/
.list-item-wrapper {
background-color: #f9f9f9;
}
/*Title color*/
prm-brief-result .item-title span {
color: #333;
}
prm-brief-result .item-title span:hover {
color: #111;
background-color: rgba(47, 47, 47, 0.1) !important;
}
/*remove hover effect from title links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
box-shadow: none !important;
}
/*background color of bookmarked items*/
.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
background-color: #ddd !important;
}
/*hover effect on all Links*/
.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
color: #222 !important;
}
div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
background-color: #6b6b6b !important;
}
/*Facet titles*/
span.section-title-header:hover {
color: #8a8a8a !important;
}
/*underlined search results*/
/*.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
}*/
/*versions link and other*/
.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
color: #222 !important;
}
/*icon color and text color in request forms*/
.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
color: #222 !important;
}
/*space between item details in Fullview*/
#item-details > div > div {
margin-bottom: .8em !important;
}
/*fullview background of the left part*/
.md-dialog-container.fixed-container {
background-color: #444 !important;
}
/*background color of the signin window and the fullscreen navigation*/
md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
background-color: #1f1f1f !important;
}
/*text color of the signin window and the fullscreen navigation*/
prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
color: #fff !important;
}
/*hiding the Library Logo in the login window*/
.login-header {
display: none;
}
/*alertbar for the courier info*/
.courier-info {
margin: 0px 8px;
}
/*Library info icon*/
prm-location-items-after > div > span > a > img {
vertical-align: middle;
max-width: 30px;
margin: 4px 12px;
}
/*Library card Personal details display*/
#personalDetails > md-card-content > div {
flex-flow: column;
}
#prm_contact\.address_1 {
width: 400px;
}
+/*Full view Resource sharing */
+#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
+ display: flex;
+ flex-direction: column;
+}
+
+prm-opac {
+ order: 1;
+}
+
+prm-alma-other-members {
+ order: 2;
+ display: grid;
+}
+
+alma-htgi-svc {
+ order: 3;
+}
+
+primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
+ order: 0 !important;
+}
+
+.medium-uppercase-bold {
+ text-transform: none;
+ font-size: 1em;
+}
+
/******************************************************************************/
/************************************ Help Page *******************************/
/******************************************************************************/
#help img {
max-width: 100%;
height: auto;
}
img.icon_up1 {
width: 16px;
float: right;
margin: 13px 2px;
}
img.icon_up2 {
width: 10px;
float: right;
margin: 4px;
}
a > h3:hover {
background-color: #eee !important;
}
/*****************lenght of the address field in personal details**************/
/*#personalDetails > md-card-content {
flex-direction: column;
}
#prm_contact\.address_1 {
min-width: 420px;
}*/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/********************** End of the Central Package CSS ************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp_epfl_part.css
similarity index 73%
copy from primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css
copy to primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp_epfl_part.css
index ddbaec9..88b903c 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp_epfl_part.css
@@ -1,95 +1,66 @@
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/*************************** EPFL CUSTOM COLORS *******************************/
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
/* This file contains the EPFL part of the custom package. The SLSP part is in
the custom_slsp.css file. */
/*****************This two entries are the background of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg,
md-checkbox.md-checked ._md-icon, md-tabs md-ink-bar, md-radio-button.md-checked ._md-on, button.switch-to-simple, .md-button.button-confirm {
background-color: #ff0000 !important;
}
@media (max-width: 599px) {
prm-topbar .top-nav-bar {
border-color: #ff0000 !important;
}
}
/*****************This entry is the mouse over background of the links and buttons*******************/
md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
button.switch-to-simple:hover, .md-button.button-confirm:hover {
background-color: #ae0010 !important;
}
/*****************This two entries are the font color of the primary color*******************/
.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, .md-button.switch-to-advanced, button.switch-to-simple,
span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, md-checkbox.md-checked ._md-icon, .md-button.button-confirm {
color: #fff !important;
}
button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
border-color: #c1c1c1 !important;
}
/*****************This two entries are the background of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
background-color: #ffcccc !important;
}
.text-highlight, mark {
box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
}
/*****************This entry is the font color of the secondary color*******************/
.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
color: #111111 !important;
}
-
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
-
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/epfl_colors.css
similarity index 71%
copy from primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css
copy to primo-explore/custom/41SLSP_HPH-EPFL/css/epfl_colors.css
index e2e9a0c..a079444 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/epfl_colors.css
@@ -1,33 +1,45 @@
/*****************Selected text color*******************/
::selection {
background: #ffbe8f; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffbe8f; /* Gecko Browsers */
}
/*****************This entry remove default color from various texts*******************/
md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
color: #ffcccc !important;
}
/* Bouton pour confirmer une demande */
prm-request button.md-button.button-confirm{
background-color: #080 !important;
}
prm-request button.md-button.button-confirm:hover{
background-color: #050 !important;
}
/* Fix SLSP pour la couleur du bouton secondaire */
.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
background-color:#ffdddd !important;
border: 1px solid #ae0010;
}
/* Fix SLSP pour le bouton ""élargir" */
button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
background-color: #D3D3D3!important;
}
+
+/*****************This entry remove default color from various forms*******************/
+
+.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
+md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
+md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
+md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
+md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
+prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
+prm-tags-list md-chips .md-chip-input-container::after {
+ background-color: #ff0000 !important;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/footer.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/footer.css
new file mode 100644
index 0000000..0602f89
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/footer.css
@@ -0,0 +1,16 @@
+
+md-card.psfooter, md-card.psfooter-legal,
+md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
+md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
+ background-color: #d6d6d6 !important;
+}
+
+md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
+md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
+md-card.prm-primary-bg.psfooter-legal span.legal {
+ color: #3a3a3a !important;
+}
+
+md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
+ color: #ff0000 !important;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/homepage.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/homepage.css
new file mode 100644
index 0000000..e5309b3
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/homepage.css
@@ -0,0 +1,28 @@
+/* Couleur rouge pour les logos téléphone, mail, etc. */
+.puce{
+ text-decoration: none !important;
+}
+.puce > span:first-child{
+ color: #ff0000;
+ fill: #ff0000;
+}
+h1.md-headline{
+ font-size: 36px;
+ line-height: 42px;
+}
+h2.md-headline{
+ font-size: 28px;
+ line-height: 34px;
+}
+md-content.epfl-row {
+ justify-content: center;
+}
+.epfl-row md-card-title{
+ flex: none;
+}
+.epfl-row md-card {
+ height: 100%;
+}
+.epfl-social a{
+ text-decoration: none !important;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmAccountLink.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmAccountLink.css
new file mode 100644
index 0000000..25c5181
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmAccountLink.css
@@ -0,0 +1,8 @@
+prm-account-links-after div {
+ display: flex;
+ align-items: center;
+ margin-top: 10px;
+}
+prm-account-links-after img{
+ margin-right: 5px;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmLocation.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmLocation.css
new file mode 100644
index 0000000..6a0ff03
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmLocation.css
@@ -0,0 +1,5 @@
+
+/* Empêcher les retours à la ligne pour les cotes */
+span[ng-if="$ctrl.location.callNumber"]{
+ white-space: nowrap
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmRequest.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmRequest.css
new file mode 100644
index 0000000..1ebe3ea
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmRequest.css
@@ -0,0 +1,15 @@
+/*****************This entry adapt the message fee*******************/
+
+.feemsg {
+ background-color: #ffcccc;
+ border-radius: 3px;
+ padding: 8px;
+}
+
+.feemsg>div {
+ margin-left: 10px;
+}
+
+.bigfont {
+ font-size: 20px;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmSearchbar.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmSearchbar.css
new file mode 100644
index 0000000..d9ee590
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmSearchbar.css
@@ -0,0 +1,49 @@
+
+/* Bouton de la recherche avancée */
+.search-switch-buttons span{
+ font-variant: small-caps;
+ font-size: 1.15em;
+}
+.search-switch-buttons button{
+ border: none !important;
+}
+
+/* Message d'alerte */
+prm-search-bar>div {
+ height: inherit !important;
+ min-height: inherit !important;
+}
+prm-search-bar-after>div {
+ background-color: #fff !important;
+ margin-top: 20px;
+ padding: 10px 15px;
+}
+prm-search-bar-after p {
+ margin: 0 12px;
+}
+.info-symbol::before {
+ content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
+ width: 24px;
+ height: 24px;
+ position: absolute;
+ display: inline-block;
+ top: 50%;
+ left: .6rem;
+ width: 1.6rem;
+ height: 1.6rem;
+ margin-top: -.8rem;
+}
+.info-symbol {
+ position: relative;
+}
+.info-symbol div {
+ margin-left: 50px;
+}
+prm-search-bar-after p {
+ padding: .25em 0 .25em;
+ margin: 0;
+}
+prm-search-bar-after a {
+ color: black;
+ text-decoration: underline;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmServiceButton.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmServiceButton.css
new file mode 100644
index 0000000..0a16a74
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmServiceButton.css
@@ -0,0 +1,42 @@
+/* Mise en évidence des boutons pour les demandes de service */
+/* span[translate="AlmaRequest"] {
+ text-decoration: underline #0B0 3px;
+ padding: 2px 6px;
+}
+span[translate="AlmaRequest"]:hover{
+ background-color: #050 !important;
+ text-decoration: none;
+ color: white;
+ border-radius: 2px;
+}
+span[translate="nui.request.request"]{
+ display: none;
+} */
+
+/* Soulignement des boutons proposant un service */
+prm-service-button button, .greenbutton {
+ padding-left: 0px !important;
+ padding-right: 0px !important;
+}
+prm-service-button button > span, .greenbutton>span {
+ background-color: #080 !important;
+ color: white !important;
+ padding: 2px 6px;
+ border-radius: 2px;
+}
+prm-service-button button > span:hover, .greenbutton>span:hover {
+ background-color: #050 !important;
+}
+
+/* Suppression du sous-titre demande */
+span[translate="nui.request.request"]{
+ display: none;
+}
+
+/* Suppression du bouton PEB
+span[translate="AlmaResourceSharing"]{
+ display: none;
+}
+.links-block .separated-block-item::after{
+ content: none !important;
+} */
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmTopbar.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmTopbar.css
new file mode 100644
index 0000000..327399a
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmTopbar.css
@@ -0,0 +1,60 @@
+/* Crée la place pour le titre et le sous-titre */
+prm-topbar {
+ height: 150px !important;
+}
+prm-main-menu[menu-type="menu"],
+.top-nav-bar,
+prm-search-bookmark-filter
+{
+ max-height: 60px !important;
+ height: 60px !important;
+ min-height: auto !important;
+}
+
+/* Mise en forme du titre et sous-titre */
+.main-title{
+ padding: .85em;
+ background-color: white;
+}
+.main-title h1{
+ font-size: 2em !important;
+ margin-bottom: 0;
+}
+.main-title h1 > a{
+ color: black;
+}
+prm-main-menu[menu-type="menu"] #mainMenu>div {
+ border-bottom: solid #ddd 1px;
+}
+.main-title h2{
+ font-size: 1.2em !important;
+ font-weight: bold;
+}
+
+/* Adapte le sous-titre lorsque l'écran est relativement petit */
+@media only screen and (max-width: 660px){
+ .main-title h2{
+ font-size: 1.1em !important;
+ }
+}
+
+/* Menu sur les petits écrans */
+prm-main-menu[menu-type="full"] .md-button .md-headline{
+ color: #ff9999 !important;
+}
+prm-main-menu .md-subhead{
+ display: none;
+}
+.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
+ margin-top: 6em !important;
+}
+
+/* Menu sur grand écran */
+prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
+ color: #222 !important;
+}
+
+/* Petit triangle du menu */
+prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
+ background-color: inherit;
+}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/features.json.txt b/primo-explore/custom/41SLSP_HPH-EPFL/features.json.txt
new file mode 100644
index 0000000..b6892d6
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/features.json.txt
@@ -0,0 +1 @@
+{"prm-explore-footer-after":["prm-explore-footer-after-app-store-generated"],"prm-alma-viewit-items-after":["prm-alma-viewit-items-after-app-store-generated","prm-alma-viewit-items-after-app-store-generated"]}
\ No newline at end of file
diff --git a/primo-explore/custom/VU2/html/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/html/README.md
similarity index 100%
rename from primo-explore/custom/VU2/html/README.md
rename to primo-explore/custom/41SLSP_HPH-EPFL/html/README.md
diff --git a/primo-explore/custom/VU2/html/email_en_US.tmpl.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/email/email_en.tmpl.html
similarity index 98%
rename from primo-explore/custom/VU2/html/email_en_US.tmpl.html
rename to primo-explore/custom/41SLSP_HPH-EPFL/html/email/email_en.tmpl.html
index d028d37..a01ece6 100644
--- a/primo-explore/custom/VU2/html/email_en_US.tmpl.html
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/email/email_en.tmpl.html
@@ -1,111 +1,109 @@
<!-- HEADER -->
<table style="width: 600px;
display: block !important;
max-width: 600px !important;
margin: 0 auto !important;
clear: both !important;
border-spacing: 0 !important;
padding: 0 !important;
border-top-left-radius: 15px !important;
- border-top-right-radius: 15px !important;" align="center" bgcolor="#4d6b82"
+ border-top-right-radius: 15px !important;" align="center" bgcolor="#fff"
border="0" cellpadding="0"
cellspacing="0">
<tbody>
<tr>
<td style="cursor: default;
padding: 1em 0.5em;">
<prm-logo style="height: 66px;"></prm-logo>
</td>
</tr>
</tbody>
</table>
<!-- BODY -->
<table style="width: 600px;
display: block !important;
max-width: 600px !important;
margin: 0 auto !important;
clear: both !important;
border-spacing: 0 !important;
padding: 0 !important;" align="center" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td>
<div translate="nui.email.institutionNote"></div>
</td>
</tr>
<tr>
<!--<td></td>-->
<td style="display: block !important;
max-width: 600px !important;
margin: 0 auto !important;
clear: both !important;
padding: 0 !important;" bgcolor="#f3f3f3">
<div style=" padding: 0 !important;
max-width: 600px;
margin: 0 auto;
display: block;">
<table style="width: 600px;
display: block !important;
max-width: 600px !important;
margin: 0 auto !important;
clear: both !important;
border-spacing: 0 !important;
padding: 0 !important;">
<tr ng-if="$ctrl.parentCtrl.note">
<td style="padding: 15px 10px;
font-style: italic;">
- <b translate="email.note"></b> {{$ctrl.parentCtrl.note}}
+ <b translate="email.note"></b> {{$ctrl.parentCtrl.note}}
</td>
</tr>
</table>
<table id="email-template-items" style="background-color: #f3f3f3; width: 100%;">
<tr ng-if="$ctrl.parentCtrl.fullViewLoaded"
ng-repeat="item in $ctrl.parentCtrl.delayedItems">
<td style="padding: 10px 15px; margin: 2px; cursor: default; width: 100%;"
bgcolor="white">
<prm-brief-result-container style="width: 100%;"
[item]="item"
display-mode="email"
(load-email-template-event)="$ctrl.parentCtrl.popItem()">
</prm-brief-result-container>
</td>
</tr>
</table>
</div><!-- /content -->
</td>
<!--<td></td>-->
</tr>
</table>
<!-- /BODY -->
<!-- FOOTER -->
<table class="footer-wrap" align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<!-- /FOOTER -->
<!-- DISCLAIMER MESSAGE -->
<table style="width: 600px;
display: block !important;
max-width: 600px !important;
margin: 0 auto !important;
clear: both !important;
border-spacing: 0 !important;
padding: 0 !important;
border: 2px solid red;" align="center" border="0" cellpadding="0"
cellspacing="0">
<tbody>
<tr>
<td align="center">
<p style="margin: 0.5em;" translate="nui.email.disclaimer"></p>
</td>
</tr>
</tbody>
</table>
-
-
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_de.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_de.html
new file mode 100644
index 0000000..0992994
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_de.html
@@ -0,0 +1,503 @@
+
+<md-content id="help">
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
+ <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
+ <md-card class="default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline"><b>Primo VE Help Page</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+
+ </md-card>
+
+ <md-card class="default-card">
+
+ <md-card-content>
+ <h4>Einf&uuml;hrung:</h4>
+ <p>Sehr geehrte Benutzerin, sehr geehrter Benutzer,</p>
+ <p>herzlich willkommen auf der Hilfeseite von swisscovery.</p>
+ <p>swisscovery ist das Suchportal des <a href="https://slsp.ch/de" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. . Auf dieser Seite finden Sie n&uuml;tzliche Informationen dar&uuml;ber, wie Sie swisscovery verwenden und wie das SLSP-Netzwerk organisiert ist. </p>
+ <p>Achtung: Diese Hilfeseite wurde f&uuml;r das gesamte SLSP-Netzwerk erstellt! Das bedeutet, dass einige Services auf dieser speziellen Bedienoberfl&auml;che m&ouml;glicherweise nicht verf&uuml;gbar sind. Bitte beachten Sie, dass die Startseite oder die Volltitelanzeige des Datensatzes von Institution zu Institution anders aussehen k&ouml;nnen als auf dieser Hilfeseite.</p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="index">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Index</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <h3><a href="#general">Allgemein</a></h3>
+ <ul>
+ <!--<li><a href="#gen1">Ein kurzes Einf&uuml;hrungsvideo zu swisscovery</a></li>-->
+ <li><a href="#gen2">SLSP: Die Swiss Library Service Platform</a></li>
+ <li><a href="#gen3">SLSP-Netzwerk</a></li>
+ <li><a href="#gen4">Ein Konto erstellen</a></li>
+ <li><a href="#gen5">Bibliotheksausweis</a></li>
+ <li><a href="#gen6">Anmelden und Abmelden</a></li>
+ <li><a href="#gen7">Mein Konto</a></li>
+ <li><a href="#gen8">Konto aktualisieren </a></li>
+ <li><a href="#gen9">Sprache einstellen</a></li>
+ </ul>
+ <h3><a href="#online">Online-Ressourcen</a></h3>
+ <ul>
+ <li><a href="#onl1">Online-Ressourcen</a></li>
+ <li><a href="#onl2">Online-Services f&uuml;r Mitglieder einer Universit&auml;t</a> </li>
+ <li><a href="#onl3">Online-Services f&uuml;r Personen, die nicht Mitglied einer Universit&auml;t sind </a></li>
+ <li><a href="#onl4">Open Access </a></li>
+ <li><a href="#onl5">Nationale Lizenzen </a></li>
+ </ul>
+ <h3><a href="#borrow">Fernleihe-/Bestelldokumente</a></h3>
+ <ul>
+ <li><a href="#bor1">Fernleihe-/Bestelldokumente </a></li>
+ <li><a href="#bor2">Fernleihen ausserhalb des SLSP-Netzwerks</a></li>
+ <li><a href="#bor3">Ausleihfristen verl&auml;ngern</a></li>
+ <li><a href="#bor4">Liste der fr&uuml;heren Ausleihen </a></li>
+ </ul>
+ <h3><a href="#search">Suchen</a></h3>
+ <ul>
+ <li><a href="#sea1">SLSP-Suchprofile </a></li>
+ <li><a href="#sea2">Einfache Suche</a></li>
+ <li><a href="#sea3">Erweiterte Suche </a></li>
+ <li><a href="#sea4">Nach einer Wortgruppe suchen</a></li>
+ <li><a href="#sea5">Mit Platzhaltern suchen </a></li>
+ <li><a href="#sea6">Boolesche Operatoren zum Erweitern oder Eingrenzen einer Suche verwenden</a></li>
+ <li><a href="#sea7">Meine Favoriten </a></li>
+ <li><a href="#sea8">Suchhistorie</a></li>
+ <li><a href="#sea9">Suchen speichern und verwalten </a></li>
+ <!--<li><a href="#sea10">Citation Linker </a></li>-->
+ </ul>
+ <h3><a href="#display">Ergebnisse anzeigen</a></h3>
+ <ul>
+ <li><a href="#dis1">Ergebnisse eingrenzen </a></li>
+ <li><a href="#dis2">Ergebnisliste: Sortieren </a></li>
+ <li><a href="#dis3">Ergebnisliste: Versionen</a> </li>
+ <li><a href="#dis4">Einzelne Titel anzeigen </a></li>
+ </ul>
+ <h3><a href="#questions">Fragen?</a></h3>
+ <ul>
+ <li><a href="#que1">Kontaktieren Sie uns</a></li>
+ </ul>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="default-card" id="general">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Allgemein </h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <!--<md-card-content id="gen1">
+ <a href="#index"><h3>Ein kurzes Einf&uuml;hrungsvideo zu swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
+ </div>
+ </md-card-content>r-->
+ <md-card-content id="gen2">
+ <a href="#index">
+ <h3>SLSP: Die Swiss Library Service Platform<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Die Swiss Library Service Platform ist zusammen mit dem ihr untergeordneten Konsortium der Schweizer Hochschulbibliotheken mit &uuml;ber <a href="https://slsp.ch/libraries" target="_blank">450 Mitgliedern</a> das gr&ouml;sste Netzwerk von akademischen und Forschungsbibliotheken in der Schweiz. Sie wurde von Bibliotheken f&uuml;r Bibliotheken ins Leben gerufen und ist ein gemeinsames Projekt, mit dem landesweit eine Reihe von Services angeboten werden sollen, z. B. ein gemeinsamer mehrsprachiger Katalog mit wissenschaftlichen Informationen, ein gemeinsamer Vertreter f&uuml;r die Lizenzierung von E-Ressourcen und ein leistungsf&auml;higes Kuriernetzwerk f&uuml;r die gemeinsame Nutzung physischer Exemplare.</p>
+ <p>SLSP stellt einen innovativen und bedeutenden Schritt in Richtung der digitalen Entwicklung der wissenschaftlichen Bibliotheken in der Schweiz dar. Durch die Verwaltung des cloud-gest&uuml;tzten Alma-Systems f&uuml;hrt die Organisation wissenschaftliche Informationen zusammen, die in Bibliotheken in der ganzen Schweiz gespeichert sind. Indem sie diese Informationen zug&auml;nglich und leicht auffindbar macht, tr&auml;gt SLSP zu wissenschaftlichen Entdeckungen und Fortschritten bei.</p>
+</md-card-content>
+ <md-card-content id="gen3">
+ <a href="#index">
+ <h3>SLSP-Netzwerk<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Das SLSP-Netzwerk ist in mehrere &laquo;Zonen&raquo; unterteilt. SLSP selbst verwaltet die Netzwerkzone (NZ) namens swisscovery, w&auml;hrend die Bibliotheken in 29 &laquo;Institutionsbereiche&raquo; - bzw. "Institution Zones" (IZ) aufgeteilt sind. </p>
+ <p>Eine IZ ist eine Gruppe von Bibliotheken mit &auml;hnlichen Bed&uuml;rfnissen. Die IZ ist eine Schl&uuml;sselkomponente im SLSP-System und stellt eine Abteilung dar, die Synergien freisetzt und Effizienz steigert. In SLSP unterscheiden wir zwei Arten von IZs: Zonen mit einzelnen Einheiten und Zonen mit gemischten Einheiten. </p>
+ <p>In einer Zone mit einer einzelnen Einheit ist der Grossteil der Bibliotheken rechtlich mit einer Haupteinheit (z. B. einer Universit&auml;t) verbunden. In einer Zone mit gemischten Einheiten sind Bibliotheken rechtlich mit verschiedenen Einheiten verbunden (z. B. werden sie aus geografischen &Uuml;berlegungen heraus zusammengelegt).</p>
+ <p>Um auf die Ressourcen der SLSP-Mitglieder zugreifen zu k&ouml;nnen, m&uuml;ssen die Benutzende auf die Bedienoberfl&auml;chen, die sogenannten &laquo;Views&raquo;, zugreifen. In SLSP haben wir eine View f&uuml;r die Netzwerkzone (NZ), eine View f&uuml;r jede IZ und mehrere Views f&uuml;r einzelne Bibliotheken vorbereitet. </p>
+ <p>Jede View hat ihre spezifischen Suchbereiche, die unterschiedliche Ergebnisse liefern, wenn sie f&uuml;r die Suche verwendet werden. Die Netzwerkzone in swisscovery enth&auml;lt alle Datens&auml;tze, die aus den SLSP-Bibliotheken stammen, einige allgemeine externe Ressourcen (z. B. e-rara, ZORA usw.) und den Central Discovery Index (CDI). Die IZ-View oder Bibliotheks-View enth&auml;lt den lokalen Bestand der IZ / Bibliothek, allgemeine und lokale externe Ressourcen und den CDI-Index. </p>
+ <p>Central Discovery Index (CDI): ist eine zentrale Datenbank mit mehr als 3 Milliarden Datens&auml;tzen; z. B.: Zeitschriftenartikel, E-Books, Dissertationen, Konferenzberichte usw. </p>
+ <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_ger.png" />
+ <p>Unter dem folgenden <a href="https://slsp.ch/libraries" target="_blank">Link</a> finden Sie die Topologie des SLSP-Netzwerks, eine umfassende Liste aller SLSP-Mitgliedsbibliotheken, aufgeteilt nach IZ, sowie den Link zu jeder vorhandenen View unseres Netzwerks. F&uuml;r jede IZ und Bibliothek finden Sie die Adresse, die Kontaktinformationen und die angebotenen Services. </p>
+</md-card-content>
+ <md-card-content id="gen4">
+ <a href="#index">
+ <h3>Ein Konto erstellen<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Um sich in SLSP zu registrieren, gehen Sie bitte zun&auml;chst auf: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
+ <p>Nach dem Start des Registrierungsprozesses werden Sie aufgefordert, sich mit einem SWITCH edu-ID-Benutzungskonto anzumelden. Wenn Sie bereits ein SWITCH edu-ID-Benutzungskonto haben, melden Sie sich einfach an, um mit der Registrierung fortzufahren. Falls Sie Ihr Passwort noch nicht haben, finden Sie einen Link zum Zur&uuml;cksetzen des Passworts auf der Anmeldeseite.</p>
+ <p>Wenn Sie noch kein SWITCH edu-ID-Benutzungskonto haben, k&ouml;nnen Sie auf der Anmeldeseite auf &laquo;Konto erstellen&raquo; klicken. </p>
+ <p><strong>Hinweis:</strong> Wenn Sie an einer Universit&auml;t studieren, ist es m&ouml;glich, dass Sie schon einmal in SLSP registriert waren. In diesem Fall erscheint eine Meldung und Sie werden zum Anmeldebereich der View weitergeleitet.</p>
+</md-card-content>
+ <md-card-content id="gen5">
+ <a href="#index">
+ <h3>Bibliotheksausweis<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Mit Ihrem Bibliotheksausweis haben Sie Zugang zu einer Reihe von Services, Sie k&ouml;nnen zum Beispiel ein physisches Exemplar in einer Bibliothek ausleihen. </p>
+ <p>Wenn Sie bereits einen Bibliotheksausweis des <a href="https://www.nb.admin.ch/snl/de/home/dienstleistungen/ausleihe-benutzung/bibliopass.html" target="_blank">BibliOpass-Netzwerks</a> besitzen, k&ouml;nnen Sie die Bibliotheksausweisnummer optional bei der Registrierung bei SLSP oder sp&auml;ter angeben. Einige Campus-/Universit&auml;ts-/Studentenausweise sind auch als Bibliotheksausweis g&uuml;ltig. Einige Universit&auml;ten stellen ihren Benutzenden auch die Bibliotheksausweisnummer zur Verf&uuml;gung. Welche Bibliotheksausweisnummern mit einem SLSP-Konto verkn&uuml;pft sind, wird w&auml;hrend des Registrierungsprozesses bei SLSP angezeigt (siehe Kapitel &laquo;Ein Konto erstellen&raquo;). </p>
+ <p>Wenn Sie keinen physischen Bibliotheksausweis besitzen, k&ouml;nnen Sie Ihre Bibliothek bitten, Ihnen einen auszustellen.</p>
+</md-card-content>
+ <md-card-content id="gen6">
+ <a href="#index">
+ <h3>Anmelden und Abmelden<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In swisscovery: Klicken Sie auf &laquo;Anmelden&raquo; - w&auml;hlen Sie Ihre IZ - klicken Sie auf &laquo;SWITCH edu-ID&raquo; - geben Sie Ihre E-Mail-Adresse und Ihr Passwort ein - klicken Sie auf &laquo;Anmelden&raquo; </p>
+ <p>In einer IZ / Bibliotheks-View: Klicken Sie auf &laquo;Anmelden&raquo; - klicken Sie auf &laquo;SWITCH edu-ID&raquo; - geben Sie Ihre E-Mail-Adresse und Ihr Passwort ein - klicken Sie auf &laquo;Anmelden&raquo;</p>
+ <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_ger.png" />
+ <p>F&uuml;r die folgenden Schritte m&uuml;ssen Sie angemeldet sein:</p>
+ <ul>
+ <li>Dokumente anfordern (Ausleihe, Digitalisierungsauftrag, ILL)</li>
+ <li>Ihre Ausleihen und Vormerkungen von Bibliotheken im SLSP-Netzwerk anzeigen und kontrollieren. </li>
+ <li>Ausleihfristen verl&auml;ngern, Reservierungen stornieren </li>
+ <li>Favoriten speichern</li>
+ <li>Suchen speichern und Benachrichtigungen einstellen</li>
+ <li>Spracheinstellungen dauerhaft &auml;ndern </li>
+ </ul>
+ <p>Als Gast k&ouml;nnen Ihre Favoriten, Suchanfragen und die gew&auml;hlte Sprache nur f&uuml;r die aktuelle Browser-Sitzung gespeichert werden. </p>
+ <p>Melden Sie sich nach einer Sitzung ab, um Ihr Konto vor dem Zugriff durch andere Benutzende zu sch&uuml;tzen. </p>
+ <h4>HINWEIS:</h4>
+ <p>Gewisse Online-Ressourcen sind ohne Anmeldung zug&auml;nglich, aber um auf das gesamte Angebot zugreifen zu k&ouml;nnen, m&uuml;ssen Sie sich anmelden. </p>
+ <p>
+ Der Zugang zu Online-Ressourcen h&auml;ngt oft von Ihrer Zugeh&ouml;rigkeit, z. B. als Studierende oder als Forschende, zu einer lizenzierenden Hochschulinstitution (HEI) ab. Einige HEIs erm&ouml;glichen den Benutzenden den Fernzugriff auf Online-Ressourcen. Weitere Informationen zu den Bedingungen f&uuml;r den Zugriff auf die Online-Ressourcen finden Sie im Kapitel &laquo;Online-Ressourcen&raquo; auf dieser Hilfeseite oder auf der Website der Bibliothek, f&uuml;r welche die jeweilige Ressource lizenziert ist.
+ </p>
+ <p>Diese Bedingungen gelten nicht f&uuml;r nationale Lizenzen (weitere Informationen finden Sie im entsprechenden Kapitel auf dieser Hilfeseite). </p>
+</md-card-content>
+ <md-card-content id="gen7">
+ <a href="#index">
+ <h3>Mein Konto <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Sie m&uuml;ssen sich anmelden, um auf Ihr Konto zugreifen zu k&ouml;nnen. Klicken Sie im Anschluss oben rechts auf der Seite auf Ihren Namen. Sie sehen nun ein Men&uuml;, das einige Untermen&uuml;s f&uuml;r Ihr Konto enth&auml;lt. Um vollen Zugriff auf das Konto f&uuml;r Ihre Daten zu erhalten, klicken Sie auf &laquo;Mein Konto&raquo;.</p>
+ <p>Von dieser Seite aus k&ouml;nnen Sie Ihre Ausleihen, Vormerkungen, Geb&uuml;hren, Meldungen und viele andere Funktionen einsehen. </p>
+ <p><strong>HINWEIS:</strong> Jede IZ hat ihren eigenen Bereich. Das bedeutet zum Beispiel, dass wenn Sie eine Ressource in der IZ der KUB Freiburg und eine Ressource in der IZ der ETH Z&uuml;rich ausleihen, diese auf verschiedene Seiten aufgeteilt sind, siehe unten:</p>
+ <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_ger.png" />
+</md-card-content>
+ <md-card-content id="gen8">
+ <a href="#index">
+ <h3>Konto aktualisieren <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Um Ihre Adresse oder andere Informationen bez&uuml;glich Ihres Kontos zu &auml;ndern, gehen Sie auf die Seite &laquo;Meine edu-ID&raquo; auf <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> und aktualisieren Sie Ihr edu-ID-Konto. Bitte beachten Sie, dass &Auml;nderungen, die in &laquo;Mein Konto&raquo; in swisscovery oder in den IZs vorgenommen werden, mit den Informationen von edu-ID &uuml;berschrieben werden. Wenn Sie Ihre Bibliotheksausweisnummern verwalten m&ouml;chten, gehen Sie bitte auf <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
+</md-card-content>
+ <md-card-content id="gen9">
+ <a href="#index">
+ <h3>Sprache einstellen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Klicken Sie auf &laquo;Anzeige-Sprache&raquo;, um die Spracheinstellungen f&uuml;r die aktuelle Sitzung zu &auml;ndern. Wenn Sie angemeldet sind, wird die eingestellte Sprache dauerhaft gespeichert. Sie k&ouml;nnen auch die Sprache Ihrer Oberfl&auml;che &auml;ndern, indem Sie in Ihrem Konto in den Bereich &laquo;Pers&ouml;nliche Details&raquo; gehen. </p>
+ <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_ger.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="online">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Online-Ressourcen</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+
+ <md-card-content id="onl1">
+ <a href="#index">
+ <h3>Online-Ressourcen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Alle Arten von Online-Ressourcen, die von den teilnehmenden Bibliotheken angeboten werden, werden bei der Suche indexiert: B&uuml;cher, Zeitschriften, Datenbanken, digitalisierte Fotos, Landkarten, Manuskripte und andere Sammelexemplare. Jedoch sind nicht alle Dokumente frei zug&auml;nglich. Viele Dokumente werden &uuml;ber eine Lizenz erworben und sind nur im Netzwerk der Universit&auml;t zug&auml;nglich, die &uuml;ber eine Lizenz f&uuml;r diese Ressource verf&uuml;gt. Mit Hilfe von Filtern k&ouml;nnen Sie die Suche auf lizenzierte Online-Dokumente und Open-Access-Dokumente (Online verf&uuml;gbar) eingrenzen oder nur frei zug&auml;ngliche Dokumente (Open Access) ausw&auml;hlen.</p>
+ <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_ger.png" />
+ <p>
+ Bei Online-Ressourcen enth&auml;lt der Bereich &laquo;Online ansehen&raquo; in der Volltitelanzeige Informationen &uuml;ber die Verf&uuml;gbarkeit der Ressource in Ihrer Institution und in anderen Institutionsbereichen des SLSP-Netzwerks. Um auf die Ressource zuzugreifen, klicken Sie auf das Symbol <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
+ </p>
+ <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_ger.png" />
+</md-card-content>
+ <md-card-content id="onl2">
+ <a href="#index">
+ <h3>Online-Services f&uuml;r Mitglieder einer Universit&auml;t<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Neben Open-Access-Dokumenten k&ouml;nnen Sie auch die Online-Services Ihrer Universit&auml;t nutzen. E-Journals, E-Books und Datenbanken werden &uuml;ber Lizenzen erworben und der Zugriff ist ausschliesslich auf das Netzwerk der Institution mit der entsprechenden Lizenz (auf dem Campus) beschr&auml;nkt. Von ausserhalb der Universit&auml;t k&ouml;nnen Sie VPN, Eduroam, EZProxy usw. verwenden, um auf solche Dokumente zuzugreifen. Informationen zum Fernzugriff finden Sie auf der IT-Website Ihrer Bibliothek oder Ihrer Universit&auml;t.</p>
+ <p>
+ Der Bereich &laquo;Online ansehen&raquo; bietet verf&uuml;gbare Services f&uuml;r die Ressourcen in Ihrer Institution und in anderen IZs des SLSP-Netzwerks. Klicken Sie auf &laquo;Online verf&uuml;gbar&raquo; und auf das Symbol <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />, um zur Volltitelanzeige zu gelangen.
+ </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_ger.png" />
+ <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_ger.png" />
+</md-card-content>
+ <md-card-content id="onl3">
+ <a href="#index">
+ <h3>Online-Services f&uuml;r Personen, die nicht Mitglied einer Universit&auml;t sind <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Zus&auml;tzlich zu Open-Access- und Online-Ressourcen unter einer nationalen Lizenz k&ouml;nnen Sie auch die lizenzierten Ressourcen der Universit&auml;ten nutzen, falls Sie sich innerhalb der Universit&auml;t befinden. </p>
+ <p>Wissenschaftliche E-Journals, E-Books und Datenbanken werden &uuml;ber Lizenzen erworben und der Zugriff ist ausschliesslich auf das Netzwerk der Institution mit entsprechender Lizenz (auf dem Campus) beschr&auml;nkt. Sie k&ouml;nnen die Ressourcen vor Ort bei ebendieser Bibliothek herunterladen und/oder darauf zugreifen. </p>
+ <p>Welche Bibliotheken Zugang zu einer Online-Ressource anbieten, wird unter &laquo;Standorte&raquo; angezeigt: </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_ger.png" />
+ <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_ger.png" />
+</md-card-content>
+ <md-card-content id="onl4">
+ <a href="#index">
+ <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Open-Access-Dokumente sind frei zug&auml;nglich. Es handelt sich zum einen um Zeitschriftenartikel oder E-Books auf verschiedenen Plattformen oder in institutionellen Best&auml;nden und zum anderen um digitalisierte Dokumente aus Bibliotheksbest&auml;nden. Diese Dokumente sind in der Ergebnisliste mit einem Open-Access-Symbol gekennzeichnet. </p>
+ <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_ger.png" />
+</md-card-content>
+ <md-card-content id="onl5">
+ <a href="#index">
+ <h3>Nationale Lizenzen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Alle Personen, die in der Schweiz leben, haben Zugang zu den &uuml;ber nationale Lizenzen verf&uuml;gbaren Ressourcen. Hierf&uuml;r ist eine einmalige Registrierung erforderlich; weitere Informationen finden Sie unter
+ <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Bitte beachten Sie, dass f&uuml;r die Registrierung f&uuml;r die nationalen Lizenzen dieselbe edu-ID wie f&uuml;r swisscovery verwendet werden kann.</p>
+ <p>Verf&uuml;gbare Ressourcen aus nationalen Lizenzen sind im Bereich &laquo;Volltext-verf&uuml;gbarkeit&raquo; in Klammern gekennzeichnet.</p>
+ <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_ger.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="borrow">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Fernleihe-/Bestelldokumente </h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="bor1">
+ <a href="#index">
+ <h3>Fernleihe-/Bestelldokumente<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Unter &laquo;Ausleihen&raquo; in der Volltitelanzeige sehen Sie die Bibliotheken, in denen das Dokument vorhanden ist, und ob es derzeit verf&uuml;gbar ist. Die Lieferung eines Exemplars an einen Abholstandort kann kostenpflichtig sein.</p>
+ <p>Unter &laquo;Andere Optionen&raquo; sehen Sie, ob SLSP-Bibliotheken anderer Institutionsbereiche das Dokument ebenfalls im Bestand haben.</p>
+ <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_ger.png" />
+ <p>W&auml;hlen Sie die gew&uuml;nschte Vormerkungsoption: Vormerkung (physisches Exemplar/Buchung) oder Digitalisierung (elektronisch oder Papierform). Sie m&uuml;ssen angemeldet sein, um eine Vormerkung aufgeben zu k&ouml;nnen.</p>
+ <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_ger.png" />
+ <p>Wenn Sie "Vormerkung" ausw&auml;hlen, k&ouml;nnen Sie ein physisches Exemplar zur Abholung in einer Bibliothek vormerken lassen. Einige Exemplare k&ouml;nnen auch f&uuml;r eine Lieferung auf dem Postweg (geb&uuml;hrenpflichtig) vorgemerkt werden. Wenn diese Option angeboten wird, k&ouml;nnen Sie sie w&auml;hlen, indem Sie im Feld &laquo;Abhol-Institution&raquo; Ihre Institution und im Feld &laquo;Abholort&raquo; Heimadresse ausw&auml;hlen. </p>
+ <p>Wenn Sie ein elektronisches oder ausgedrucktes Exemplar eines Artikels oder Kapitels erhalten m&ouml;chten, klicken Sie auf "Digitalisierung" und f&uuml;llen Sie das Formular mit so vielen Angaben wie m&ouml;glich aus. </p>
+ <p><strong>HINWEIS:</strong> Diese Services sind in Ihrer IZ / Bibliothek m&ouml;glicherweise nicht verf&uuml;gbar und k&ouml;nnen kostenpflichtig sein. Weitere Informationen finden Sie <a href="https://slsp.ch/fees" target="_blank">hier</a>. </p>
+</md-card-content>
+ <md-card-content id="bor2">
+ <a href="#index">
+ <h3>Vormerkungen zur Fernleihe<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>
+ Obwohl das SLSP-Netzwerk Zugriff auf mehr als 50 Millionen Titel und unz&auml;hlige elektronische Ressourcen bietet, kann es sein, dass die Publikation, nach der Sie suchen, nicht darunter ist. In diesem Fall k&ouml;nnen Sie einen Fernleihauftrag aufgeben und die Bibliothek leiht die Publikation bei einer anderen Bibliothek in der Schweiz oder im Ausland aus (geb&uuml;hrenpflichtig). Bitte f&uuml;llen Sie hierzu <a href="https://slsp.ch/en" target="_blank">dieses Formular aus</a>.
+ </p>
+ <p><strong>HINWEIS:</strong> F&uuml;r diesen Service k&ouml;nnen zus&auml;tzliche Geb&uuml;hren anfallen. Weitere Informationen zu Geb&uuml;hren <a href="https://slsp.ch/fees" target="_blank">finden Sie auf dieser Seite</a>.</p>
+</md-card-content>
+ <md-card-content id="bor3">
+ <a href="#index">
+ <h3>Ausleihfristen verl&auml;ngern <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In &laquo;Mein Konto&raquo; sehen Sie Ihre aktuellen Ausleihen und k&ouml;nnen sie einzeln oder alle verl&auml;ngern, sofern dies die Ausleihbedingungen erlauben. </p>
+ <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_ger.png" />
+ <!--<p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>-->
+ <p><strong>HINWEIS:</strong> Die Ausleihbedingungen k&ouml;nnen je nach Institution und Art des Materials variieren.</p>
+</md-card-content>
+ <md-card-content id="bor4">
+ <a href="#index">
+ <h3>Liste der fr&uuml;heren Ausleihen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In &laquo;Mein Konto&raquo; k&ouml;nnen Sie im Bereich &laquo;Ausleihen&raquo; der IZs Ihre aktiven und fr&uuml;heren Ausleihen sehen. </p>
+ <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_ger.png" />
+ <p><strong>HINWEIS:</strong> In einigen IZs / Bibliotheken steht diese Option aufgrund kantonaler Datenschutzbestimmungen nicht zur Verf&uuml;gung.</p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="search">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Suchen</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="sea1">
+ <a href="#index">
+ <h3>SLSP-Suchprofile <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>SLSP arbeitet mit zwei Standard-Suchprofilen, die in jeder Ansicht zu finden sind. Das erste ist "swisscovery" und umfasst die Ressourcen aller Bibliotheken des SLSP Netzwerks , das zweite ist &laquo;Meine Bibliothek&raquo;. Auf der folgenden Infografik sehen Sie den Unterschied der beiden Standard-Suchprofile. In bestimmten IZs oder Bibliotheks-Views werden zus&auml;tzliche kundenspezifische Suchprofile angezeigt, die von der IZ / Bibliothek erstellt wurden. </p>
+ <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_ger.png" />
+ <p><strong>Meine Bibliothek: </strong> Umfasst den lokalen Bestand der IZ / Bibliothek + externe Ressourcen, die in dieser IZ eingespielt sind (allgemein und lokal) + CDI (CDI kann auch als separates Suchprofil verwendet werden). Dieses Suchprofil ist immer nach der Institution benannt.</p>
+ <p><strong>swisscovery:</strong> Alle Datens&auml;tze des SLSP-Netzwerks + allgemeine externe Ressourcen + CDI. </p>
+ <p><strong>Eigene Suchprofile:</strong> Einige Institutionsbereiche / Bibliotheken haben ihre eigenen Suchprofile einschliesslich spezifischer lokaler Daten erstellt.</p>
+ <p><strong>Central Discovery Index (CDI):</strong> Ist eine zentrale Datenbank, die unz&auml;hlbare Quellen f&uuml;r insgesamt mehr als 3 Milliarden Datens&auml;tze umfasst, z. B.: Zeitschriftenartikel, E-Books, Dissertationen, Konferenzberichte, Patente, Berichte, Regierungsdokumente, Bilder und Videos. Je nach IZ /Bibliotheks-View kann der CDI im Suchprofil &laquo;Meine Bibliothek&raquo;, in einem separaten Suchprofil oder in beiden durchsucht werden. </p>
+ <p><strong>Allgemeine Externe Ressourcen:</strong> swisscovery wurde um allgemeine elektronische externe Ressourcen erweitert, haupts&auml;chlich aus institutionellen Repositorien. </p>
+ <p><strong>Lokale Externe Ressourcen: </strong> Zus&auml;tzlich zu den allgemeinen externen Ressourcen bieten einige Institutionsbereiche auch lokale externe Ressourcen an, die nur f&uuml;r die eigenen Benutzenden zug&auml;nglich sind. </p>
+</md-card-content>
+ <md-card-content id="sea2">
+ <a href="#index">
+ <h3>Einfache Suche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Die einfache Suche erm&ouml;glicht einen schnellen Zugriff auf die Bibliotheksressourcen. </p>
+ <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_ger.png" />
+</md-card-content>
+ <md-card-content id="sea3">
+ <a href="#index">
+ <h3>Erweiterte Suche <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Die Suchfelder der erweiterten Suche k&ouml;nnen mit UND, ODER oder NICHT verkn&uuml;pft werden. </p>
+ <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_ger.png" />
+ <p>In diesem Beispiel ist die Suche auf B&uuml;cher in englischer Sprache beschr&auml;nkt, die &laquo;mountain railway*&raquo; im Titel und "Switzerland " als Thema enthalten. </p>
+ <p>Via Dropdown Menu in der zweiten (bzw. dritten) Spalte der Zeile k&ouml;nnen Sie zwischen &laquo;enth&auml;lt&raquo; oder &laquo;ist(exakt)&raquo; oder &laquo;beginnt mit&raquo; w&auml;hlen. Dadurch legen Sie fest, ob die Suchbegriffe im Feld enthalten sein sollen, ob das Ergebnis exakt mit den Suchbegriffen &uuml;bereinstimmen muss oder ob das Element mit einem bestimmten Begriff beginnen muss. </p>
+ <p>Sie k&ouml;nnen ein paar Stichw&ouml;rter des Titels eingeben (beliebige Reihenfolge):</p>
+ <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_ger.png" /><br />
+ <p>Sie k&ouml;nnen den exakten Titel suchen:</p>
+ <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_ger.png" />
+ <p>Sie k&ouml;nnen nach Titeln suchen, die mit dem Wort &laquo;mountain&raquo; beginnen:</p>
+ <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_ger.png" />
+</md-card-content>
+ <md-card-content id="sea4">
+ <a href="#index">
+ <h3>Nach einer Wortgruppe suchen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Wenn Sie nach einer Wortgruppe suchen m&ouml;chten, setzen Sie diese in Anf&uuml;hrungszeichen. Sie k&ouml;nnen bei einer Suche Wortgruppen und W&ouml;rter kombinieren. </p>
+ <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_ger.png" />
+ <p>Die Ergebnisse der obigen Suche umfassen Dokumente, die sowohl die Wortgruppe &laquo;piz buin&raquo; als auch den Wort &laquo;mountain&raquo; enthalten. </p>
+</md-card-content>
+ <md-card-content id="sea5">
+ <a href="#index">
+ <h3>Mit Platzhaltern suchen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Der Asterisk * und das Fragezeichen ? k&ouml;nnen bei der Suche als Platzhalter verwendet werden:</p>
+ <p>Der Asterisk * ist der Platzhalter f&uuml;r null bis mehrere beliebige Zeichen: </p>
+ <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_ger.png" />
+ <p>sucht nach culture, cultures, cultural usw.</p>
+ <p>Der Asterisk * kann auch dabei helfen, verschiedene Schreibweisen bei der Suche zu ber&uuml;cksichtigen: </p>
+ <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_ger.png" />
+ <p>sucht nach yogurt, yoghurt, yogourt, yoghourt usw.</p>
+ <p>Das Fragezeichen ? ist der Platzhalter f&uuml;r ein einzelnes Zeichen: </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_ger.png" />
+ <p>sucht sowohl nach woman als auch nach women.</p>
+ <p>Sie k&ouml;nnen ebenfalls folgende beide Zeichen auch kombinieren</p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_ger.png" />
+ <p>Sie erhalten Ergebnisse mit yoghurt, yogourt, yohurts oder yogourts</p>
+</md-card-content>
+ <md-card-content id="sea6">
+ <a href="#index">
+ <h3>Boolesche Operatoren zum Erweitern oder Eingrenzen einer Suche verwenden<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Sie k&ouml;nnen die booleschen Operatoren UND, ODER und NICHT verwenden. Diese m&uuml;ssen zwingend in Grossbuchstaben geschrieben werden, damit sie angewendet werden. </p>
+ <p>Ohne Operatoren werden die Suchbegriffe automatisch mit <strong>UND</strong> verkn&uuml;pft. Somit m&uuml;ssen alle Suchbegriffe f&uuml;r die Ergebnisse zutreffend sein. </p>
+ <p><strong>ODER</strong></p>
+ <p>Mindestens einer der mit ODER verkn&uuml;pften Suchbegriffe muss in den Ergebnissen zutreffen. Verwenden Sie ODER zum Beispiel, um verwandte Begriffe zu kombinieren und so die Suche auf mehrere Begriffe (Synonyme, unterschiedliche Schreibweisen) zu erweitern:</p>
+ <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_ger.png" />
+ <p><strong>NICHT</strong></p>
+ <p>Der mit NICHT ausgeschlossene Suchbegriff darf nicht in den Ergebnissen erscheinen. Auf diese Weise k&ouml;nnen W&ouml;rter oder Wortgruppen explizit ausgeschlossen werden. </p>
+ <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
+ <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_ger.png" />
+ <p>Die Ergebnisse umfassen Dokumente, die die Wortgruppen &laquo;climate change&raquo;, aber nicht &laquo;global warming&raquo; enthalten.</p>
+</md-card-content>
+ <md-card-content id="sea7">
+ <a href="#index">
+ <h3>Meine Favoriten<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>In &laquo;Meine Favoriten&raquo; k&ouml;nnen Sie Treffer speichern, die Sie w&auml;hrend Ihrer Suche gefunden haben. Langfristiges Speichern ist nur m&ouml;glich, wenn Sie angemeldet sind. Als Gast stehen Ihnen die Favoriten nur w&auml;hrend der aktuellen Browser-Sitzung zur Verf&uuml;gung.</p>
+ <p>
+ Wenn Sie auf das Stecknadel-Symbol
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> n der Trefferanzeige klicken, wird der Titel zu Ihren Favoriten hinzugef&uuml;gt; das Stecknadel-Symbol &auml;ndert sich zu
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Wenn Sie auf
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" /> klicken, wird der Titel aus Ihren Favoriten entfernt.
+ </p>
+ <p>
+ &Uuml;ber das Stecknadel-Symbol
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> oben rechts auf der Seite k&ouml;nnen Sie auf Ihre Favoritensammlung zugreifen.
+ </p>
+ <p>Sie k&ouml;nnen einzelne Titel aus Ihrer Favoritenliste entfernen oder exportieren. Markieren Sie einen oder mehrere Titel und verwenden Sie die Symbole oben auf der Seite, um sie zu l&ouml;schen, Beschriftungen hinzuzuf&uuml;gen, sie in Referenzverwaltungsprogramme zu exportieren, sie zu drucken oder per E-Mail zu versenden: </p>
+ <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_ger.png" />
+ <p>Um die Details eines Titels anzuzeigen, klicken Sie auf den Titel.</p>
+ <p>Unter &laquo;Meine Favoriten&raquo; finden Sie auch die Suchhistorie f&uuml;r die aktuelle Sitzung. </p>
+</md-card-content>
+ <md-card-content id="sea8">
+ <a href="#index">
+ <h3>Suchhistorie<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Die Suchanfragen der aktuellen Sitzung werden in Ihren Favoriten unter &laquo;Suchhistorie&raquo; aufgezeichnet.</p>
+ <p>
+ Zum &Ouml;ffnen der Suchhistorie klicken Sie auf das Symbol
+ <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />oben rechts auf der Seite.
+ </p>
+ <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_ger.png" />
+</md-card-content>
+ <md-card-content id="sea9">
+ <a href="#index">
+ <h3>Suchen speichern und verwalten<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Wenn Sie angemeldet sind, k&ouml;nnen Sie Suchanfragen dauerhaft speichern. Klicken Sie dazu auf &laquo;Suchanfrage speichern&raquo; oberhalb der Ergebnisliste:</p>
+ <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_ger.png" />
+ <p><strong>HINWEIS:</strong> Die Option &laquo;Suchanfrage speichern&raquo; wird nur angezeigt, wenn Sie angemeldet sind und eine Suchanfrage gestellt haben. </p>
+ <p>Wenn Sie Ihre Suchanfrage speichern, k&ouml;nnen Sie E-Mail-Benachrichtigungen abonnieren. In diesem Fall erhalten Sie eine E-Mail, wenn es Neuigkeiten zu Ihrer Anfrage gibt. Zur Aktivierung dieses Service erscheint oben auf der Seite automatisch eine Meldung.</p>
+ <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_ger.png" /><br />
+ <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ger.png" />
+ <p>
+ Die gespeicherten Suchen werden unter &laquo;Meine Favoriten&raquo;
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in der Registerkarte &laquo;gespeicherte Suchen&raquo; gespeichert.
+ </p>
+ <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_ger.png" />
+ <p>Wenn Sie auf den Eintrag der gespeicherten Suche klicken, wird die Suchanfrage erneut ausgef&uuml;hrt. Mit den Symbolen auf der rechten Seite k&ouml;nnen Sie eine Benachrichtigung (per RSS oder E-Mail) einrichten, die Sie &uuml;ber neu hinzugef&uuml;gte Dokumente informieren, die Ihre Suchkriterien erf&uuml;llen. </p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="display">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ergebnisse anzeigen</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="dis1">
+ <a href="#index">
+ <h3>Ergebnisse eingrenzen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In der linken Spalte werden Filterm&ouml;glichkeiten vorgeschlagen, mit denen Sie Ihre Suchergebnisse eingrenzen k&ouml;nnen: </p>
+ <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_ger.png" />
+ <p>Wenn Sie auf &laquo;Artikel&raquo; klicken, wird im obigen Beispiel die Ergebnisliste auf die 113 gefundene Artikel begrenzt.</p>
+ <p>Um einen Begriff auszuschliessen, klicken Sie auf das rote Symbol rechts neben dem Begriff. </p>
+ <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_ger.png" />
+ <p>Mit &laquo;Weitere anzeigen&raquo; k&ouml;nnen Sie weitere Begriffe anzeigen lassen und die Suche verfeinern, indem Sie mehrere Begriffe ein- oder ausschliessen. </p>
+ <p>Beispiel: Grenzen Sie die Ergebnisse auf &laquo;B&uuml;cher&raquo;, &laquo;Hochschulschriften&raquo; und &laquo;Videos&raquo; ein.</p>
+ <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_ger.png" />
+ <p>Um einen Filter zu entfernen, klicken Sie auf das x neben dem entsprechenden Begriff. Mit &laquo;Filter zur&uuml;cksetzen&raquo; werden alle Filter entfernt.</p>
+ <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_ger.png" />
+ <p>Durch eine neue Sucheingabe werden automatisch alle Filter entfernt. Sie k&ouml;nnen jedoch einen Filter f&uuml;r die Dauer der Browser-Sitzung speichern, indem Sie ihn ausw&auml;hlen und dann auf das Schloss-Symbol klicken. Um diesen Filter zu entfernen, klicken Sie erneut auf das Schloss-Symbol. </p>
+ <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_ger.png" />
+</md-card-content>
+ <md-card-content id="dis2">
+ <a href="#index">
+ <h3>Ergebnisliste: Sortieren<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Die Ergebnisse sind standardm&auml;ssig nach Relevanz sortiert. Sie k&ouml;nnen sie auch nach Datum, Verfasser und Titel sortieren lassen. </p>
+ <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_ger.png" />
+</md-card-content>
+ <md-card-content id="dis3">
+ <a href="#index">
+ <h3>Ergebnisliste: Versionen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Wenn ein Werk in mehreren Versionen (d.h. in verschiedenen Ausgaben oder Druckversionen) erh&auml;ltlich ist, klicken Sie auf das Symbol, den Titel oder &laquo;Alle Versionen anzeigen&raquo;, um alle Versionen aufzulisten. </p>
+ <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_ger.png" />
+ <p>Sie k&ouml;nnen zur Ergebnisliste zur&uuml;ckkehren, indem Sie die Liste der Versionen unter &laquo;Aktive Filter&raquo; schliessen.</p>
+ <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ger.png" />
+</md-card-content>
+ <md-card-content id="dis4">
+ <a href="#index">
+ <h3>Einzelne Titel anzeigen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Wenn Sie auf einen Titel klicken, k&ouml;nnen Sie die folgenden Aktionen ausw&auml;hlen: </p>
+ <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ger.png" />
+ <p><strong>Top:</strong> Zur&uuml;ck zum Seitenanfang</p>
+ <p><strong>Senden an: </strong> Titelinformationen in Referenzverwaltungsprogramm exportieren, Literaturangaben exportieren, Permalink zum Ergebnis erstellen, Titel ausdrucken oder per EMail versenden. Export-Aktionen k&ouml;nnen f&uuml;r bis zu 50 Datens&auml;tze gleichzeitig angewendet werden.</p>
+ <p><strong>Wie man es ausleiht:</strong> Standorte anzeigen, Bestellungen f&uuml;r Ausleihen, Reservierungen oder Kopien aufgeben.</p>
+ <p><strong>Details:</strong> weitere Informationen zum Titel.</p>
+ <p><strong>Verkn&uuml;pfungen:</strong> Links zum Inhaltsverzeichnis, zum fr&uuml;heren/sp&auml;teren Titel, zu allen B&auml;nden einer Reihe.</p>
+ <p><strong>Virtuelle Indexsuche:</strong> Hier sehen Sie ein Bibliotheksregal f&uuml;r den ausgew&auml;hlten Datensatz, sodass Sie noch weitere Exemplare finden k&ouml;nnen, die mit Ihrer Suche in Zusammenhang stehen.</p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="questions">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Fragen?</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="que1">
+ <a href="#index">
+ <h3>Kontaktieren Sie uns<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Bei Fragen, Unklarheiten, Kommentaren oder Anregungen k&ouml;nnen Sie uns sehr gern jederzeit <a href="mailto:swisscovery@slsp.ch" target="_blank">kontaktieren</a>.</p>
+
+</md-card-content>
+
+ </md-card>
+
+ </div>
+
+
+
+ </div>
+
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_en.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_en.html
new file mode 100644
index 0000000..5c8bef4
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_en.html
@@ -0,0 +1,505 @@
+
+<md-content id="help">
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
+ <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
+ <md-card class="default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline"><b>Primo VE Help Page</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ </md-card>
+ <md-card class="default-card">
+ <md-card-content>
+ <h4>Introduction:</h4>
+ <p>Dear User</p>
+ <p>Welcome to the Swisscovery's help page.</p>
+ <p>Swisscovery is the <a href="https://slsp.ch/en" target="_blank">Swiss Library Service Platform Network (SLSP)</a> discovery tool. In this page you will find useful information about how to use Swisscovery and how the SLSP network is organized.</p>
+ <p>Attention: this help page has been created for the whole SLSP Network! This means that some services may not be available in this specific user interface. Please note that the start page or the record's full display may look different from institution to institution to what is showed in this help page.</p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="index">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Index</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <h3><a href="#general">General</a></h3>
+ <ul>
+ <!--<li><a href="#gen1">A short video introduction to Swisscovery</a></li>-->
+ <li><a href="#gen2">SLSP: The Swiss Library Service Platform</a></li>
+ <li><a href="#gen3">SLSP Network</a></li>
+ <li><a href="#gen4">Open an account</a></li>
+ <li><a href="#gen5">Library card</a></li>
+ <li><a href="#gen6">How to Sign in and Sign out</a></li>
+ <li><a href="#gen7">My Account</a></li>
+ <li><a href="#gen8">Update your account </a></li>
+ <li><a href="#gen9">Set language</a></li>
+ </ul>
+ <h3><a href="#online">Online resources</a></h3>
+ <ul>
+ <li><a href="#onl1">Online resources </a></li>
+ <li><a href="#onl2">Online services for university members</a> </li>
+ <li><a href="#onl3">Online services for people who are not members of a university </a></li>
+ <li><a href="#onl4">Open Access </a></li>
+ <li><a href="#onl5">National licences </a></li>
+ </ul>
+ <h3><a href="#borrow">Borrowing/ordering documents</a></h3>
+ <ul>
+ <li><a href="#bor1">Borrowing/ordering documents </a></li>
+ <li><a href="#bor2">Interlibrary loan requests outside SLSP network </a></li>
+ <li><a href="#bor3">Extending loan periods </a></li>
+ <li><a href="#bor4">List of previous loans </a></li>
+ </ul>
+ <h3><a href="#search">Searching</a></h3>
+ <ul>
+ <li><a href="#sea1">SLSP search profiles </a></li>
+ <li><a href="#sea2">Simple search </a></li>
+ <li><a href="#sea3">Advanced search </a></li>
+ <li><a href="#sea4">Searching for a phrase </a></li>
+ <li><a href="#sea5">Searching with wildcards </a></li>
+ <li><a href="#sea6">Using Boolean operators to expand or narrow a search </a></li>
+ <li><a href="#sea7">My favorites </a></li>
+ <li><a href="#sea8">Search history </a></li>
+ <li><a href="#sea9">Saving and managing searches </a></li>
+ <!--<li><a href="#sea10">Citation Linker </a></li>-->
+ </ul>
+ <h3><a href="#display">Displaying the results</a></h3>
+ <ul>
+ <li><a href="#dis1">Narrowing down results </a></li>
+ <li><a href="#dis2">List of results: sorting </a></li>
+ <li><a href="#dis3">List of results: versions</a> </li>
+ <li><a href="#dis4">Viewing individual titles </a></li>
+ </ul>
+ <h3><a href="#questions">Questions?</a></h3>
+ <ul>
+ <li><a href="#que1">Get in touch</a></li>
+ </ul>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="default-card" id="general">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">General </h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <!--<md-card-content id="gen1">
+ <a href="#index"><h3>A short video introduction to Swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
+ </div>
+ </md-card-content>r-->
+ <md-card-content id="gen2">
+ <a href="#index">
+ <h3>SLSP: The Swiss Library Service Platfom<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>
+ The Swiss Library Service Platform, along with his subsidiary Consortium of Swiss Academic Libraries, with more than
+ <a href="https://slsp.ch/libraries" target="_blank">450 members</a>, is the biggest network of academic and research libraries in Switzerland. Created by libraries, for libraries, it is a joint effort to provide a series of services at the entire country such as, a shared multilingual catalogue of scientific information, a unique representative for e-resources licensing and a performant courier network for physical items sharing.
+ </p>
+ <p>SLSP represents an innovative and significant step forward in the digital evolution of scientific libraries in Switzerland. By managing the cloud-based Alma system, the organisation brings together scientific information stored in libraries across Switzerland. By making this information accessible and easily findable, SLSP contributes to scientific discovery and progress.</p>
+ </md-card-content>
+ <md-card-content id="gen3">
+ <a href="#index">
+ <h3>SLSP Network<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>SLSP Network is divided in several "zones". SLSP itself manage the network zone (NZ) called Swisscovery, while libraries have been distributed in 29 "institution zones" (IZ).</p>
+ <p>An institution zone (IZ) is a group of libraries that have similar needs. The IZ is a key component in the SLSP system and represents a division that enables synergies and increases efficiency. In SLSP we distinguish two types of institution zone: single entity zones and mixed entity zones.</p>
+ <p>In a single entity zone, most of libraries are legally related to one main entity (for instance a university). In a mixed entity zone, libraries are legally related to different entities (for instance they are grouped together due to geographical considerations)</p>
+ <p>To access the resources of SLSP members, users must access the users' interfaces called "views". In SLSP we have prepared a view for the Network Zone (NZ), a view for every Institution Zone (IZ) and several views for single libraries.</p>
+ <p>Every view has its specifics search scopes, which will return different results when used for the search. The Swisscovery network zone contains all records coming from the SLSP libraries, some general external resource (for example e-rara data) and the CDI index. The institution zones views and the library views contain the local inventory of the institution zone / library, general and local external resources and the CDI index.</p>
+ <p>Central Discovery Index (CDI): is a central database of more than 3 billion of records such as: journals articles, e-books, dissertations, conference proceedings, etc.</p>
+ <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery.png" />
+ <p>At the following <a href="https://slsp.ch/libraries" target="_blank">link</a> you can find the topology of the SLSP Network, comprehensive of the list of all SLSP member libraries divided per institution zone and the link to every existing view of our network. For every IZ and library you can find the address, the contact information and the services they provide. </p>
+ </md-card-content>
+ <md-card-content id="gen4">
+ <a href="#index">
+ <h3>Open an account <img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>To register with SLSP please first visit to: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
+ <p>After starting the registration, you will be asked to login with a SWITCH edu-ID account. If you already have a SWITCH edu-ID account just login to proceed with the registration. If you don't have your password yet, there is a password reset link on the login page.</p>
+ <p>If you don't have a SWITCH edu-ID account yet, you can click on "Create account" on the login page. </p>
+ <p><strong>Note:</strong> If you study at a university it is possible that you registered with SLSP previously. In this case a message will appear, and you will be forwarded to the view's login section. </p>
+ </md-card-content>
+ <md-card-content id="gen5">
+ <a href="#index">
+ <h3>Library card<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>With your library card you have access to a series of services, for instance, you can loan a physical item in a library. </p>
+ <p>If you already have a library card of the <a href="https://www.nb.admin.ch/snl/en/home/services/user-services/bibliopass.html" target="_blank">BibliOpass network</a> you can optionally provide the library card number during the registration with SLSP or afterwards. Some campus / university / student cards are also valid as library card. Also, some universities will provide the library card number for their users. Which library card numbers are associated to an SLSP account, will be show during registration process with SLSP (see "Open an "account" chapter). </p>
+ <p>If you don't have a physical library card, you can ask your library to provide you with one. </p>
+ </md-card-content>
+ <md-card-content id="gen6">
+ <a href="#index">
+ <h3>How to Sign in and Sign out<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In Swisscovery: click on "Sign in" - choose your institution zone - click on "SWITCH edu-ID" - enter your email address and password - click on "Login" </p>
+ <p>In an institution zone / library view: click on "Sign in" - click on "SWITCH edu-ID" - enter your email address and password - click on "Login" </p>
+ <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin.png" />
+ <p>You need to be signed in to do the following:</p>
+ <ul>
+ <li>Order documents (loan, digitization order, ILL) </li>
+ <li>View and control your loans and requests from libraries in the SLSP network. </li>
+ <li>Extend loan periods, cancel reservations </li>
+ <li>Save favorites </li>
+ <li>Save searches and set alerts </li>
+ <li>Change your language settings permanently </li>
+ </ul>
+ <p>As a guest, your favorites, search requests and selected language can only be saved for the current browser session. </p>
+ <p>Sign out after a session to protect your account against access by other users. </p>
+ <h4>NOTE:</h4>
+ <p>To access online resources, it is not relevant to sign in. </p>
+ <p>
+ Access to online resources often depends on whether your device is within the network of a licensing university and if you work for or study at this university. Some universities and libraries allow users to access online resources from outside their network using a proxy service. For more information concerning the conditions to access the online resources, you can consult the chapter "Online resources" of this help page,
+ the <a href="https://consortium.ch/?lang=en" target="_blank">Consortium's website</a> or the website of the library which licenses for the respective resource.
+ </p>
+ <p>These conditions aren't applied to the National licences (for more information see the corresponding chapter of this help page). </p>
+ </md-card-content>
+ <md-card-content id="gen7">
+ <a href="#index">
+ <h3>My Account <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>You must sign in to access your account. Once you did that, click on your name at the top right of the page, you will access to a menu containing some of the submenu of your account. To have full access at your data's account click on "My Account". </p>
+ <p>From this page you will be able to consult your loans, fees, reminders, requests, messages and many other functionalities. </p>
+ <p><strong>NOTE:</strong> every institution zone has its own space, this means, for example, that if you loan a resource in the BCU Fribourg's institution zone and one at ETH Z&uuml;rich's institution zone they are splitted in different pages, see below: </p>
+ <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount.png" />
+ </md-card-content>
+ <md-card-content id="gen8">
+ <a href="#index">
+ <h3>Update your account<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>To modify your address or other information of your account go to the My edu-ID page on <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> and update your edu-ID account. If you want to manage your library card numbers, please go to <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
+ </md-card-content>
+ <md-card-content id="gen9">
+ <a href="#index">
+ <h3>Set language <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Click on "Menu - Display language" to change the language settings for the current session. If you are signed in, the language set will be saved permanently. You can change your interface language also by entering the "Personal details" section of your account. </p>
+ <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage.png" />
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="online">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Online resources</h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+
+ <md-card-content id="onl1">
+ <a href="#index">
+ <h3>Online resources<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>All kinds of online resources offered by the participating libraries are indexed in the search: books, journals, databases, digitized photos, maps, manuscripts and other collection items. However, not all documents are freely accessible. Many documents are acquired with what is known as a licence and are only available in the network of the licensing university. With the aid of filters, you can narrow the search down to freely accessible (Online - Open Access) or licenced (Online) documents. </p>
+ <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly.png" />
+ <p>
+ For online resources, the "View Online" section in the full display provides information about the availability of the resource in your institution and in others IZs of the SLSP Network. To access the resource,
+ click on the icon <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
+ </p>
+ <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline.png" />
+ </md-card-content>
+ <md-card-content id="onl2">
+ <a href="#index">
+ <h3>Online services for university members<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>In addition to Open Access documents, you can use your university's online services. E-journals, eBooks and databases are acquired with what are known as licences and the access is restricted exclusively to the network of the licensing institution (on campus). From outside the university, you can use VPN, Eduroam, EZProxy, etc. to access these documents. Please check your library or IT university's website for remote access information. </p>
+ <p>
+ The "View Online" section provides available services for the resource at your institution and in other institution zones of the SLSP Network. Click on "Available online"
+ and the icon <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />to get the full display view.
+ </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline.png" />
+ <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull.png" />
+ </md-card-content>
+ <md-card-content id="onl3">
+ <a href="#index">
+ <h3>Online services for people who are not members of a university <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In addition to Open Access and online resources under a national licence, you can also use the universities' licensed resources, albeit not from your own computer. </p>
+ <p>Academic e-journals, eBooks and databases are acquired with what are known as licences and the access is restricted exclusively to the network of the licensing institution (on campus). You can download and/or access the resources on premise of the licensing library. </p>
+ <p>Which libraries offer access to an online resource are displayed under locations: </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2.png" />
+ <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems.png" />
+ </md-card-content>
+ <md-card-content id="onl4">
+ <a href="#index">
+ <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Open Access documents are freely accessible. These are journal articles or books on various platforms or in institutional repositories on the one hand and digitized documents from library holdings on the other. These documents are marked in the list of results. </p>
+ <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess.png" />
+ </md-card-content>
+ <md-card-content id="onl5">
+ <a href="#index">
+ <h3>National licenses<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>All people who reside in Switzerland have access to online resources under the national license. This requires a one-off free registration; further information is available at the address <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Resources available under a National licence are marked in bracket in the "Full text availability" section.</p>
+ <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses.png" />
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="borrow">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Borrowing/requesting documents </h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content id="bor1">
+ <a href="#index">
+ <h3>Borrowing/requesting documents<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Under "Get It" in the full display, you can see the libraries where the document is located and whether it is currently available.</p>
+ <p>Under "Other options" you can see if SLSP libraries from other IZs also have this item available.</p>
+ <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt.png" />
+ <p>Select your desired request option: Request (physical item), Digitization (electronic or paper copy) or Resource Sharing. You must be signed in to place an order. </p>
+ <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption.png" />
+ <p>If you select Request, you can request a physical item to pick-up at a library. You can also order some items per post. If this option is allowed, you can choose it by selecting your institution in the "Pick-up institution" field and Home Address in the "Pick-up location" field. </p>
+ <p>If you would like to get an electronic or paper copy of an article or chapter, click on Digitization and fill in the form with as much details as possible. </p>
+ <p><strong>Note:</strong> These services may not be available in your IZ / library and may be subject to costs. For further information click <a href="https://slsp.ch/fees" target="_blank">here</a>. </p>
+ </md-card-content>
+ <md-card-content id="bor2">
+ <a href="#index">
+ <h3>Interlibrary Loan Requests<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>
+ Despite the SLSP network offers access to more than 17 million of physical bibliographic records and an uncountable number of electronic resources, it is possible your item is not available.
+ In this case, we invite you to fill in this <a href="https://slsp.ch/en" target="_blank">form</a>, your library will take care of your request.
+ </p>
+ <p><strong>Note:</strong> This offer may not be available in your IZ / library and may be subject to additional fees. For more information about the possible fees please, <a href="https://slsp.ch/fees" target="_blank">consult this page</a>.</p>
+ </md-card-content>
+ <md-card-content id="bor3">
+ <a href="#index">
+ <h3>Extending loan periods <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In My Account, you see your current loans and can renew them all or individually, provided this is permitted by the loan conditions. </p>
+ <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans.png" />
+ <p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>
+ <p><strong>Note:</strong> Loan conditions may vary depending on the institutions and type of material.</p>
+ </md-card-content>
+ <md-card-content id="bor4">
+ <a href="#index">
+ <h3>List of previous loans <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>In My Account, in every the "Loans" section of the IZs, you can see your active and previous loans. </p>
+ <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans.png" />
+ <p><strong>Note:</strong> In some institutions zones / libraries this option is not available due to cantonal privacy laws restrictions. </p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="search">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Searching</h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content id="sea1">
+ <a href="#index">
+ <h3>SLSP search profiles <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>SLSP operates with two standard search profiles that can be found in every view. The first is "All SLSP libraries", the second is "My Library". This infographic explains where you search while using one of the two. In certain institution zones or library views it is possible to find additional custom search profiles created by the institution zone / library. </p>
+ <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographic_en.png" />
+ <p><strong>My library:</strong> Includes the local inventory of the institution zone / library + external resources loaded in this institution zone (general and local) + CDI (CDI could also be used as a separate search profile). This search profile is always named after the institution. </p>
+ <p><strong>All SLSP libraries:</strong> All records of the SLSP network + general external resources + CDI </p>
+ <p><strong>Custom Search Profile:</strong> Some institution zones / libraries prepared their own search profiles including Custom Local Data Scope(s). </p>
+ <p><strong>Central Discovery Index (CDI):</strong> Is a central database comprehensive of thousands of sources for a total of more than 3 billion of records such as: journals articles, e-books, dissertations, conference proceedings, patents, reports, government document, images and videos. Depending on the institution zone / library view, the CDI is searchable in the "My Library" search profile, in a separate search profile or both. </p>
+ <p><strong>General External resources:</strong> Swisscovery has been enriched by adding general electronic external resources. A detailed list of these resources is available here. </p>
+ <p><strong>Local external resources:</strong> In addition to the general external resource, some institution zones also provide local external resource. </p>
+ </md-card-content>
+ <md-card-content id="sea2">
+ <a href="#index">
+ <h3>Simple search<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>The simple search enables a rapid access to the library resources. </p>
+ <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch.png" />
+ </md-card-content>
+ <md-card-content id="sea3">
+ <a href="#index">
+ <h3>Advanced search <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>The search fields of the advanced search can be combined with AND, OR or NOT. </p>
+ <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch.png" />
+ <p>In this example the search is limited to books in English that contain "mountain railway*" in the title and Switzerland as a subject. </p>
+ <p>With the aid of the second (or third field), you can specify whether the search terms should be contained in the field or if it must correspond exactly at the search terms.</p>
+ <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1.png" /><br />
+ <p>Here you can put a few words from the title, not necessarily in order</p>
+ <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2.png" />
+ <p>Here you are looking for this exact title</p>
+ <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3.png" />
+ <p>And here, you're looking for titles that start with the word "mountain"</p>
+ </md-card-content>
+ <md-card-content id="sea4">
+ <a href="#index">
+ <h3>Searching for a phrase <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>If you would like to search for a phrase (word group), put it in quotation marks. You can combine phrases and words in a search: </p>
+ <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase.png" />
+ <p>The results include documents that contain both the term "piz buin" and the aspect "mountain". </p>
+ </md-card-content>
+ <md-card-content id="sea5">
+ <a href="#index">
+ <h3>Searching with wildcards <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>The asterisk * and the question mark ? can be used as wildcards for the search.</p>
+ <p>The asterisk * is used to replace zero, one or several characters: </p>
+ <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1.png" />
+ <p>For example, it allow to searches for culture, cultures, cultural etc. </p>
+ <p>The asterisk * can also help to find different spellings: </p>
+ <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2.png" />
+ <p>searches for yogurt, yoghurt, yogourt, yoghourt, etc.</p>
+ <p>The question mark ? is the wildcard for replacing one single character: </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3.png" />
+ <p>searches for both woman and women.</p>
+ <p>You can also combine these two characters: </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4.png" />
+ <p>You'll get results with yoghurt, yogurt, yoghurts or yogurts.</p>
+ </md-card-content>
+ <md-card-content id="sea6">
+ <a href="#index">
+ <h3>Using Boolean operators to expand or narrow a search<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>You can use the Boolean operators AND, OR and NOT. These must be written in capital letters. </p>
+ <p>Without operators, the search terms are automatically combined with AND. In other words, all search terms must appear in the results. </p>
+ <p><strong>OR</strong></p>
+ <p>At least one of the search terms linked with OR must appear in the results. For example, use OR to combine related terms in order to expand the search to several terms (synonyms, different spellings):</p>
+ <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR.png" />
+ <p><strong>NOT</strong></p>
+ <p>The search term excluded with NOT must not appear in the results. In other words, NOT enables words or phrases to explicitly be excluded. </p>
+ <p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>
+ <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT.png" />
+ <p>The results include documents that contain the phrases "climate change", but not "global warming". </p>
+ </md-card-content>
+ <md-card-content id="sea7">
+ <a href="#index">
+ <h3>My Favorites<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>In "My Favorites", you can save titles that you find during your search. Long-term saving is only possible if you are signed in. As a guest, the favorites are only at your disposal during the current browser session. </p>
+ <p>
+ If you click on the pin icon
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> of a title, the title is added to your favorites; the pin icon changes to
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. If you click on
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, the title is removed from the favorites.
+ </p>
+ <p>
+ You can access your collection of favorites via the pin icon
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> at the top right of the page.
+ </p>
+ <p>You can remove or export individual titles from your favorites list. Highlight one or several titles and use the symbols at the top of the page in order to delete them, add labels, export them to reference management programs, print them or send them via email: </p>
+ <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites.png" />
+ <p>In order to view the details of a title, click on the title. </p>
+ <p>You will also find the search history for the current session in "My favorites". </p>
+ </md-card-content>
+ <md-card-content id="sea8">
+ <a href="#index">
+ <h3>Search history<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>The searches from the current session are recorded in your favorites under "Search history".</p>
+ <p>
+ You reach it directly via the icon
+ <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />at the top right of the page.
+ </p>
+ <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory.png" />
+ </md-card-content>
+ <md-card-content id="sea9">
+ <a href="#index">
+ <h3>Saving and managing searches<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>If you are signed in, you can save searches permanently. To do so, click on "Save query" above the list of results: </p>
+ <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery.png" />
+ <p><strong>NOTE:</strong> The "Save query" option is only displayed if you are signed in and have submitted a search. </p>
+ <p>When saving your query, you can receive email notifications when there is an update to the query. To activate this service a message will appear automatically at the top of the page.</p>
+ <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification.png" /><br />
+ <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings.png" />
+ <p>
+ The saved searches are stored in "My Favorites"
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in the tab "Saved searches".
+ </p>
+ <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches.png" />
+ <p>You can perform the search again by clicking it. You can set up a notification (by RSS or email) using the symbols on the right to keep you informed of newly added documents that match you search. </p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="display">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Displaying the results</h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content id="dis1">
+ <a href="#index">
+ <h3>Narrowing down results<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Filtering terms are proposed on the left-hand column which enable you to narrow down your search results: </p>
+ <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1.png" />
+ <p>Clicking on "Books" limits the list of results to the 4'075 books found. </p>
+ <p>In order to exclude a term, click on the red symbol on the right next to the term. </p>
+ <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2.png" />
+ <p>With "Show more", you can display additional terms and refine the search by including or excluding several terms. </p>
+ <p>Example: Narrow down the results to "dissertations", "videos" and "audios".</p>
+ <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3.png" />
+ <p>In order to remove one filter, click on the x. "Reset filters" removes all filters. </p>
+ <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1.png" />
+ <p>A new search entry automatically removes all filters. However, you can retain a filter for the duration of the browser session by selecting it and then clicking on the lock symbol. To remove this filter, click on the lock again. </p>
+ <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2.png" />
+ </md-card-content>
+ <md-card-content id="dis2">
+ <a href="#index">
+ <h3>List of results: sorting<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>By default, the results are sorted by relevance. You can also sort them by date, author and title. </p>
+ <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting.png" />
+ </md-card-content>
+ <md-card-content id="dis3">
+ <a href="#index">
+ <h3>List of results: versions <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>If a work is available in several versions (i.e. in different editions or prints), click on the icon, the title or "See all versions" to list all the versions. </p>
+ <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions.png" />
+ <p>You can return to the list of results by closing the list of versions under "Active filters". </p>
+ <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters.png" />
+ </md-card-content>
+ <md-card-content id="dis4">
+ <a href="#index">
+ <h3>Viewing individual titles <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>When you click on a title, you can select the following actions: </p>
+ <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation.png" />
+ <p><strong>Top:</strong> go back at the top of the page</p>
+ <p><strong>Send to: </strong> export title information to reference management program, export citation, create permalink to result, print or send title by email. Export actions can be applied in bulk up to 50 records. </p>
+ <p><strong>How to get it:</strong> view locations, place orders for loans, reservations or photocopies.</p>
+ <p><strong>Details:</strong> further information on the title.</p>
+ <p><strong>Links:</strong> links to table of contents, to earlier/later title, to all volumes of a series.</p>
+ <p><strong>Virtual browse:</strong> you can see a library shelf in relation to the selected record so that you may find other items that are related to their search. </p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="questions">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Questions?</h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content id="que1">
+ <a href="#index">
+ <h3>Get in touch<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>For any question, doubt, comment or request don�t hesitate to <a href="mailto:swisscovery@slsp.ch" target="_blank">contact us</a></p>
+
+ </md-card-content>
+
+ </md-card>
+
+ </div>
+
+
+
+ </div>
+
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_fr.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_fr.html
new file mode 100644
index 0000000..46f2b3b
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_fr.html
@@ -0,0 +1,501 @@
+
+<md-content id="help">
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
+ <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
+ <md-card class="default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline"><b>Primo VE Help Page</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+
+ </md-card>
+
+ <md-card class="default-card">
+
+ <md-card-content>
+ <h4>Introduction:</h4>
+ <p>Cher usager,</p>
+ <p>Bienvenue sur la page d'aide de swisscovery.</p>
+ <p>Swisscovery est l'outil de d&eacute;couverte de <a href="https://slsp.ch/en" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. Sur cette page, vous trouverez des informations utiles sur la mani&egrave;re d'utiliser swisscovery et sur l'organisation du r&eacute;seau de SLSP.</p>
+ <p>Attention: cette page d'aide a &eacute;t&eacute; cr&eacute;&eacute;e pour l'ensemble du r&eacute;seau SLSP! Cela signifie que certains services peuvent ne pas &ecirc;tre disponibles dans cette interface usager sp&eacute;cifique. Veuillez noter que la page d'accueil ou l'affichage complet de la notice peut varier d'une institution &agrave; l'autre par rapport &agrave; ce qui est pr&eacute;sent&eacute; ici.</p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="index">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Index</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <h3><a href="#general">G&eacute;n&eacute;ral</a></h3>
+ <ul>
+ <!--<li><a href="#gen1">Br&egrave;ve introduction vid&eacute;o &agrave; swisscovery</a></li>-->
+ <li><a href="#gen2">SLSP: Swiss Library Service Platform</a></li>
+ <li><a href="#gen3">R&eacute;seau SLSP</a></li>
+ <li><a href="#gen4">Cr&eacute;er un compte</a></li>
+ <li><a href="#gen5">Carte de biblioth&egrave;que</a></li>
+ <li><a href="#gen6">Comment s'identifier et se d&eacute;connecter</a></li>
+ <li><a href="#gen7">Mon compte</a></li>
+ <li><a href="#gen8">Mettre &agrave; jour votre compte</a></li>
+ <li><a href="#gen9">D&eacute;finir la langue</a></li>
+ </ul>
+ <h3><a href="#online">Ressources en ligne</a></h3>
+ <ul>
+ <li><a href="#onl1">Ressources en ligne</a></li>
+ <li><a href="#onl2">Ressources en ligne pour les membres des Universit&eacute;s</a> </li>
+ <li><a href="#onl3">Ressources en ligne pour les personnes qui ne sont pas membres d'une Universit&eacute;</a></li>
+ <li><a href="#onl4">Open Access </a></li>
+ <li><a href="#onl5">Licences nationales</a></li>
+ </ul>
+ <h3><a href="#borrow">Emprunter/demander des documents</a></h3>
+ <ul>
+ <li><a href="#bor1">Emprunter/demander des documents</a></li>
+ <li><a href="#bor2">Demandes de pr&ecirc;t entre biblioth&egrave;ques en dehors du r&eacute;seau SLSP</a></li>
+ <li><a href="#bor3">Prolonger le d&eacute;lai de pr&ecirc;t</a></li>
+ <li><a href="#bor4">Liste des pr&ecirc;ts pr&eacute;c&eacute;dents</a></li>
+ </ul>
+ <h3><a href="#search">Rechercher</a></h3>
+ <ul>
+ <li><a href="#sea1">Profils de recherche de SLSP</a></li>
+ <li><a href="#sea2">Recherche simple</a></li>
+ <li><a href="#sea3">Recherche avanc&eacute;e</a></li>
+ <li><a href="#sea4">Rechercher une expression</a></li>
+ <li><a href="#sea5">Rechercher avec des caract&egrave;res g&eacute;n&eacute;riques</a></li>
+ <li><a href="#sea6">Utiliser les op&eacute;rateurs bool&eacute;ens pour &eacute;tendre ou restreindre une recherche</a></li>
+ <li><a href="#sea7">Mes favoris</a></li>
+ <li><a href="#sea8">Historique des recherches</a></li>
+ <li><a href="#sea9">Enregistrer et g&eacute;rer les recherches</a></li>
+ <!--<li><a href="#sea10">Citation Linker </a></li>-->
+ </ul>
+ <h3><a href="#display">Afficher les r&eacute;sultats</a></h3>
+ <ul>
+ <li><a href="#dis1">Limiter le nombre de r&eacute;sultats</a></li>
+ <li><a href="#dis2">Liste de r&eacute;sultats: tri</a></li>
+ <li><a href="#dis3">Liste de r&eacute;sultats: versions</a> </li>
+ <li><a href="#dis4">Afficher des titres individuels</a></li>
+ </ul>
+ <h3><a href="#questions">Des questions?</a></h3>
+ <ul>
+ <li><a href="#que1">Prendre contact avec nous.</a></li>
+ </ul>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="default-card" id="general">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">G&eacute;n&eacute;ral</h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <!--<md-card-content id="gen1">
+ <a href="#index"><h3>Br&egrave;ve introduction vid&eacute;o &agrave; swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
+ </div>
+ </md-card-content>r-->
+ <md-card-content id="gen2">
+ <a href="#index">
+ <h3>SLSP: Swiss Library Service Platform<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Swiss Library Service Platform ainsi que sa filiale, le Consortium des biblioth&egrave;ques universitaires suisses, comptant plus de 450 membres, est le plus large r&eacute;seau de biblioth&egrave;ques de recherche universitaires de Suisse. Cr&eacute;&eacute; par des biblioth&egrave;ques pour les biblioth&egrave;ques, il s'agit d'un effort conjoint visant &agrave; offrir un panel de services dans tout le pays tels qu'un catalogue multilingue partag&eacute; d'informations scientifiques, une repr&eacute;sentation unique de l'octroi de licences pour les ressources &eacute;lectroniques et un r&eacute;seau performant de navettes dans le cadre du partage des exemplaires physiques.</p>
+ <p>SLSP repr&eacute;sente une avanc&eacute;e novatrice et significative dans l'&eacute;volution num&eacute;rique des biblioth&egrave;ques scientifiques en Suisse. En g&eacute;rant le syst&egrave;me bas&eacute; dans le cloud Alma, l'organisation rassemble les informations scientifiques conserv&eacute;es dans les biblioth&egrave;ques sur tout le territoire. En rendant ces informations accessibles et faciles &agrave; trouver, SLSP contribue &agrave; la d&eacute;couverte et au progr&egrave;s scientifiques.</p>
+</md-card-content>
+ <md-card-content id="gen3">
+ <a href="#index">
+ <h3>R&eacute;seau SLSP<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Le r&eacute;seau SLSP est divis&eacute; en plusieurs &laquo;zones&raquo;. SLSP g&egrave;re la zone r&eacute;seau (NZ) appel&eacute;e swisscovery, tandis que les biblioth&egrave;ques ont &eacute;t&eacute; r&eacute;parties en 29 "zones institutionnelles" (IZ).</p>
+ <p>Une zone institutionnelle (IZ) est un groupe de biblioth&egrave;ques ayant des besoins similaires. L'IZ est un &eacute;l&eacute;ment-cl&eacute; du syst&egrave;me SLSP, il permet des associations et accro&icirc;t l'efficacit&eacute;. Au sein de SLSP, nous distinguons deux types de zone institutionnelles: les zones &agrave; entit&eacute; unique et les zones &agrave; entit&eacute; mixte.</p>
+ <p>Dans une zone &agrave; entit&eacute; unique, les biblioth&egrave;ques sont li&eacute;es &agrave; une entit&eacute; principale d'un point de vue juridique (par exemple une Universit&eacute;). Dans une zone &agrave; entit&eacute; mixte, les biblioth&egrave;ques sont li&eacute;es &agrave; diff&eacute;rentes entit&eacute;s juridiques (elles sont par exemple group&eacute;es ensemble pour des consid&eacute;rations d'ordre g&eacute;ographique).</p>
+ <p>Pour acc&eacute;der aux ressources des membres de SLSP, les usagers doivent acc&eacute;der aux interfaces usagers appel&eacute;es &laquo;vues&raquo;. Au sein de SLSP, nous avons pr&eacute;par&eacute; une vue pour la Zone r&eacute;seau (NZ), une vue pour la Zone institutionnelle (IZ) et plusieurs vues pour les biblioth&egrave;ques individuelles.</p>
+ <p>Chaque vue dispose de domaines de recherche sp&eacute;cifiques qui donneront des r&eacute;sultats diff&eacute;rents lors de la recherche. La zone r&eacute;seau swisscovery comprend l'ensemble des notices des biblioth&egrave;ques SLSP, certaines ressources externes g&eacute;n&eacute;rales (par exemple la base de donn&eacute;es e-rara) et l'index CDI (Central Discovery Index). Les vues des zones institutionnelles et les vues des biblioth&egrave;ques contiennent l'inventaire local de la zone institutionnelle / biblioth&egrave;que, des ressources externes g&eacute;n&eacute;rales et locales ainsi que l'index CDI.</p>
+ <p>Central Discovery Index (CDI): il s'agit d'une base de donn&eacute;es centralis&eacute;e comportant plus de 3 milliards de notices telles que: articles de p&eacute;riodiques, e-books, th&egrave;ses, comptes rendus de conf&eacute;rences, etc.</p>
+ <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_fre.png" />
+ <p>En cliquant sur le <a href="https://slsp.ch/en" target="_blank">lien</a> suivant, vous trouvez la topologie du r&eacute;seau de la SLSP, une liste d&eacute;taill&eacute;e de l'ensemble des biblioth&egrave;ques membres, organis&eacute;e par zone institutionnelle ainsi que le lien vers chaque vue existante de notre r&eacute;seau. Vous y trouvez l'adresse, les coordonn&eacute;es et les services propos&eacute;s par chaque IZ et biblioth&egrave;que.</p>
+</md-card-content>
+ <md-card-content id="gen4">
+ <a href="#index">
+ <h3>Cr&eacute;er un compte<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Pour s'enregistrer sur SLSP, rendez-vous d'abord sur: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
+ <p>Au d&eacute;but de l'enregistrement, il vous est demand&eacute; de vous connecter avec un compte SWITCH edu-ID. Si vous avez d&eacute;j&agrave; un compte SWITCH edu-ID, connectez-vous pour proc&eacute;der &agrave; l'enregistrement. Si vous n'avez pas encore de mot de passe, un lien sur la page de connexion vous permet de le r&eacute;initialiser.</p>
+ <p>Si vous n'avez pas encore de compte SWITCH edu-ID, cliquez sur "Cr&eacute;er un compte" sur la page de connexion.</p>
+ <p><strong>Remarque:</strong> Si vous &eacute;tudiez dans une Universit&eacute;, il est possible que vous soyez d&eacute;j&agrave; enregistr&eacute;(e) sur SLSP auparavant. Si tel est le cas, un message appara&icirc;tra et vous serez redirig&eacute;(e) vers la page de connexion. </p>
+</md-card-content>
+ <md-card-content id="gen5">
+ <a href="#index">
+ <h3>Carte de biblioth&egrave;que<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Avec votre carte de biblioth&egrave;que, vous avez acc&egrave;s &agrave; tout un panel de services, vous pouvez par exemple emprunter un exemplaire physique dans une biblioth&egrave;que.</p>
+ <p>Si vous poss&eacute;dez d&eacute;j&agrave; une carte de biblioth&egrave;que du <a href="https://www.nb.admin.ch/snl/en/home/services/user-services/bibliopass.html" target="_blank">r&eacute;seau BibliOpass</a>, vous pouvez &eacute;ventuellement indiquer ce num&eacute;ro de carte lors de l'enregistrement sur la SLSP ou ult&eacute;rieurement. Certaines cartes de campus / d'Universit&eacute; / d'&eacute;tudiant peuvent &eacute;galement faire office de carte de biblioth&egrave;que. De m&ecirc;me, certaines Universit&eacute;s fourniront le num&eacute;ro de carte de biblioth&egrave;que &agrave; leurs utilisateurs. Les num&eacute;ros de carte de biblioth&egrave;que associ&eacute;s &agrave; un compte SLSP seront affich&eacute;s pendant le processus d'enregistrement sur SLSP (voir le chapitre "Cr&eacute;er un compte"). </p>
+ <p>Si vous ne poss&eacute;dez pas de carte de biblioth&egrave;que, vous pouvez demander &agrave; votre biblioth&egrave;que de vous en fournir une.</p>
+</md-card-content>
+ <md-card-content id="gen6">
+ <a href="#index">
+ <h3>Comment s'identifier et se d&eacute;connecter<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Dans swisscovery: cliquez sur &laquo;S'identifier&raquo; - choisissez votre zone institutionnelle - cliquez sur &laquo;SWITCH edu-ID&raquo; - entrez votre adresse e-mail et votre mot de passe - cliquez sur &laquo;Connexion&raquo;</p>
+ <p>Dans la vue de votre zone institutionnelle / biblioth&egrave;que: cliquez sur &laquo;S'identifier&raquo; -- cliquez sur &laquo;SWITCH edu-ID&raquo; - entrez votre adresse e-mail et votre mot de passe - cliquez sur &laquo;Connexion&raquo;</p>
+ <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_fre.png" />
+ <p>Vous devez &ecirc;tre connect&eacute;(e) pour proc&eacute;der aux actions suivantes:</p>
+ <ul>
+ <li>Demander des documents (pr&ecirc;t, demande de num&eacute;risation, pr&ecirc;t entre biblioth&egrave;ques)</li>
+ <li>Afficher et surveiller vos pr&ecirc;ts et demandes en provenance de biblioth&egrave;ques du r&eacute;seau de SLSP.</li>
+ <li>Prolonger un d&eacute;lai de pr&ecirc;t, annuler des r&eacute;servations</li>
+ <li>Sauvegarder vos favoris</li>
+ <li>Enregistrer les requ&ecirc;tes et activer des notifications</li>
+ <li>Modifier la langue de mani&egrave;re d&eacute;finitive</li>
+ </ul>
+ <p>En tant qu'invit&eacute;, vos favoris, demandes de recherche et la langue s&eacute;lectionn&eacute;e ne peuvent &ecirc;tre enregistr&eacute;s que pour la session de navigation courante.</p>
+ <p>D&eacute;connectez-vous apr&egrave;s une session pour prot&eacute;ger votre compte d'un &eacute;ventuel acc&egrave;s par d'autres usagers.</p>
+ <h4>NOTE:</h4>
+ <p>Certaines ressources en ligne sont accessibles sans identification, mais pour acc&eacute;der &agrave; l'ensemble des ressources disponibles selon votre institution, il est utile de s'identifier.</p>
+ <p>
+ L'acc&egrave;s aux ressources en ligne d&eacute;pend souvent de votre affiliation &agrave; une Haute Ecole octroyant des licences, p. ex. en tant qu'&eacute;tudiant ou que chercheur. Certaines Hautes Ecoles autorisent les usagers &agrave; acc&eacute;der aux ressources en ligne &agrave; distance (remote access). Pour plus d'informations sur les conditions d'acc&egrave;s aux ressources en ligne, vous pouvez consulter le chapitre &laquo;Ressources en ligne&raquo; sur cette page d'aide, le <a href="https://consortium.ch/?lang=en" target="_blank">Consortium's website</a> ou le site Web de la biblioth&egrave;que.
+ </p>
+ <p>Ces conditions ne s'appliquent pas aux licences nationales (pour plus d'informations, voir le chapitre correspondant sur cette page d'aide).</p>
+</md-card-content>
+ <md-card-content id="gen7">
+ <a href="#index">
+ <h3>Mon compte<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Vous devez vous identifier pour acc&eacute;der &agrave; votre compte. Une fois identifi&eacute;(e), cliquez sur votre nom situ&eacute; en haut &agrave; droite de la page. Vous acc&eacute;dez &agrave; un menu contenant certains des sous-menus de votre compte. Pour avoir un acc&egrave;s complet aux donn&eacute;es de votre compte, cliquez sur &laquo;Mon compte&raquo;.</p>
+ <p>Depuis cette page, vous serez en mesure de consulter vos pr&ecirc;ts, demandes, amendes, messages ainsi que bien d'autres fonctionnalit&eacute;s.</p>
+ <p><strong>NOTE:</strong> Chaque zone institutionnelle dispose de son propre espace. Cela signifie que si vous empruntez une ressource &agrave; la zone institutionnelle &laquo; EPF Lausanne &raquo; par exemple, et une autre &agrave; la zone institutionnelle &laquo; ETH Zurich &raquo;, vos emprunts sont r&eacute;partis sur des pages diff&eacute;rentes, voir ci-dessous: </p>
+ <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_fre.png" />
+</md-card-content>
+ <md-card-content id="gen8">
+ <a href="#index">
+ <h3>Mettre &agrave; jour votre compte<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Pour modifier votre adresse ou toute autre information concernant votre compte, allez sur la page Mon edu-ID sur <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> et mettez &agrave; jour votre compte edu-ID. Veuillez noter que les modifications effectu&eacute;es sur &laquo;Mon compte&raquo; dans swisscovery ou dans les zones institution seront &eacute;cras&eacute;es par les informations provenant d'edu-ID. Si vous souhaitez g&eacute;rer vos num&eacute;ros de carte de biblioth&egrave;que, allez sur <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
+</md-card-content>
+ <md-card-content id="gen9">
+ <a href="#index">
+ <h3>D&eacute;finir la langue <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Cliquez sur votre nom, puis sur &laquo;Langue d'affichage&raquo; pour modifier la langue pour la session actuelle. Si vous &ecirc;tes connect&eacute;(e), la langue que vous d&eacute;finissez sera enregistr&eacute;e de mani&egrave;re permanente. Vous pouvez &eacute;galement modifier la langue de votre interface en remplissant la section &laquo;informations personnelles&raquo; de votre compte.</p>
+ <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_fre.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="online">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ressources en ligne</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+
+ <md-card-content id="onl1">
+ <a href="#index">
+ <h3>Ressources en ligne<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Lors d'une recherche, l'ensemble des ressources propos&eacute;es par les biblioth&egrave;ques participantes sont index&eacute;es: livres, p&eacute;riodiques, bases de donn&eacute;es, photos num&eacute;ris&eacute;es, cartes, manuscrits et autres objets. Toutefois, tous les documents ne sont pas en libre acc&egrave;s. De nombreux documents n&eacute;cessitent une licence et ne sont disponibles que dans le r&eacute;seau de l'Universit&eacute; qui poss&egrave;de la licence. l'aide de filtres, vous pouvez restreindre la recherche aux documents sous licence et en libre-acc&egrave;s (Online) ou s&eacute;lectionner uniquement les documents en libre acc&egrave;s (Online - Open Access).</p>
+ <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_fre.png" />
+ <p>
+ Pour les ressources en ligne, la section &laquo;Consulter en ligne&raquo; dans l'affichage complet donne des informations sur la disponibilit&eacute; de la ressource dans votre institution et dans d'autres IZ du r&eacute;seau de SLSP. Pour acc&eacute;der &agrave; la ressource, cliquez sur l'ic&ocirc;ne <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
+ </p>
+ <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_fre.png" />
+</md-card-content>
+ <md-card-content id="onl2">
+ <a href="#index">
+ <h3>Ressources en ligne pour les membres des Universit&eacute;s<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Outre les documents en libre-acc&egrave;s (Open Access), vous pouvez utiliser les services en ligne de votre Universit&eacute;. Les p&eacute;riodiques &eacute;lectroniques, e-books et bases de donn&eacute;es sont acquises via des licences et l'acc&egrave;s est limit&eacute; exclusivement au r&eacute;seau de l'institution licenci&eacute;e licences (sur le campus). En dehors de l'Universit&eacute;, vous pouvez utiliser un acc&egrave;s VPN, Eduroam, EZProxy, etc. pour acc&eacute;der &agrave; ces documents. Veuillez consulter le site du service informatique de votre biblioth&egrave;que ou Universit&eacute; pour obtenir plus d'informations sur l'acc&egrave;s &agrave; distance.</p>
+ <p>
+ La section &laquo;Consulter en ligne&raquo; indique les services disponibles pour les ressources dans votre institution et dans d'autres zones institutionnelles du r&eacute;seau de SLSP. Cliquez sur &laquo;Disponible en ligne&raquo; et sur l'ic&ocirc;ne <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />pour obtenir l'affichage complet.
+ </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_fre.png" />
+ <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_fre.png" />
+</md-card-content>
+ <md-card-content id="onl3">
+ <a href="#index">
+ <h3>Ressources en ligne pour les personnes qui ne sont pas membres d'une Universit&eacute;<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Outre les ressources en libre acc&egrave;s (Open Access) et les ressources en ligne sous licence nationale, vous pouvez utiliser les ressources sous licence des Universit&eacute;s &agrave; condition d'&ecirc;tre dans leurs locaux.</p>
+ <p>Les p&eacute;riodiques &eacute;lectroniques, e-books et bases de donn&eacute;es universitaires sont acquises via des licences et l'acc&egrave;s est limit&eacute; exclusivement au r&eacute;seau de l'institution licenci&eacute;e (sur le campus). Vous pouvez ainsi t&eacute;l&eacute;charger et/ou avoir acc&egrave;s aux ressources dans les locaux de la biblioth&egrave;que.</p>
+ <p>Les biblioth&egrave;ques donnant acc&egrave;s &agrave; une ressource en ligne sont affich&eacute;es dans localisations:</p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_fre.png" />
+ <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_fre.png" />
+</md-card-content>
+ <md-card-content id="onl4">
+ <a href="#index">
+ <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Les documents &laquo; Open Access &raquo; sont libres d'acc&egrave;s. Il s'agit d'une part d'articles de p&eacute;riodiques ou d'e-books sur diff&eacute;rentes plateformes ou dans des r&eacute;pertoires institutionnels, et d'autre part de documents num&eacute;ris&eacute;s des biblioth&egrave;ques. Ces documents sont indiqu&eacute;s dans la liste de r&eacute;sultats avec une ic&ocirc;ne &laquo; open access &raquo;.</p>
+ <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_fre.png" />
+</md-card-content>
+ <md-card-content id="onl5">
+ <a href="#index">
+ <h3>Licences nationales<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Toute personne r&eacute;sidant en Suisse a acc&egrave;s aux licences nationales. Cela requiert un enregistrement unique gratuit; vous trouvez plus d'informations sur <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Veuillez noter que pour l'enregistrement destin&eacute; &agrave; l'acc&egrave;s aux licences nationales, il est possible d'utiliser le m&ecirc;me edu-ID que pour swisscovery. Les ressources disponibles sous licences nationales sont indiqu&eacute;es entre parenth&egrave;ses dans la section &laquo;Disponibilit&eacute; du texte int&eacute;gral&raquo;.</p>
+ <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_fre.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="borrow">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Emprunter/demander des documents</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="bor1">
+ <a href="#index">
+ <h3>Emprunter/demander des documents<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Sous &laquo;Obtenir&raquo; dans l'affichage complet, vous pouvez voir les biblioth&egrave;ques o&ugrave; se trouve le document et s'il est disponible. La livraison d'un exemplaire vers une biblioth&egrave;que de retrait peut &ecirc;tre payante.</p>
+ <p>Sous &laquo;Autres options&raquo; , vous pouvez voir si des biblioth&egrave;ques d'autres zones institutionnelles SLSP poss&egrave;dent &eacute;galement cet exemplaire.</p>
+ <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_fre.png" />
+ <p>S&eacute;lectionnez l'option de demande que vous souhaitez: Demander (exemplaire physique/r&eacute;servation) ou Num&eacute;risation (exemplaire &eacute;lectronique ou papier). Vous devez &ecirc;tre connect&eacute;(e) pour effectuer une demande.</p>
+ <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_fre.png" />
+ <p>Si vous s&eacute;lectionnez Demander, vous pouvez demander un exemplaire physique &agrave; retirer dans une biblioth&egrave;que. Vous pouvez &eacute;galement demander certains exemplaires via le service d'acc&egrave;s par navette (service payant). Si cette option est propos&eacute;e, vous pouvez l'utiliser en s&eacute;lectionnant votre institution dans le champ &laquo;institution de retrait&raquo; et l'adresse de votre domicile dans le champ &laquo;lieu de retrait&raquo;.</p>
+ <p>Si vous souhaitez obtenir un exemplaire &eacute;lectronique ou papier d'un article ou d'un chapitre, cliquez sur Num&eacute;risation et remplissez le formulaire avec autant d'informations que possible.</p>
+ <p><strong>Note:</strong>Ces services ne sont pas n&eacute;cessairement disponibles dans votre IZ / biblioth&egrave;que et peuvent &ecirc;tre payants. Pour plus d'informations, <a href="https://slsp.ch/en" target="_blank">cliquez ici</a>. </p>
+</md-card-content>
+ <md-card-content id="bor2">
+ <a href="#index">
+ <h3>Demandes de pr&ecirc;t entre biblioth&egrave;ques<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>
+ En d&eacute;pit du fait que le r&eacute;seau SLSP donne acc&egrave;s &agrave; plus de 50 millions d'exemplaires ainsi qu'&agrave; un nombre incalculable de ressources &eacute;lectroniques, il est possible que la publication que vous recherchez ne soit pas disponible. Dans ce cas, vous pouvez faire une demande de pr&ecirc;t entre biblioth&egrave;ques, et le document sera emprunt&eacute; &agrave; une autre biblioth&egrave;que en Suisse ou &agrave; l'&eacute;tranger (service payant). Nous vous invitons &agrave; remplir ce <a href="https://slsp.ch/en" target="_blank">formulaire</a>, votre biblioth&egrave;que s'occupera ensuite de votre demande.
+ </p>
+ <p><strong>Note:</strong> Ce service peut faire l'objet de frais suppl&eacute;mentaires. Pour obtenir plus d'informations sur les frais &eacute;ventuels, <a href="https://slsp.ch/en" target="_blank">consultez cette page</a>.</p>
+</md-card-content>
+ <md-card-content id="bor3">
+ <a href="#index">
+ <h3>Prolonger les p&eacute;riodes de pr&ecirc;t<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Dans Mon compte, vous pouvez voir vos pr&ecirc;ts en cours et les renouveler tous ou individuellement sous r&eacute;serve que les conditions du pr&ecirc;t le permettent.</p>
+ <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_fre.png" />
+ <!--<p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>-->
+ <p><strong>Note:</strong> les conditions de pr&ecirc;t peuvent varier en fonction des institutions et du type de mat&eacute;riel.</p>
+</md-card-content>
+ <md-card-content id="bor4">
+ <a href="#index">
+ <h3>Historique des pr&ecirc;ts pass&eacute;s<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Dans Mon compte, dans la section &laquo;Pr&ecirc;ts&raquo; des IZ, vous pouvez voir vos pr&ecirc;ts en cours et pass&eacute;s.</p>
+ <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_fre.png" />
+ <p><strong>Note:</strong> dans certaines zones institutionnelles / biblioth&egrave;ques, cette option n'est pas disponible en raison de restrictions impos&eacute;es par la loi cantonale sur la protection de la vie priv&eacute;e. </p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="search">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Rechercher</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="sea1">
+ <a href="#index">
+ <h3>Profils de recherche de SLSP <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>SLSP fonctionne avec deux profils de recherche standards disponibles dans toutes les vues. Le premier s'intitule &laquo; Toutes les biblioth&egrave;ques SLSP &raquo; et le second &laquo; Ma biblioth&egrave;que &raquo;. Ce sch&eacute;ma explique dans quelle zone est effectu&eacute;e votre recherche lorsque vous utilisez l'un ou l'autre. Dans certaines zones institutionnelles ou vues de biblioth&egrave;que, il est possible d'avoir des profils de recherche suppl&eacute;mentaires personnalis&eacute;s cr&eacute;&eacute;s par la zone institutionnelle / biblioth&egrave;que.</p>
+ <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_fre.png" />
+ <p><strong>Ma biblioth&egrave;que:</strong> Inclut l'inventaire local de la zone institutionnelle / biblioth&egrave;que + les sources de donn&eacute;es externes t&eacute;l&eacute;charg&eacute;es dans cette zone institutionnelles (sources de donn&eacute;es g&eacute;n&eacute;rales et sources de donn&eacute;es locales ou r&eacute;pertoires institutionnels) + le Central Discovery Index (le CDI peut &eacute;galement &ecirc;tre utilis&eacute; comme profil de recherche distinct). Ce profil de recherche porte toujours le nom de l'institution.</p>
+ <p><strong>swisscovery:</strong> inclut l'ensemble des notices du r&eacute;seau SLSP + les sources de donn&eacute;es externes g&eacute;n&eacute;rales + le Central Discovery Index </p>
+ <p><strong>Profil de recherche personnalis&eacute;:</strong> certaines zones institutionnelles / biblioth&egrave;ques ont cr&eacute;&eacute; leurs propres profils de recherche, y compris des profils de recherche limit&eacute;s &agrave; des donn&eacute;es locales.</p>
+ <p><strong>Central Discovery Index (CDI):</strong> est une base de donn&eacute;es centralis&eacute;e comportant des milliers de ressources pour un total de 3 milliards de notices telles que: articles de revues, e-books, th&egrave;ses, comptes rendus de conf&eacute;rences, brevets, rapports, documents gouvernementaux, images, vid&eacute;os, etc. Suivant la vue zone institutionnelle / biblioth&egrave;que, il est possible de chercher dans le CDI par le profil de recherche &laquo;Ma biblioth&egrave;que&raquo;, par un profil de recherche distinct ou par les deux profils </p>
+ <p><strong>Ressources externes g&eacute;n&eacute;rales:</strong> swisscovery s'est vu dot&eacute; de ressources &eacute;lectroniques externes g&eacute;n&eacute;rales, en particulier de r&eacute;pertoires institutionnelles.</p>
+ <p><strong>Ressources externes locales:</strong> outre les ressources externes g&eacute;n&eacute;rales, certaines zones institutionnelles proposent &eacute;galement des ressources externes locales.</p>
+</md-card-content>
+ <md-card-content id="sea2">
+ <a href="#index">
+ <h3>Recherche simple<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>La recherche simple permet d'acc&eacute;der rapidement aux ressources de la biblioth&egrave;que.</p>
+ <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_fre.png" />
+</md-card-content>
+ <md-card-content id="sea3">
+ <a href="#index">
+ <h3>Recherche avanc&eacute;e <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Les champs de recherche de la recherche avanc&eacute;e peuvent &ecirc;tre combin&eacute;s avec ET, OU ou SAUF.</p>
+ <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_fre.png" />
+ <p>Dans cet exemple, la recherche est limit&eacute;e aux livres en anglais qui contiennent &laquo;mountain railway&raquo; dans leur titre et qui ont pour sujet la Suisse.</p>
+ <p>Avec l'aide du deuxi&egrave;me (ou troisi&egrave;me) champ, vous pouvez choisir entre &laquo;contient&raquo;, &laquo;est(exact)&raquo; ou &laquo;commence par&raquo; pour sp&eacute;cifier si les termes de la recherche doivent &ecirc;tre contenus dans le champ, si l'&eacute;l&eacute;ment doit correspondre exactement aux termes de la recherche ou s'il doit commencer par un terme sp&eacute;cifique.</p>
+ <p>Ici vous pouvez mettre quelques mots du titre, pas n&eacute;cessairement dans l'ordre</p>
+ <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_fre.png" /><br />
+ <p>L&agrave;, vous recherchez ce titre exact</p>
+ <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_fre.png" />
+ <p>Et l&agrave;, vous recherchez des titres qui commencent par le mot &laquo; mountain &raquo;</p>
+ <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_fre.png" />
+</md-card-content>
+ <md-card-content id="sea4">
+ <a href="#index">
+ <h3>Rechercher une expression <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Si vous souhaitez rechercher une expression pr&eacute;cise (groupe de mots), mettez-la entre guillemets. Vous pouvez associer expressions et mots dans une recherche.</p>
+ <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_fre.png" />
+ <p>Les r&eacute;sultats incluent des documents qui contiennent &agrave; la fois l'expression exacte &laquo;piz buin&raquo; et le sujet &laquo;mountain&raquo;.</p>
+</md-card-content>
+ <md-card-content id="sea5">
+ <a href="#index">
+ <h3>Rechercher avec des caract&egrave;res g&eacute;n&eacute;riques <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>L'ast&eacute;risque * et le point d'interrogation ? peuvent &ecirc;tre utilis&eacute;s comme caract&egrave;res g&eacute;n&eacute;riques (ou caract&egrave;res de remplacement) pour la recherche:</p>
+ <p>L'ast&eacute;risque * sert &agrave; remplacer z&eacute;ro, un ou plusieurs caract&egrave;res: </p>
+ <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_fre.png" />
+ <p>Permet de rechercher culture, cultures, cultural etc. </p>
+ <p>L'ast&eacute;risque * peut &eacute;galement aider &agrave; trouver diff&eacute;rentes orthographes: </p>
+ <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_fre.png" />
+ <p>Recherche yogurt, yoghurt, yogourt, yoghourt, etc.</p>
+ <p>Le point d'interrogation ? est le caract&egrave;re de remplacement pour un seul caract&egrave;re: </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_fre.png" />
+ <p>Recherche &agrave; la fois woman et women.</p>
+ <p>Vous pouvez &eacute;galement combiner ces deux caract&egrave;res: </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_fre.png" />
+ <p>Vous obtiendrez des r&eacute;sultats avec yoghurt, yogourt, yohurts ou yogourts</p>
+</md-card-content>
+ <md-card-content id="sea6">
+ <a href="#index">
+ <h3>Utiliser les op&eacute;rateurs bool&eacute;ens pour &eacute;tendre ou restreindre une recherche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Vous pouvez utiliser les op&eacute;rateurs bool&eacute;ens ET, OU et SAUF. Ils doivent &ecirc;tre &eacute;crits en majuscules. </p>
+ <p>Sans indication sp&eacute;cifique, les termes de la recherche sont automatiquement associ&eacute;s avec <strong>ET</strong>. En d'autres termes, tous les termes de la recherche doivent appara&icirc;tre dans les r&eacute;sultats.</p>
+ <p><strong>OU</strong></p>
+ <p>Au moins l'un des termes de recherche reli&eacute; avec OU doit appara&icirc;tre dans les r&eacute;sultats. Par exemple, utilisez OU pour associer des termes li&eacute;s afin d'&eacute;tendre la recherche &agrave; plusieurs termes (synonymes, orthographes diff&eacute;rentes):</p>
+ <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_fre.png" />
+ <p><strong>SAUF</strong></p>
+ <p>Le terme de la recherche exclu avec SAUF ne doit pas appara&icirc;tre dans les r&eacute;sultats. Autrement dit, SAUF permet d'exclure explicitement des mots ou des expressions.</p>
+ <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
+ <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_fre.png" />
+ <p>Les r&eacute;sultats seront des documents qui contiennent l'expression &laquo;climate change&raquo;, mais pas &laquo;global warming&raquo;. </p>
+</md-card-content>
+ <md-card-content id="sea7">
+ <a href="#index">
+ <h3>Mes favoris<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Dans &laquo;Mes Favoris&raquo;, vous pouvez enregistrer les titres que vous trouvez pendant votre recherche. Vous ne pouvez les enregistrer sur le long terme que si vous vous &ecirc;tes identifi&eacute;(e). En tant qu'invit&eacute;, le contenu des favoris n'est disponible que durant la session de navigation en cours. </p>
+ <p>
+ Si vous cliquez sur l'ic&ocirc;ne &eacute;pingle
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> d'un titre, celui-ci est ajout&eacute; &agrave; vos favoris; l'ic&ocirc;ne &eacute;pingle se transforme alors en
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Si vous cliquez &agrave; nouveau sur
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, le titre est retir&eacute; de vos favoris.
+ </p>
+ <p>
+ Vous pouvez acc&eacute;der &agrave; votre liste de favoris via l'ic&ocirc;ne &eacute;pingle
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> situ&eacute; en haut &agrave; droite de la page.
+ </p>
+ <p>Vous pouvez retirer ou exporter des titres individuels depuis votre liste de favoris. Surlignez un ou plusieurs titres et utilisez les symboles situ&eacute;s en haut de la page pour les retirer, ajouter des libell&eacute;s, les exporter vers des outils de gestion des r&eacute;f&eacute;rences, les imprimer ou les envoyer par e-mail: </p>
+ <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_fre.png" />
+ <p>Afin de voir les d&eacute;tails d'une notice, cliquez sur le titre en question. </p>
+ <p>Vous trouvez &eacute;galement l'historique de recherche pour la session de navigation en cours dans &laquo;Mes favoris&raquo;. </p>
+</md-card-content>
+ <md-card-content id="sea8">
+ <a href="#index">
+ <h3>Historique de recherche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Les recherches de la session de navigation en cours sont enregistr&eacute;es dans vos favoris dans &laquo;Historique de recherche&raquo;.</p>
+ <p>
+ Vous pouvez y acc&eacute;der directement via l'ic&ocirc;ne
+ <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />situ&eacute; en haut &agrave; droite de la page.
+ </p>
+ <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_fre.png" />
+</md-card-content>
+ <md-card-content id="sea9">
+ <a href="#index">
+ <h3>Enregistrer et g&eacute;rer les recherches<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Si vous vous &ecirc;tes identifi&eacute; (e), vous pouvez enregistrer vos recherches de mani&egrave;re permanente. Pour cela, cliquez sur &laquo;Enregistrer la requ&ecirc;te&raquo; situ&eacute; au-dessus de la liste de r&eacute;sultats: </p>
+ <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_fre.png" />
+ <p><strong>NOTE:</strong> L'option &laquo;Enregistrer la requ&ecirc;te&raquo; s'affiche uniquement si vous vous &ecirc;tes identifi&eacute;(e) et si vous avez lanc&eacute; une recherche </p>
+ <p>Lors de l'enregistrement de la requ&ecirc;te, un message appara&icirc;t en haut de la page vous permettant de recevoir des notifications par e-mail lorsque la requ&ecirc;te est mise &agrave; jour. Cliquez sur ce message pour activer les notifications.</p>
+ <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_fre.png" /><br />
+ <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_fre.png" />
+ <p>
+ Les recherches enregistr&eacute;es sont conserv&eacute;es dans &laquo;Mes Favoris&raquo;
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> dans l'onglet &laquo;Recherches sauvegard&eacute;es&raquo;.
+ </p>
+ <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_fre.png" />
+ <p>Vous pouvez lancer &agrave; nouveau la m&ecirc;me recherche en cliquant sur les termes de la requ&ecirc;te. Vous pouvez configurer une notification (par RSS ou par e-mail) en utilisant les symboles situ&eacute;s &agrave; droite pour vous tenir inform&eacute;(e) des derniers documents ajout&eacute;s qui correspondent &agrave; vos crit&egrave;res de recherche.</p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="display">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Afficher les r&eacute;sultats</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="dis1">
+ <a href="#index">
+ <h3>R&eacute;duire le nombre de r&eacute;sultats<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Le filtre par termes est propos&eacute; dans la colonne de gauche, il vous permet de r&eacute;duire le nombre de r&eacute;sultats dans votre recherche: </p>
+ <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_fre.png" />
+ <p>Cliquer sur &laquo;Articles&raquo; r&eacute;duit la liste de r&eacute;sultats aux articles trouv&eacute;s. </p>
+ <p>Afin d'exclure un terme, cliquez sur le symbole rouge situ&eacute; &agrave; c&ocirc;t&eacute; du terme sur la droite. </p>
+ <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_fre.png" />
+ <p>&laquo;Voir plus&raquo; permet d'afficher des termes suppl&eacute;mentaires et d'affiner la recherche en incluant ou en excluant plusieurs termes. </p>
+ <p>Exemple: R&eacute;duisez la recherche &agrave; &laquo;Articles de journal&raquo;, &laquo;Comptes rendus&raquo; et &laquo;Livres&raquo;.</p>
+ <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_fre.png" />
+ <p>Pour supprimer un filtre, cliquez sur la croix X situ&eacute;e &agrave; c&ocirc;t&eacute; du terme. &laquo;R&eacute;initialiser les filtres&raquo; permet de supprimer tous les filtres. </p>
+ <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_fre.png" />
+ <p>La saisie d'une nouvelle recherche supprime automatiquement tous les filtres. Toutefois, vous pouvez conserver un filtre pendant toute la dur&eacute;e de la session de navigation en le s&eacute;lectionnant puis en cliquant sur le symbole cadenas. Pour supprimer ce filtre, cliquez &agrave; nouveau sur le cadenas. </p>
+ <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_fre.png" />
+</md-card-content>
+ <md-card-content id="dis2">
+ <a href="#index">
+ <h3>Liste de r&eacute;sultats: tri<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Par d&eacute;faut, les r&eacute;sultats sont tri&eacute;s par pertinence. Vous pouvez les trier par date, titre ou auteur. </p>
+ <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_fre.png" />
+</md-card-content>
+ <md-card-content id="dis3">
+ <a href="#index">
+ <h3>Liste de r&eacute;sultats: versions <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Si un travail est disponible en plusieurs versions (c'est-&agrave;-dire en plusieurs &eacute;ditions ou r&eacute;impressions), cliquez sur l'ic&ocirc;ne, le titre ou &laquo;Voir toute les versions&raquo; pour obtenir la liste de toutes les versions. </p>
+ <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_fre.png" />
+ <p>Vous pouvez revenir &agrave; la liste des r&eacute;sultats en fermant la liste des versions dans &laquo;Filtres activ&eacute;s&raquo;. </p>
+ <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_fre.png" />
+</md-card-content>
+ <md-card-content id="dis4">
+ <a href="#index">
+ <h3>Afficher des titres individuels <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Lorsque vous cliquez sur un titre, vous pouvez s&eacute;lectionner les actions suivantes: </p>
+ <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_fre.png" />
+ <p><strong>Haut:</strong> revenir en haut de la page</p>
+ <p><strong>Envoyer vers: </strong> eexporter les informations sur un titre vers un programme de gestion des r&eacute;f&eacute;rences, exporter des citations, cr&eacute;er un lien permanent vers le r&eacute;sultat, imprimer ou envoyer par e-mail. Les actions d'exportation peuvent s'appliquer &agrave; un groupe comportant jusqu'&agrave; 50 notices. </p>
+ <p><strong>Obtenir:</strong> afficher les localisations, faire des demandes de pr&ecirc;t, des r&eacute;servations ou des copies.</p>
+ <p><strong>D&eacute;tails:</strong> informations d&eacute;taill&eacute;es sur le titre.</p>
+ <p><strong>Liens:</strong> liens vers la table des mati&egrave;res, vers un titre ant&eacute;rieur/ult&eacute;rieur, vers l'ensemble des volumes d'une s&eacute;rie.</p>
+ <p><strong>&Eacute;tag&egrave;re virtuelle:</strong> vous pouvez voir un rayon de la biblioth&egrave;que en lien avec la notice s&eacute;lectionn&eacute;e </p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="questions">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Des questions?</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="que1">
+ <a href="#index">
+ <h3>Contactez-nous<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>N'h&eacute;sitez pas &agrave; prendre contact avec nous pour toute question, h&eacute;sitation, commentaire ou requ&ecirc;te.</p>
+
+</md-card-content>
+
+ </md-card>
+
+ </div>
+
+
+
+ </div>
+
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_it.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_it.html
new file mode 100644
index 0000000..352e1f3
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_it.html
@@ -0,0 +1,506 @@
+
+<md-content id="help">
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
+ <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
+ <md-card class="default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline"><b>Primo VE Help Page</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+
+ </md-card>
+
+ <md-card class="default-card">
+
+ <md-card-content>
+ <h4>Introduzione: </h4>
+ <p>Gentili utenti,</p>
+ <p>Benvenuti nella pagina di aiuto di swisscovery.</p>
+ <p>swisscovery &egrave; lo strumento di discovery della <a href="https://slsp.ch/it" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. In questa pagina sono disponibili informazioni utili su come usare swisscovery e su come &egrave; organizzata la rete SLSP. </p>
+ <p>Attenzione: questa pagina &egrave; stata creata per l'intero network SLSP! Ci&igrave; significa che alcuni servizi potrebbero non essere disponibili in questa specifica interfaccia utenti. Tenete presente che l'aspetto della pagina iniziale o la visualizzazione dei record pu&igrave; variare da istituzione a istituzione, rispetto a quanto mostrato qui.</p>
+ </md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="index">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Indice:</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <h3><a href="#general">Informazioni generali </a></h3>
+ <ul>
+ <!--<li><a href="#gen1">Un breve video di introduzione a swisscovery</a></li>-->
+ <li><a href="#gen2">SLSP: La Swiss Library Service Platform</a></li>
+ <li><a href="#gen3">La rete SLSP</a></li>
+ <li><a href="#gen4">Creare un conto</a></li>
+ <li><a href="#gen5">Tessera della biblioteca</a></li>
+ <li><a href="#gen6">Come identificarsi</a></li>
+ <li><a href="#gen7">Conto utente</a></li>
+ <li><a href="#gen8">Aggiornare il proprio conto </a></li>
+ <li><a href="#gen9">Impostazione lingua</a></li>
+ </ul>
+ <h3><a href="#online">Risorse online</a></h3>
+ <ul>
+ <li><a href="#onl1">Risorse online</a></li>
+ <li><a href="#onl2">Servizi online per membri universitari </a> </li>
+ <li><a href="#onl3">Servizi online per persone che non sono membri di un'universit&agrave; </a></li>
+ <li><a href="#onl4">Open Access</a></li>
+ <li><a href="#onl5">Licenze nazionali </a></li>
+ </ul>
+ <h3><a href="#borrow">Richiesta di prestito/richiesta documenti</a></h3>
+ <ul>
+ <li><a href="#bor1">Richiesta di prestito/richiesta documenti</a></li>
+ <li><a href="#bor2">Richieste di prestito interbibliotecario all'esterno della rete SLSP</a></li>
+ <li><a href="#bor3">Prolungamento del periodo di prestito</a></li>
+ <li><a href="#bor4">Lista dei prestiti precedenti</a></li>
+ </ul>
+ <h3><a href="#search">Ricerca</a></h3>
+ <ul>
+ <li><a href="#sea1">Profili di ricerca SLSP</a></li>
+ <li><a href="#sea2">Ricerca semplice </a></li>
+ <li><a href="#sea3">Ricerca avanzata </a></li>
+ <li><a href="#sea4">Ricerca per frase </a></li>
+ <li><a href="#sea5">Ricerca con le wildcard </a></li>
+ <li><a href="#sea6">Uso di operatori booleani per espandere o restringere una ricerca </a></li>
+ <li><a href="#sea7">Preferiti</a></li>
+ <li><a href="#sea8">Storico di ricerca</a></li>
+ <li><a href="#sea9">Salvare e gestire le ricerche</a></li>
+ <!--<li><a href="#sea10">Citation Linker </a></li>-->
+ </ul>
+ <h3><a href="#display">Visualizzazione dei risultati</a></h3>
+ <ul>
+ <li><a href="#dis1">Restringere i risultati </a></li>
+ <li><a href="#dis2">Lista dei risultati: classificazione </a></li>
+ <li><a href="#dis3">Lista dei risultati: versioni</a> </li>
+ <li><a href="#dis4">Visualizzazione di titoli singoli </a></li>
+ </ul>
+ <h3><a href="#questions">Domande?</a></h3>
+ <ul>
+ <li><a href="#que1">Contattateci.</a></li>
+ </ul>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="default-card" id="general">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Informazioni generali </h2></a>
+ </md-card-title-text>
+ </md-card-title>
+ <!--<md-card-content id="gen1">
+ <a href="#index"><h3>Un breve video di introduzione a swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
+ </div>
+ </md-card-content>r-->
+ <md-card-content id="gen2">
+ <a href="#index">
+ <h3>SLSP: La Swiss Library Service Platform <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>La Swiss Library Service Platform insieme alla sua controllata Consorzio delle biblioteche universitarie svizzere &egrave;, con oltre <a href="https://slsp.ch/libraries" target="_blank">450 membri</a> la rete di biblioteche universitarie e di ricerca pi&ugrave; grande della Svizzera. Creata dalle biblioteche per le biblioteche, si tratta di un impegno comune per fornire una serie di servizi all'intero paese, quali un catalogo multilingue condiviso di informazioni scientifiche, una rappresentazione unica per le licenze di risorse elettroniche e una rete di corrieri efficiente per la condivisione di risorse fisiche. </p>
+ <p>SLSP rappresenta un passaggio innovativo e significativo in direzione dell'evoluzione digitale delle biblioteche in Svizzera. Grazie alla gestione del sistema Alma basato su un cloud, l'organizzazione unisce le informazioni scientifiche archiviate nelle biblioteche in tutta la Svizzera. Rendendo accessibili e facilmente trovabili tali informazioni, SLSP fornisce un contributo alla ricerca e al progresso scientifico.</p>
+</md-card-content>
+ <md-card-content id="gen3">
+ <a href="#index">
+ <h3>La rete SLSP<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Il network SLSP &egrave; suddiviso in diverse &laquo;zone&raquo;. La SLSP gestisce la network zone (NZ) chiamata swisscovery, mentre le biblioteche sono state distribuite in 29 &laquo;institution zone&raquo; (IZ). </p>
+ <p>Una institution zone (IZ) raggruppa le biblioteche con esigenze simili. L'IZ &egrave; una componente chiave nel sistema SLSP, esso permette di creare sinergie e incrementare l'efficienza. In SLSP distinguiamo due tipi di institution zone: zone ad entit&agrave; singola e zone ad entit&agrave; mista. </p>
+ <p>In una zona ad entit&agrave; singola la maggior parte delle biblioteche sono legate giuridicamente ad un ente principale (per esempio ad un'universit&agrave;). In una zona ad entit&agrave; mista, le biblioteche sono legate giuridicamente ad enti diversi (per esempio sono raggruppati sulla base di considerazioni geografiche).</p>
+ <p>Per accedere alle risorse delle biblioteche membre di SLSP, gli utenti devono accedere alle interfacce utenti chiamate &laquo;Views&raquo;. In SLSP abbiamo preparato un'interfaccia per la Network Zone (NZ), un'interfaccia per tutte le Institution Zone (IZ) e diverse interfacce per singole biblioteche. </p>
+ <p>Ogni interfaccia ha ambiti di ricerca specifici che daranno risultati diversi quando vengono usate per la ricerca. La network zone di swisscovery contiene tutti i record provenienti dalle biblioteche SLSP, alcune risorse generali esterne (per esempio i documenti di e-rara) e l'indice CDI (Central Discovery Index). Le interfacce delle institution zone e le Library view contengono l'inventario locale della institution zone / biblioteca, risorse esterne generali e locali e l'indice CDI. </p>
+ <p>Il Central Discovery Index (CDI) &egrave; un database centrale con oltre 3 miliardi di record quali: articoli di riviste, e-book, dissertazioni, atti di convegni, ecc. </p>
+ <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_ita.png" />
+ <p>Nel seguente <a href="https://slsp.ch/libraries" target="_blank">link</a> &egrave; possibile trovare la topologia del network SLSP, che comprende la lista di tutte le biblioteche membre di SLSP suddivise per institution zone e il link per ogni interfaccia esistente del nostro network. Per ciascuna institution zone e biblioteca &egrave; possibile trovare l'indirizzo, le informazioni di contatto e i servizi da loro forniti.</p>
+</md-card-content>
+ <md-card-content id="gen4">
+ <a href="#index">
+ <h3>Creare un conto<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Per registrarsi su SLSP, visitate innanzitutto: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
+ <p>Dopo aver avviato la registrazione verr&agrave; chiesto di eseguire il login ad un account SWITCH edu-ID. Se si &egrave; gi&agrave; in possesso di un account SWITCH edu-ID, basta eseguire il login per procedere con la registrazione. Se non si possiede ancora una password, sulla pagina di login &egrave; disponibile un link di reset della password.</p>
+ <p>Se non si possiede ancora un account utente SWITCH edu-ID cliccate su &laquo;Creare un conto&raquo; nella pagina di login. </p>
+ <p><strong>ATTENZIONE:</strong> Se siete studenti presso un'universit&agrave;, &egrave; possibile che siate gi&agrave; registrati su SLSP. In tal caso apparir&agrave; un messaggio e si verrete inoltrati alla sezione di login dell'interfaccia. </p>
+</md-card-content>
+ <md-card-content id="gen5">
+ <a href="#index">
+ <h3>Tessera della biblioteca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>La propria tessera della biblioteca consente di accedere ad una serie di servizi, per esempio &egrave; possibile prendere in prestito una copia fisica di un libro da una biblioteca. </p>
+ <p>Se si &egrave; gi&agrave; in possesso di una tessera della biblioteca della rete <a href="https://www.nb.admin.ch/snl/it/home/servizi/prestito-utilizzo/bibliopass.html" target="_blank">BibliOpass</a>, &egrave; possibile fornire il numero di tessera della biblioteca durante la registrazione a SLSP o successivamente. Valgono come tessera della biblioteca anche alcune tessere di campus / universit&agrave; / studenti. Inoltre, alcune universit&agrave; forniscono il numero di tessera della biblioteca per i loro utenti. Il numero di tessera della biblioteca associato all'account SLSP viene mostrato durante il processo di registrazione alla SLSP (vedi capitolo &laquo;Creare un conto&raquo;).</p>
+ <p>Se non si possiede una tessera della biblioteca, &egrave; possibile chiedere al proprio bibliotecario di fornirne una. </p>
+</md-card-content>
+ <md-card-content id="gen6">
+ <a href="#index">
+ <h3>Come identificarsi<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Su swisscovery: cliccate su &laquo;identificati&raquo; - scegliere la propria institution zone - cliccare su &laquo;SWITCH edu-ID&raquo; - inserire il proprio indirizzo e-mail e password - cliccare su &laquo;Accedi&raquo;</p>
+ <p>In una institution zone / library view: cliccare su &laquo;Identificati&raquo; - cliccare su &laquo;SWITCH edu-ID&raquo; -inserire il proprio indirizzo e-mail e password - cliccare su &laquo;Accedi&raquo; </p>
+ <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_ita.png" />
+ <p>La registrazione &egrave; necessaria per svolgere le seguenti attivit&agrave;:</p>
+ <ul>
+ <li>Richiesta di documenti (prestito, richiesta di digitalizzazione, prestito interbibliotecario)</li>
+ <li>Visualizzare e controllare i propri prestiti e richieste da biblioteche nel network SLSP. </li>
+ <li>Prolungare il periodo di prestito, cancellare prenotazioni</li>
+ <li>Salvare preferiti</li>
+ <li>Salvare ricerche e impostare avvisi</li>
+ <li>Cambiare in modo permanente la lingua impostata </li>
+ </ul>
+ <p>Come ospite, i propri preferiti, le richieste di ricerca e la lingua selezionata possono essere salvati solo per la corrente sessione. </p>
+ <p>Disconnettersi dopo una sessione per proteggere il proprio account dall'accesso da parte di altri utenti.</p>
+ <h4>ATTENZIONE:</h4>
+ <p>Alcune risorse online sono accessibili senza identificarsi, ma per accedere all'insieme delle risorse disponibili nella vostra istituzione &egrave; necessario. </p>
+ <p>
+ L'accesso alle risorse online dipende spesso dalla propria appartenenza (per es. come studente o ricercatore) a un'istituzione di istruzione superiore. Alcune istituzioni di istruzione superiore permettono agli utenti l'accesso remoto alle risorse online. Per maggiori informazioni sulle condizioni di accesso alle risorse online &egrave; possibile consultare il capitolo &laquo;Risorse online&raquo; sulla presente pagina d'aiuto o sul sito web della vostra biblioteca.
+ </p>
+ <p>Tali condizioni non vengono applicate alle licenze nazionali (per maggiori informazioni vedere il capitolo relativo in questa pagina). </p>
+</md-card-content>
+ <md-card-content id="gen7">
+ <a href="#index">
+ <h3>Conto utente <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Per accedere al proprio conto &egrave; necessario registrarsi. Dopo la registrazione, cliccate sul vostro nome in alto a destra della pagina. Accederete ad un menu contenente alcuni sottomenu del proprio conto. Per avere il pieno accesso ai dati del proprio account, cliccate su &laquo;Conto utente&raquo;.</p>
+ <p>Da questa pagina sar&agrave; possibile consultare i propri prestiti, richieste, tariffe, messaggi e tante altre funzioni. </p>
+ <p><strong>ATTENZIONE:</strong> Ogni institution zone ha il suo proprio spazio. Ci&igrave; significa, per esempio, che se si prende in prestito una risorsa nella institution zone della BCU Fribourg, e una all'institution zone dell'ETH Z&uuml;rich, esse vengono separate in pagine diverse, come mostrato di seguito:</p>
+ <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_ita.png" />
+</md-card-content>
+ <md-card-content id="gen8">
+ <a href="#index">
+ <h3>Aggiornare il proprio conto <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Per modificare il proprio indirizzo o altre informazioni relative al proprio conto, andate sulla pagina "Mia edu-ID" <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> e aggiornare il proprio account edu-ID. Attenzione: le modifiche eseguite nel &laquo;Conto utente&raquo; in swisscovery o nelle institution zone vengono sovrascritte dalle informazioni provenienti dall'account edu-ID. Per gestire i propri numeri di tessera della biblioteca, andate su <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
+</md-card-content>
+ <md-card-content id="gen9">
+ <a href="#index">
+ <h3>Impostazione lingua <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Cliccare su &laquo;Mostra lingua&raquo; per modificare la lingua impostata per la sessione corrente. Se si &egrave; registrati, la lingua impostata verr&agrave; salvata in modo permanente. &Egrave; anche possibile modificare la lingua della propria interfaccia compilando la sezione &laquo;Dettagli personali&raquo; del proprio conto. </p>
+ <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_ita.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="online">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Risorse online</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+
+ <md-card-content id="onl1">
+ <a href="#index">
+ <h3>Risorse online<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Tutti i tipi di risorse online offerti dalle biblioteche partecipanti sono indicizzati nella ricerca: libri, riviste, database, fotografie digitalizzate, mappe, manoscritti e altri esemplari della collezione. Tuttavia, non tutti i documenti sono accessibili liberamente. Molti documenti vengono acquisiti attraverso una licenza e sono disponibili unicamente nella rete dell'universit&agrave; titolare della licenza. Mediante l'uso dei filtri, &egrave; possibile restringere la ricerca ai documenti con licenza online e Open Access (Disponibile online) o selezionare unicamente i documenti accessibili liberamente (Open Access). </p>
+ <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_ita.png" />
+ <p>
+ Per le risorse online, la sezione &laquo;Visualizza Online&raquo; nella visualizzazione completa fornisce informazioni sulla disponibilit&agrave; della risorsa nella propria istituzione e in altre institution zones del network SLSP. Per accedere alle risorse, cliccate sull'icona <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
+ </p>
+ <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_ita.png" />
+</md-card-content>
+ <md-card-content id="onl2">
+ <a href="#index">
+ <h3>Servizi online per membri universitari<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Oltre ai documenti Open Access &egrave; possibile usare i servizi online della propria universit&agrave;. Riviste elettroniche, e-book e database vengono acquisiti attraverso licenze e il loro accesso &egrave; riservato esclusivamente al network dell'istituzione titolare della licenza (sul campus). Per accedere a tali documenti dall'esterno dell'universit&agrave;, &egrave; possibile utilizzare strumenti come VPN, Eduroam, EZProxy, ecc. Consultate le informazioni relative all'accesso remoto presso la vostra biblioteca o il sito web IT della vostra universit&agrave;.</p>
+ <p>
+ La sezione &laquo;Visualizza Online&raquo; fornisce i servizi disponibili per le risorse della propria istituzione e di altre institution zone del network SLSP. Cliccate su &laquo;Disponibile online&raquo; e l'icona <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />per ottenere la visualizzazione completa.
+ </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_ita.png" />
+ <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_ita.png" />
+</md-card-content>
+ <md-card-content id="onl3">
+ <a href="#index">
+ <h3>Servizi online per persone che non sono membri di un'universit&agrave; <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Oltre alle risorse Open Access e online con licenza nazionale, &egrave; anche possibile usare le risorse con la licenza acquistata dall'universit&agrave;, a condizione di essere nei locali della stessa.</p>
+ <p>Le riviste universitarie elettroniche, gli e-book e i database vengono acquisiti attraverso licenze e il loro accesso &egrave; riservato esclusivamente alla rete dell'istituzione titolare della licenza (sul campus), &egrave; possibile scaricare e/o accedere a tali risorse dalla sede della biblioteca titolare della licenza. </p>
+ <p>Le biblioteche che offrono l'accesso a risorse online sono visualizzate sotto localizzazione. </p>
+ <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_ita.png" />
+ <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_ita.png" />
+</md-card-content>
+ <md-card-content id="onl4">
+ <a href="#index">
+ <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>I documenti Open Access sono accessibili liberamente. Si tratta sia di articoli di riviste o e-book provenienti da diverse piattaforme o repository istituzionali, sia di documenti digitalizzati dalle biblioteche. Questi documenti sono contrassegnati nella lista dei risultati con l'icona "open access".</p>
+ <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_ita.png" />
+</md-card-content>
+ <md-card-content id="onl5">
+ <a href="#index">
+ <h3>Licenze nazionali<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Tutte le persone che vivono in Svizzera hanno accesso alle licenze nazionali. Ci&igrave; richiede una registrazione gratuita, maggiori informazioni sono disponibili sulla pagina <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Attenzione: per la registrazione per licenze nazionali pu&igrave; essere utilizzata la medesima edu-ID di swisscovery. </p>
+ <p>Le risorse disponibili attraverso le licenze nazionali sono contrassegnate in parentesi nella sezione &laquo;Disponibilit&agrave; full text&raquo;.</p>
+ <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_ita.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="borrow">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Richiesta di prestito/richiesta documenti </h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="bor1">
+ <a href="#index">
+ <h3>Richiesta di prestito/richiesta documenti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Sotto &laquo;Lo trovi in&raquo; nella visualizzazione completa, &egrave; possibile vedere le biblioteche dove &egrave; localizzato il documento e se &egrave; attualmente disponibile. La fornitura di un esemplare in una localizzazione di presa in consegna pu&igrave; essere soggetta a costi.</p>
+ <p>Sotto &laquo;Altre opzioni&raquo; &egrave; possibile vedere se biblioteche SLSP di altre institution zone posseggono questo esemplare. </p>
+ <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_ita.png" />
+ <p>Selezionare l'opzione di richiesta che si desidera: "Richiesta" (copia fisica/prenotazione) o "Digitalizzazione" (Copia digitale o cartacea). Per effettuare una richiesta &egrave; necessario essere registrati.</p>
+ <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_ita.png" />
+ <p>Selezionando "Richiesta", &egrave; possibile richiedere una copia fisica da ritirare nella biblioteca. &Egrave; anche possibile richiedere la fornitura di alcuni esemplari via posta (servizio a pagamento). Se &egrave; disponibile questa opzione, selezionate la vostra istituzione nel campo &laquo;Istituzione di ritiro&raquo; e l'indirizzo postale nel campo &laquo;Luogo di ritiro&raquo;.</p>
+ <p>Se si desidera ricevere una copia elettronica o cartacea di un articolo o di un capitolo, cliccarte su Digitalizzazione e compilare il modulo con tutti i dettagli possibili.</p>
+ <p><strong>ATTENZIONE:</strong> Questi servizi possono non essere disponibili nella propria IZ / biblioteca e possono essere soggetti a costi. Per maggiori informazioni cliccare <a href="https://slsp.ch/en" target="_blank">qui</a>. </p>
+</md-card-content>
+ <md-card-content id="bor2">
+ <a href="#index">
+ <h3>Richieste di prestito interbibliotecario<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>
+ Nonostante il network SLSP offra accesso ad oltre 50 milioni di record di esemplari e ad un numero inestimabile di risorse elettroniche, &egrave; possibile che la pubblicazione che cercate non sia disponibile. In tal caso &egrave; possibile effettuare una richiesta di prestito interbibliotecario e la pubblicazione verr&agrave; presa in prestito presso un'altra biblioteca in Svizzera o all'estero (servizio a pagamento). Si prega di compilare il presente <a href="https://slsp.ch/en" target="_blank">modulo</a>, e la propria biblioteca si prender&agrave; cura della richiesta.
+ </p>
+ <p><strong>ATTENZIONE:</strong> Questo servizio pu&igrave; essere soggetto a commissioni aggiuntive. Per maggiori informazioni in merito alle possibili commissioni si prega di <a href="https://slsp.ch/fees" target="_blank">consultare la presente pagina</a>.</p>
+</md-card-content>
+ <md-card-content id="bor3">
+ <a href="#index">
+ <h3>Prolungamento del periodo di prestito <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Nel Conto utente, &egrave; possibile vedere i prestiti in corso e rinnovarli tutti o singolarmente, posto che le condizioni di prestito lo consentano. </p>
+ <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_ita.png" />
+ <p><strong>ATTENZIONE:</strong> Il nuovo periodo di prestito decorre sempre da subito. Se si rinnova un documento prima del termine automatico del periodo di prestito, il massimo periodo di prestito possibile si accorcia.</p>
+ <p><strong>ATTENZIONE:</strong> le condizioni di prestito possono variare a seconda delle istituzioni e del tipo di materiale. </p>
+</md-card-content>
+ <md-card-content id="bor4">
+ <a href="#index">
+ <h3>Lista dei prestiti precedenti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Nel Conto utente, nella sezione &laquo;Prestiti&raquo; delle IZ &egrave; possibile vedere i propri prestiti attivi e precedenti.</p>
+ <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_ita.png" />
+ <p><strong>ATTENZIONE:</strong> in alcune institution zone / biblioteche questa opzione non &egrave; disponibile a causa delle norme cantonali sulla protezione dei dati.</p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="search">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ricerca</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="sea1">
+ <a href="#index">
+ <h3>Profili di ricerca SLSP <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>SLSP lavora con due profili di ricerca standard disponibili in ciascuna interfaccia. Il primo &egrave; &laquo;swisscovery&raquo;, il secondo &egrave; &laquo;La mia biblioteca&raquo;. Questa infografica illustra dove viene effettuata la ricerca a seconda del profilo utilizzato. In alcune institution zone o Views di biblioteche &egrave; possibile trovare ulteriori profili di ricerca personalizzati creati dalla institution zone / biblioteca. </p>
+ <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_ita.png" />
+ <p><strong>La mia biblioteca:</strong> Comprende l'inventario locale della institution zone / biblioteca + risorse esterne caricate in questa institution zone (generale e locale) + CDI (CDI pu&igrave; anche essere usato come profilo di ricerca separato). Questo profilo di ricerca ha sempre il nome dell'istituzione / biblioteca.</p>
+ <p><strong>swisscovery:</strong> Tutti i record del network SLSP + risorse esterne generali + CDI </p>
+ <p><strong>Profilo di ricerca personalizzato: </strong> Alcune institution zone / biblioteche hanno realizzato i propri profili di ricerca, che includono dei dati locali.</p>
+ <p><strong>Central Discovery Index (CDI):</strong> &egrave; un database centrale che comprende migliaia di fonti per un totale di oltre 3 miliardi di record quali: articoli di riviste, e-book, dissertazioni, atti di convegni, brevetti, report, documenti governativi, immagini e video. A seconda della institution zone / view della biblioteca, il CDI pu&igrave; essere cercato nel profilo di ricerca &laquo;La mia biblioteca&raquo;, in un profilo di ricerca separato o in entrambi</p>
+ <p><strong>Risorse esterne generali: </strong> swisscovery &egrave; stata arricchita con l'aggiunta di risorse esterne elettroniche generali, in particolare repositories istituzionali.</p>
+ <p><strong>Risorse esterne locali:</strong> oltre alle risorse esterne generali, alcune institution zone forniscono alcune risorse esterne locali. </p>
+</md-card-content>
+ <md-card-content id="sea2">
+ <a href="#index">
+ <h3>Ricerca semplice<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>La ricerca semplice consente l'accesso rapido alle risorse bibliotecarie. </p>
+ <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_ita.png" />
+</md-card-content>
+ <md-card-content id="sea3">
+ <a href="#index">
+ <h3>Ricerca avanzata<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>I campi di ricerca della ricerca avanzata possono essere combinati con &laquo;E&raquo;, &laquo;O&raquo; o &laquo;NON&raquo;. </p>
+ <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_ita.png" />
+ <p>In questo esempio la ricerca &egrave; limitata a libri in inglese che nel titolo contengono &laquo;mountain railway*&raquo; e hanno come soggetto la Svizzera. </p>
+ <p>Con l'aiuto del secondo (o terzo campo), &egrave; possibile scegliere tra &laquo;contiene&raquo; o &laquo;&egrave;(esatto)&raquo; o &laquo;inizia con&raquo;, per specificare se i termini di ricerca devono essere contenuti nel campo, se devono corrispondere esattamente ai termini di ricerca o se l'elemento deve iniziare con un termine specifico. </p>
+ <p>Qui potete scrivere qualche parola del titolo, non necessariamente nell'ordine esatto:</p>
+ <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_ita.png" /><br />
+ <p>In questo caso invece, state cercando il titolo esatto:</p>
+ <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_ita.png" />
+ <p>Scegliendo "inizia con" invece, cercherete i titoli che iniziano con "mountain":</p>
+ <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_ita.png" />
+</md-card-content>
+ <md-card-content id="sea4">
+ <a href="#index">
+ <h3>Ricerca per frase<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Se si desidera cercare una frase (gruppo di parole), inserirle tra virgolette. In una ricerca &egrave; possibile combinare frasi e parole. </p>
+ <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_ita.png" />
+ <p>I risultati includono documenti che contengono entrambi i termini &laquo;piz buin&raquo; e l'aspetto &laquo;mountain&raquo;.</p>
+</md-card-content>
+ <md-card-content id="sea5">
+ <a href="#index">
+ <h3>Ricerca con le wildcard<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>L'asterisco * e il punto interrogativo ? possono essere utilizzati come wildcard per la ricerca:</p>
+ <p>L'asterisco * &egrave; la wildcard per cercare diversi caratteri in fondo a una parola: </p>
+ <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_ita.png" />
+ <p>ricerca per cultura, culture, culturale ecc. </p>
+ <p>L'asterisco * pu&igrave; anche aiutare a trovare ortografie diverse: </p>
+ <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_ita.png" />
+ <p>In questo caso ricerca yogurt, yoghurt, yogourt, yoghourt, ecc.</p>
+ <p>Il punto interrogativo ? &egrave; la wildcard che rimpiazza un singolo carattere: </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_ita.png" />
+ <p>ricerca woman e women.</p>
+ <p>Inoltre, potete combinare i due caratteri </p>
+ <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_ita.png" />
+ <p>Otterrete dei risultati per yoghurt, yogourt, yohurts o yogourts</p>
+</md-card-content>
+ <md-card-content id="sea6">
+ <a href="#index">
+ <h3>Uso di operatori booleani per espandere o restringere una ricerca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>&Egrave; possibile utilizzare operatori booleani &laquo;E&raquo;, &laquo;O&raquo; e &laquo;NON&raquo;. Questi devono essere scritti in lettere maiuscole. </p>
+ <p>Senza operatori, i termini di ricerca vengono automaticamente combinati con <strong>&laquo;E&raquo;</strong>. In altre parole, tutti i termini di ricerca devono apparire nei risultati. </p>
+ <p><strong>O</strong></p>
+ <p>Almeno uno dei termini di ricerca collegati con &laquo;O&raquo; devono comparire nei risultati. Per esempio, usare &laquo;O&raquo; per combinare termini correlati per espandere la ricerca a diversi termini (sinonimi, diverse ortografie):</p>
+ <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_ita.png" />
+ <p><strong>NON</strong></p>
+ <p>Il termine di ricerca escluso con &laquo;NON&raquo; non deve apparire nei risultati. In altre parole, &laquo;NON&raquo; fa s&igrave; che le parole o frasi vengano esplicitamente escluse. </p>
+ <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
+ <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_ita.png" />
+ <p>I risultati includono documenti che contengono le frasi &laquo;climate change&raquo;, ma non &laquo;global warming&raquo;. </p>
+</md-card-content>
+ <md-card-content id="sea7">
+ <a href="#index">
+ <h3>Preferiti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>In &laquo;Preferiti&raquo; &egrave; possibile salvare i titoli trovati durante la propria ricerca. Il salvataggio a lungo termine &egrave; possibile unicamente se si &egrave; registrati. Come ospite, i preferiti sono a disposizione solamente durante la sessione browser corrente.</p>
+ <p>
+ Facendo clic sull'icona
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> di un titolo, il titolo viene aggiunto tra i propri preferiti e cambia in
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Facendo clic su
+ <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, il titolo viene rimosso dai preferiti.
+ </p>
+ <p>
+ &Egrave; possibile accedere alla propria collezione di preferiti attraverso l'icona
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in alto a destra della pagina.
+ </p>
+ <p>&Egrave; possibile rimuovere o esportare singoli titoli dalla propria lista dei preferiti. Evidenziare uno o pi&ugrave; titoli e usare i simboli in alto nella pagina per eliminarli, aggiungere etichette, esportarli in programmi per la gestione dei riferimenti, stamparli o inviarli via e-mail: </p>
+ <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_ita.png" />
+ <p>Per visualizzare i dettagli di un titolo, cliccare sul titolo. </p>
+ <p>In &laquo;Preferiti&raquo; &egrave; anche possibile trovare lo storico di ricerca per la sessione corrente. </p>
+</md-card-content>
+ <md-card-content id="sea8">
+ <a href="#index">
+ <h3>Storico di ricerca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Le ricerche della sessione corrente sono salvate tra i preferiti sotto &laquo;Storico di ricerca&raquo;.</p>
+ <p>
+ &Egrave; possibile raggiungerli direttamente attraverso l'icona
+ <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" /> in alto a destra della pagina.
+ </p>
+ <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_ita.png" />
+</md-card-content>
+ <md-card-content id="sea9">
+ <a href="#index">
+ <h3>Salvare e gestire le ricerche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Se si &egrave; registrati, &egrave; possibile salvare le ricerche in modo permanente. Per farlo, cliccare su &laquo;Salva query&raquo; sopra la lista dei risultati: </p>
+ <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_ita.png" />
+ <p><strong>ATTENZIONE:</strong> L'opzione &laquo;Salva query&raquo; viene visualizzata soltanto se si &egrave; registrati ed &egrave; stata effettuata una ricerca. </p>
+ <p>Quando si salva la propria query, &egrave; possibile ricevere notifiche via e-mail per gli aggiornamenti relativi alla query. Per attivare questo servizio, appare automaticamente un messaggio in alto nella pagina. </p>
+ <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_ita.png" /><br />
+ <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ita.png" />
+ <p>
+ Le ricerche salvate vengono archiviate in &laquo;Preferiti&raquo;
+ <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> nella scheda &laquo;Ricerche salvate&raquo;.
+ </p>
+ <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_ita.png" />
+ <p>&Egrave; possibile eseguire nuovamente la ricerca cliccandoci nuovamente sopra. &Egrave; possibile attivare una notifica (via RSS o e-mail) usando i simboli a destra per ricevere informazioni sui nuovi documenti aggiunti corrispondenti alla propria ricerca. </p>
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="display">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Visualizzazione dei risultati</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="dis1">
+ <a href="#index">
+ <h3>Restringere i risultati<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>I termini di filtro vengono proposti nella colonna a sinistra e consentono di restringere i risultati di ricerca:</p>
+ <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_ita.png" />
+ <p>Facendo clic su &laquo;Libri&raquo;, in questo esempio, si limita la lista dei risultati ai 1.432 libri trovati.</p>
+ <p>Per escludere un termine, cliccate sul simbolo rosso a destra vicino al termine. </p>
+ <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_ita.png" />
+ <p>Con &laquo;Mostra di pi&ugrave;&raquo; &egrave; possibile visualizzare ulteriori termini e affinare la ricerca includendo o escludendo diversi termini. </p>
+ <p>Esempio: Restringere i risultati a &laquo;Tesi&raquo;; &laquo;Video&raquo; e &laquo;Audio&raquo;.</p>
+ <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_ita.png" />
+ <p>Per rimuovere un filtro, cliccare sulla croce x a fianco del termine. &laquo;Ripristina filtri&raquo; invece rimuove tutti i filtri. </p>
+ <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_ita.png" />
+ <p>L'inserimento di una nuova ricerca rimuove automaticamente tutti i filtri. In ogni caso &egrave; possibile mantenere un filtro per la durata della sessione browser selezionandolo e facendo clic sul simbolo del lucchetto. Per rimuovere il filtro, cliccare nuovamente sul lucchetto.</p>
+ <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_ita.png" />
+</md-card-content>
+ <md-card-content id="dis2">
+ <a href="#index">
+ <h3>Lista dei risultati: classificazione<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>BDi default, i risultati sono ordinati per rilevanza. &Egrave; anche possibile ordinarli per data, autore e titolo. </p>
+ <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_ita.png" />
+</md-card-content>
+ <md-card-content id="dis3">
+ <a href="#index">
+ <h3>Lista dei risultati: versioni <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Se un'opera &egrave; disponibile in diverse versioni (per es. in diverse edizioni o stampe), cliccare sull'icona, il titolo o &laquo;Visualizza tutte le versioni&raquo; per elencare tutte le versioni.</p>
+ <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_ita.png" />
+ <p>&Egrave; possibile ritornare alla lista dei risultati chiudendo la lista delle versioni sotto &laquo;Filtri attivi&raquo;. </p>
+ <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png" />
+</md-card-content>
+ <md-card-content id="dis4">
+ <a href="#index">
+ <h3>Visualizzazione di titoli singoli <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
+ </a>
+ <p>Facendo clic su un titolo &egrave; possibile selezionare le seguenti azioni: </p>
+ <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ita.png" />
+ <p><strong>Top:</strong> torna in alto nella pagina</p>
+ <p><strong>Invia a: </strong> esporta informazioni del titolo al programma di gestione dei riferimenti, esporta citazioni, crea link permanenti al risultato, stampa o invia il titolo via e-mail. Le azioni di esportazione possono essere applicate fino a 50 record alla volta. </p>
+ <p><strong>Ottenerlo:</strong> visualizza localizzazioni, effettua ordini di prestiti, prenotazioni o fotocopie.</p>
+ <p><strong>Dettagli:</strong> maggiori informazioni sul titolo. </p>
+ <p><strong>Link:</strong> collega agli indici, al titolo precedente/successivo, a tutti i volumi di una serie.</p>
+ <p><strong>Scorri virtualmente:</strong> &egrave; possibile vedere uno scaffale della biblioteca relativo al record selezionato, di modo che sia possibile trovare altri esemplari corrispondenti alla propria ricerca.</p>
+ <p>Se un'opera &egrave; disponibile in diverse versioni (per es. in diverse edizioni o stampe), cliccare sull'icona, il titolo o &laquo;Visualizza tutte le versioni&raquo; elencare tutte le versioni.</p>
+ <img width="682" height="240" src="custom/41SLSP_EPF-prod/img/help/versions_ita.png" />
+ <p>&Egrave; possibile ritornare alla lista dei risultati chiudendo la lista delle versioni sotto &laquo;Filtri Attivi&raquo;.</p>
+ <img width="370" height="301" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png" />
+</md-card-content>
+ </md-card>
+
+
+ <md-card class="default-card" id="questions">
+ <md-card-title>
+ <md-card-title-text>
+ <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Domande?</h2></a>
+</md-card-title-text>
+ </md-card-title>
+ <md-card-content id="que1">
+ <a href="#index">
+ <h3>Contattateci<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
+ </a>
+ <p>Per qualsiasi domanda, dubbio, commento o richiesta non esitate <a href="mailto:swisscovery@slsp.ch" target="_blank">a contattarci</a>.</p>
+
+</md-card-content>
+
+ </md-card>
+
+ </div>
+
+
+
+ </div>
+
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de.html
new file mode 100644
index 0000000..fe2da70
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de.html
@@ -0,0 +1,136 @@
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Willkommen bei <b>BEAST</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Der Katalog <b>BEAST</b> (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) bietet Ihnen Zugang zu allen dokumentarischen Ressourcen der Bibliothek der EPFL (Bücher, Zeitschriften und Artikel in gedruckter und elektronischer Form, Dissertationen der EPFL, DVDs, Videospiele usw.) sowie zu den Sammlungen der anderen Bibliotheken des <a href="https://slsp.ch/de">SLSP-Netzes</a>.</p>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Inscription SLSP</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Ihr NEBIS-Konto wurde nicht migriert, was bedeutet, dass alle Benutzerinnen und Benutzer ein neues Konto beim SLSP erstellen m&uuml;ssen.</p>
+ <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=de" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Erstellen Sie ein SLSP-Konto</u></a></b></p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Dienstleistungen</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Bitte <a href="https://registration.slsp.ch?iz=epfl&lang=de" target="_blank">registrieren</a> Sie sich f&uuml;r die SLSP-Netzwerkdienstleistungen, um auf folgende Dienstleistungen zugreifen zu k&ouml;nnen:</p>
+ <ul>
+ <li>Zugang zu den Sammlungen von mehr als <a href="https://slsp.ch/libraries" target="_blank">450 wissenschaftlichen Bibliotheken</a> in der Schweiz</li>
+ <li>Nutzung lizenzierter elektronischer Ressourcen der Bibliothek der EPFL</li>
+ <li>Dokumente aus anderen Bibliotheken bestellen (kostenlos, wenn sie in der Bibliothek der EPFL abgeholt werden)</li>
+ <li>Zugriff auf Bibliothekskonto, Ausleihen und Reservierungen</li>
+ </ul>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Fragen? Brauchen Sie Hilfe? </h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
+ <p>
+ <a href="mailto:library@epfl.ch" class="puce"><span>
+ <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
+ </span><span><u>library@epfl.ch</u></span></a>
+ </p>
+ <p>
+ <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
+ <defs id="defs2" />
+ <metadata id="metadata5">
+ <rdf:RDF>
+ <cc:Work rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g transform="translate(0,-292.23748)" id="layer1">
+ <path id="path3724"
+ d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
+ style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Adresse:</span> -->
+ <p>EPFL Biblioth&egrave;que</p>
+ <p>Rolex Learning Center</p>
+ <p>Station 20</p>
+ <p>CH-1015 Lausanne</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Contact:</span> -->
+ <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
+ <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
+ <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
+ <p class="epfl-social">
+ <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
+ <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
+ </a>
+ <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
+ <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
+ </a>
+ <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
+ <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
+ </a>
+ <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
+ <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
+ </a>
+ <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
+ <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
+ </a>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Description:</span> -->
+ <p>Diese Seite ist der Zugangspunkt zu den Ressourcen der</p>
+ <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">Biblioth&egrave;que de l'EPFL</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">Die EPFL Bibliothek ist Mitglied der <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Rechtliche Informationen</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Datenschutz</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de_old.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de_old.html
new file mode 100644
index 0000000..ae92f88
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de_old.html
@@ -0,0 +1,119 @@
+<md-content>
+
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
+ <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Willkommen bei <b>swisscovery</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>
+ Hier stehen Ihnen einfache und erweiterte Suchfunktionen f&uuml;r B&uuml;cher, E-Books, <a href="https://consortium.ch/lizenzen/" target="_blank">Zeitschriften</a>, <a href="https://consortium.ch/lizenzen/" target="_blank">Datenbanken</a> und weitere Medien zur Verf&uuml;gung.
+ <br />
+ <br />
+ Bitte <a href="#" target="_blank">loggen Sie sich ein</a> und profitieren Sie von unseren SLSP-Services, wie z. B.:
+ </p>
+ <ul>
+ <li>Erhalten Sie Zugang zu &uuml;ber <a href="https://slsp.ch/libraries" target="_blank">450 wissenschaftlichen Bibliotheken</a> in der Schweiz</li>
+ <li>Nutzen Sie von Ihrer Bibliothek lizenzierte E-Medien und erhalten Sie Zugang zu freien Titeln</li>
+ <li>Bestellen Sie Artikel bei Bibliotheken, direkt oder via SLSP Courier</li>
+ <li>Verwalten Sie Ihr Konto, Ihre Ausleihen und Ihre Vormerkungen</li>
+ </ul>
+ <br />
+ <p>
+ <b>
+ Registrierung
+ </b>
+ </p>
+ <p>
+ Um ein SLSP-Nutzer zu werden, registrieren Sie sich bitte auf unserer <a href="https://registration.slsp.ch" target="_blank">Registrierungsplattform</a>.
+ </p>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Search Scope</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_de.png" />
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Library Search</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
+ </div>
+ </md-card-content>
+ </md-card>
+ <div flex-gt-sm="40" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Fragen, Kommentare und Support</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>
+ Haben Sie Fragen oder m&ouml;chten Sie einen Kommentar anbringen? Haben Sie Probleme mit swisscovery? Dann <a href="mailto:?" target="_blank">kontaktieren Sie uns</a>! Wir freuen uns auf Ihre Nachricht.
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+ </div>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Adresse:</span>
+ <p>&#91;Name der Institution / Bibliothek&#93;</p>
+ <p>&#91;Stra&szlig;enname und -nummer&#93;</p>
+ <p>&#91;Postleitzahl und Stadt&#93;</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Kontakt:</span>
+ <p>&#91;phone number&#93;</p>
+ <p><a href="mailto:?">&#91;E-Mail-Adresse&#93;</a></p>
+ <p><a href="#" target="_blank">&#91;website&#93;</a></p>
+ <p>
+ <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
+ <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
+ </md-button>
+ <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
+ <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
+ </md-button>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Beschreibung:</span>
+ <p>Diese Seite ist der Zugangspunkt zu den Ressourcen der</p>
+ <p><a class="ps_link" href="#" target="_blank">&#91;Name der Bibliothek / die folgenden Bibliotheken&#93;</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">Der &#91;Name der Institution / Bibliothek/ies&#93; ist Mitglied der <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Rechtliche Informationen</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Datenschutz</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en.html
new file mode 100644
index 0000000..846611a
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en.html
@@ -0,0 +1,138 @@
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Welcome to <b>BEAST</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>The <b>BEAST</b> catalog (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) allows you to search through all EPFL Library documentary resources (books and ebooks, online and printed journals and articles, EPFL theses, DVDs, video games, etc.), as well as through the collections of the other libraries of <a href="https://slsp.ch">SLSP</a> network.</p>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">SLSP Registration</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>The NEBIS reader accounts have not been migrated, which means that all users must create a new account with SLSP.</p>
+ <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=en" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Create an SLSP account</u></a></b></p>
+ <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>View your SLSP account</u></a></b> (loans as of December 7)</p>
+ <p><b><a href="https://recherche.nebis.ch/primo-explore/account?vid=NEBIS" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>View your NEBIS account</u></a></b> (loans before December 7)</p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Services</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Please <a href="https://registration.slsp.ch?iz=epfl&lang=en" target="_blank">register</a> for SLSP network to benefit from services such as:</p>
+ <ul>
+ <li>Access to the collections of more than <a href="https://slsp.ch/libraries" target="_blank">450 scientific libraries</a> in Switzerland</li>
+ <li>Use electronic resources available through EPFL Library license</li>
+ <li>Order documents from other libraries (free of charge if picked up at the EPFL Library)</li>
+ <li>Access your reader account, loans and reservations</li>
+ </ul>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Need some help?</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
+ <p>
+ <a href="mailto:library@epfl.ch" class="puce"><span>
+ <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
+ </span><span><u>library@epfl.ch</u></span></a>
+ </p>
+ <p>
+ <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
+ <defs id="defs2" />
+ <metadata id="metadata5">
+ <rdf:RDF>
+ <cc:Work rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g transform="translate(0,-292.23748)" id="layer1">
+ <path id="path3724"
+ d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
+ style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Adresse:</span> -->
+ <p>EPFL Biblioth&egrave;que</p>
+ <p>Rolex Learning Center</p>
+ <p>Station 20</p>
+ <p>CH-1015 Lausanne</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Contact:</span> -->
+ <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
+ <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
+ <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
+ <p class="epfl-social">
+ <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
+ <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
+ </a>
+ <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
+ <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
+ </a>
+ <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
+ <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
+ </a>
+ <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
+ <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
+ </a>
+ <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
+ <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
+ </a>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Description:</span> -->
+ <p>This page is the access point to the resources of the</p>
+ <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">EPFL Library</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">The EPFL library is member of the <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Legal Information</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Data Protection</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en_old.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en_old.html
new file mode 100644
index 0000000..7aa7ee5
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en_old.html
@@ -0,0 +1,119 @@
+<md-content>
+
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
+ <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Welcome to <b>swisscovery</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>
+ Here you can perform simple and advanced searches for books, e-books, <a href="https://consortium.ch/lizenzen/?lang=en" target="_blank">journals</a>, <a href="https://consortium.ch/lizenzen/?lang=en" target="_blank">databases</a> and other media.
+ <br />
+ <br />
+ Please <a href="#" target="_blank">sign in</a> in order profit from our SLSP services such as:
+ </p>
+ <ul>
+ <li>Get access to more than <a href="https://slsp.ch/libraries" target="_blank">450 scientific libraries</a> in Switzerland</li>
+ <li>Use e-media licensed by your library and access free titles</li>
+ <li>Request books from libraries, directly or via SLSP courier</li>
+ <li>Manage your account, your loans and your requests</li>
+ </ul>
+ <br />
+ <p>
+ <b>
+ Registration
+ </b>
+ </p>
+ <p>
+ To become a SLSP user please register at our <a href="https://registration.slsp.ch" target="_blank">registration platform</a>.
+ </p>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Search Scope</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_en.png" />
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Library Search</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
+ </div>
+ </md-card-content>
+ </md-card>
+ <div flex-gt-sm="40" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Questions, comments and support</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>
+ Do you have any questions or comments? Are you experiencing problems with swisscovery? Don't hesitate to <a href="mailto:?" target="_blank">contact us</a>! We are looking forward to reading your message.
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+ </div>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Address:</span>
+ <p>&#91;name of the Institution / Library&#93;</p>
+ <p>&#91;street name and number&#93;</p>
+ <p>&#91;post code and city&#93;</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Contact us:</span>
+ <p>&#91;phone number&#93;</p>
+ <p><a href="mailto:?">&#91;email address&#93;</a></p>
+ <p><a href="#" target="_blank">&#91;website&#93;</a></p>
+ <p>
+ <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
+ <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
+ </md-button>
+ <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
+ <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
+ </md-button>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Description:</span>
+ <p>This page is the access point to the resources of the</p>
+ <p><a class="ps_link" href="#" target="_blank">&#91;name of the library / the following libraries&#93;</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">The &#91;Name of the Institution / Library/ies&#93; is member of the <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Legal Information</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Data Protection</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_fr.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_fr.html
new file mode 100644
index 0000000..3836168
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_fr.html
@@ -0,0 +1,138 @@
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Bienvenue sur <b>BEAST</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p><b>BEAST</b> - <b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool - vous donne acc&egrave;s &agrave; l’ensemble des ressources documentatires de la Biblioth&egrave;que de l'EPFL (livres, revues et articles imprim&eacute;s et &eacute;lectroniques, th&egrave;ses EPFL, DVDs, jeux vid&eacute;o, etc.), ainsi qu'aux collections des autres biblioth&egrave;ques du r&eacute;seau <a href="https://slsp.ch/fr">SLSP</a>.</p>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Inscription SLSP</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Les comptes lecteurs n'ont pas &eacute;t&eacute; migr&eacute;s, ce qui signifie que tous les utilisateurs doivent se cr&eacute;er un nouveau compte aupr&egrave;s d'SLSP.</p>
+ <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=fr" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Cr&eacute;er un compte SLSP</u></a></b></p>
+ <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Voir votre compte SLSP</u></a></b> (prêts dès le 7 décembre)</p>
+ <p><b><a href="https://recherche.nebis.ch/primo-explore/account?vid=NEBIS" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Voir votre compte NEBIS</u></a></b> (prêts avant le 7 décembre 2020)</p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Services</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Veuillez vous <a href="https://registration.slsp.ch?iz=epfl&lang=fr" target="_blank">inscrire</a> pour b&eacute;n&eacute;ficier de nombreux services tels que&nbsp;:</p>
+ <ul>
+ <li>Acc&eacute;der &agrave; plus de <a href="https://slsp.ch/libraries" target="_blank">450 biblioth&egrave;ques scientifiques</a> en Suisse</li>
+ <li>Utiliser les m&eacute;dias &eacute;lectroniques sous licence de la Bibliothèque de l'EPFL et acc&eacute;der &agrave; des titres gratuits</li>
+ <li>Commander des documents provenant d'autres biblioth&egrave;ques (service gratuit si retrait sur place)</li>
+ <li>G&eacute;rer votre compte, vos pr&ecirc;ts et vos demandes</li>
+ </ul>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Besoin d'aide ?</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p><a href="https://www.epfl.ch/campus/library/fr/ouverture-du-reseau-slsp-et-de-swisscovery/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
+ <p>
+ <a href="mailto:library@epfl.ch" class="puce"><span>
+ <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
+ </span><span><u>library@epfl.ch</u></span></a>
+ </p>
+ <p>
+ <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
+ <defs id="defs2" />
+ <metadata id="metadata5">
+ <rdf:RDF>
+ <cc:Work rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g transform="translate(0,-292.23748)" id="layer1">
+ <path id="path3724"
+ d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
+ style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Adresse:</span> -->
+ <p>EPFL Biblioth&egrave;que</p>
+ <p>Rolex Learning Center</p>
+ <p>Station 20</p>
+ <p>CH-1015 Lausanne</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Contact:</span> -->
+ <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
+ <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
+ <p><a href="https://go.epfl.ch/bibliotheque" target="_blank">https://go.epfl.ch/bibliotheque</a></p>
+ <p class="epfl-social">
+ <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
+ <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
+ </a>
+ <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
+ <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
+ </a>
+ <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
+ <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
+ </a>
+ <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
+ <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
+ </a>
+ <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
+ <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
+ </a>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Description:</span> -->
+ <p>Cette page est le point d&rsquo;acc&egrave;s aux ressources de</p>
+ <p><a class="ps_link" href="https://go.epfl.ch/bibliotheque" target="_blank">La Biblioth&egrave;que de l'EPFL</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">La Biblioth&egrave;que de l'EPFL est membre du <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informations juridiques</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protection des donn&eacute;es</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it.html
new file mode 100644
index 0000000..6a51950
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it.html
@@ -0,0 +1,136 @@
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Benvenuti su <b>BEAST</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Il catalogo <b>BEAST</b> (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) vi permette di accedere all’insieme delle risorse documentarie della Biblioteca dell’EPFL (libri, riviste e articoli in formato cartaceo ed elettronico, tesi dell’EPFL, DVD, videogiochi, ecc.) cosi come alle collezioni delle altre biblioteche della rete <a href="https://slsp.ch/it">SLSP</a>.</p>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Iscrizione a SLSP</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>Gli account utente NEBIS non sono stati migrati sulla nuova piattaforma. Tutti i lettori dovranno quindi crearsi un nuovo account SLSP. </p>
+ <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=it" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Creare un account SLSP</u></a></b></p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Servizi</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>&Egrave; necessario <a href="https://registration.slsp.ch?iz=epfl&lang=it" target="_blank">iscriversi</a> per usfruire dei servizi della rete SLSP, come ad esempio:</p>
+ <ul>
+ <li>Accedere alle collezioni di oltre <a href="https://slsp.ch/libraries" target="_blank">450 biblioteche</a> scientifiche in Svizzera</li>
+ <li>Utilizzare le risorse elettroniche in abbonamento alla Biblioteca dell’EPFL</li>
+ <li>Ordinare dei documenti provenienti dalle altre biblioteche (il servizio è gratuito se i documenti vengono ritirati alla Biblioteca dell’EPFL)</li>
+ <li>Gestire il vostro account utente, i vostri prestiti e le vostre prenotazioni</li>
+ </ul>
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Bisogno d’aiuto?</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
+ <p>
+ <a href="mailto:library@epfl.ch" class="puce"><span>
+ <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
+ </span><span><u>library@epfl.ch</u></span></a>
+ </p>
+ <p>
+ <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
+ <defs id="defs2" />
+ <metadata id="metadata5">
+ <rdf:RDF>
+ <cc:Work rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g transform="translate(0,-292.23748)" id="layer1">
+ <path id="path3724"
+ d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
+ style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Adresse:</span> -->
+ <p>EPFL Biblioth&egrave;que</p>
+ <p>Rolex Learning Center</p>
+ <p>Station 20</p>
+ <p>CH-1015 Lausanne</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Contact:</span> -->
+ <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
+ <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
+ <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
+ <p class="epfl-social">
+ <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
+ <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
+ </a>
+ <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
+ <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
+ </a>
+ <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
+ <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
+ </a>
+ <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
+ <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
+ </a>
+ <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
+ <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
+ </a>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <!-- <span class="md-headline">Description:</span> -->
+ <p>Questa pagina &egrave; il punto di accesso per le risorse della</p>
+ <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">Biblioth&egrave;que de l'EPFL</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">La Bibliothèque de l'EPFL &egrave; membro del <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informazioni legali</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protezione dei dati</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it_old.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it_old.html
new file mode 100644
index 0000000..4fce2fb
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it_old.html
@@ -0,0 +1,119 @@
+<md-content>
+
+ <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
+ <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
+ <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h1 class="md-headline">Benvenuti in <b>swisscovery</b></h1>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>
+ Qui potete effettuare ricerche semplici e avanzate di libri, e-book, <a href="https://consortium.ch/lizenzen/?lang=it" target="_blank">periodici</a>, <a href="https://consortium.ch/lizenzen/?lang=it" target="_blank">banche dati</a> e altri media.
+ <br />
+ <br />
+ La <a href="#" target="_blank">registrazione</a> permette di usufruire dei servizi SLSP come:
+ </p>
+ <ul>
+ <li>L&rsquo;accesso a oltre <a href="https://slsp.ch/libraries" target="_blank">450 biblioteche scientifiche</a> in Svizzera</li>
+ <li>L&rsquo;utilizzo di risorse elettroniche concesse in licenza dalla vostra biblioteca e l&rsquo;accesso a titoli gratuiti</li>
+ <li>La richiesta di opere alle biblioteche, direttamente o tramite SLSP Courier</li>
+ <li>La gestione del vostro account, dei prestiti e delle vostre richieste</li>
+ </ul>
+ <br />
+ <p>
+ <b>
+ Registrazione
+ </b>
+ </p>
+ <p>
+ Per diventare un utente SLSP &egrave; necessario registrarsi sulla nostra <a href="https://registration.slsp.ch" target="_blank">piattaforma di registrazione</a>.
+ </p>
+ </md-card-content>
+ </md-card>
+
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Search Scope</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_it.png" />
+ </md-card-content>
+ </md-card>
+ </div>
+ <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Library Search</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <div class="resp-container">
+ <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
+ </div>
+ </md-card-content>
+ </md-card>
+ <div flex-gt-sm="40" flex="100" layout="column">
+ <md-card class="cardbox default-card">
+ <md-card-title>
+ <md-card-title-text>
+ <h2 class="md-headline">Domande, commenti e supporto</h2>
+ </md-card-title-text>
+ </md-card-title>
+ <md-card-content>
+ <p>
+ Avete domande o commenti? Avete problemi con swisscovery? Non esitate a <a href="mailto:?" target="_blank">contattarci</a>! Saremo lieti di ricevere il vostro messaggio.
+ </p>
+ </md-card-content>
+ </md-card>
+ </div>
+ </div>
+ </div>
+</md-content>
+<md-content>
+ <div flex="100">
+ <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Indirizzo:</span>
+ <p>&#91;nome dell&rsquo;istituzione / biblioteca</p>
+ <p>&#91;numero e nome della via&#93;</p>
+ <p>&#91;codice postale e citt&agrave;&#93;</p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Contatto:</span>
+ <p>&#91;numero di telefono&#93;</p>
+ <p><a href="mailto:?">&#91;indirizzo email&#93;</a></p>
+ <p><a href="#" target="_blank">&#91;sito internet&#93;</a></p>
+ <p>
+ <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
+ <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
+ </md-button>
+ <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
+ <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
+ </md-button>
+ </p>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg">
+ <span class="md-headline">Descrizione:</span>
+ <p>Questa pagina &egrave; il punto di accesso per le risorse della</p>
+ <p><a class="ps_link" href="#" target="_blank">&#91;nome della biblioteca / delle seguenti biblioteche&#93;</a></p>
+ </md-card-content>
+ </md-card>
+ <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
+ <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
+ <span class="legal">La &#91;Nome dell&rsquo;istituzione / biblioteca/che&#93; &egrave; membro del <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informazioni legali</a>
+ </md-card-content>
+ <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
+ <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protezione dei dati</a>
+ </md-card-content>
+ </md-card>
+ </div>
+</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Infographic.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Infographic.png
new file mode 100644
index 0000000..b8d2357
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/Infographic.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Instagram.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Instagram.png
new file mode 100644
index 0000000..222110a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/Instagram.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/LinkedIn.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/LinkedIn.png
new file mode 100644
index 0000000..7f5d23a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/LinkedIn.png differ
diff --git a/primo-explore/custom/VU2/img/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/img/README.md
similarity index 100%
rename from primo-explore/custom/VU2/img/README.md
rename to primo-explore/custom/41SLSP_HPH-EPFL/img/README.md
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Twitter.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Twitter.png
new file mode 100644
index 0000000..835fb9f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/Twitter.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Youtube.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Youtube.png
new file mode 100644
index 0000000..cd1acb1
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/Youtube.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/blog.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/blog.svg
new file mode 100644
index 0000000..bede3ac
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/blog.svg
@@ -0,0 +1,33 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="1097.000000pt" height="1313.000000pt" viewBox="0 0 1097.000000 1313.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.16, written by Peter Selinger 2001-2019
+</metadata>
+<g transform="translate(0.000000,1313.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M5150 10304 c-516 -62 -1037 -281 -1435 -604 -502 -407 -856 -985
+-989 -1615 -71 -340 -75 -768 -11 -1110 79 -414 263 -827 523 -1174 115 -153
+392 -430 542 -543 431 -322 914 -510 1434 -559 164 -15 543 -6 686 16 304 47
+549 125 825 260 307 151 501 290 751 539 249 250 388 444 539 751 135 276 213
+521 260 825 22 143 31 522 16 686 -49 520 -237 1003 -559 1434 -113 150 -390
+427 -543 542 -347 260 -760 444 -1174 523 -242 45 -621 58 -865 29z m735 -34
+c325 -49 591 -135 881 -284 431 -222 780 -535 1049 -941 621 -933 618 -2161
+-7 -3092 -709 -1058 -2036 -1504 -3238 -1088 -663 230 -1215 702 -1548 1323
+-153 286 -252 585 -303 922 -32 210 -32 581 0 790 51 335 136 596 285 886 440
+853 1270 1410 2243 1504 145 14 480 4 638 -20z"/>
+<path d="M4622 9258 c-490 -2438 -774 -3846 -778 -3861 -5 -16 15 -17 351 -15
+l357 3 66 162 c37 90 70 163 73 163 4 0 24 -30 45 -66 53 -91 171 -200 273
+-253 116 -60 210 -82 356 -82 198 0 368 42 560 137 563 279 984 947 1065 1689
+14 129 14 427 0 541 -50 413 -237 702 -527 819 -108 44 -210 58 -377 52 -120
+-4 -169 -10 -241 -30 -178 -50 -345 -133 -518 -258 -54 -39 -100 -69 -102 -67
+-2 2 30 129 71 283 41 154 111 453 155 665 44 212 91 436 105 498 13 63 24
+115 24 118 0 2 -193 4 -428 4 l-429 0 -101 -502z m1297 -1443 c94 -52 159
+-155 186 -300 18 -90 20 -322 4 -445 -70 -569 -388 -1016 -753 -1058 -189 -22
+-354 64 -441 231 l-29 55 118 583 119 584 45 65 c145 205 367 323 597 317 89
+-2 106 -6 154 -32z"/>
+</g>
+</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/custom-ui.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/custom-ui.svg
new file mode 100644
index 0000000..75baa9d
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/custom-ui.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="5000" viewBox="0 0 24 5000"><svg id="emoticon-cool" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg><svg id="beach" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg><svg id="beer" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M17,9h5.5L17,3.5V9 M10,2h8l6,6v12c0,1.1-0.9,2-2,2H10c-1.1,0-2-0.9-2-2V4C8,2.9,8.9,2,10,2 M15,4h-5v16h5h7v-9h-7V4z"/><path xmlns="http://www.w3.org/2000/svg" d="M7.3,20H6V4h1.3V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h1.3V20z"/><path xmlns="http://www.w3.org/2000/svg" d="M3.3,20H2V4h1.3V2H2C0.9,2,0,2.9,0,4v16c0,1.1,0.9,2,2,2h1.3V20z"/></svg><svg id="sun" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M17,9h5.5L17,3.5V9 M10,2h8l6,6v12c0,1.1-0.9,2-2,2H10c-1.1,0-2-0.9-2-2V4C8,2.9,8.9,2,10,2 M15,4h-5v16h5h7v-9h-7V4z"/><path xmlns="http://www.w3.org/2000/svg" d="M7.3,20H6V4h1.3V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h1.3V20z"/><path xmlns="http://www.w3.org/2000/svg" d="M3.3,20H2V4h1.3V2H2C0.9,2,0,2.9,0,4v16c0,1.1,0.9,2,2,2h1.3V20z"/></svg></svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.png
new file mode 100644
index 0000000..823e4d8
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.svg
new file mode 100644
index 0000000..0016036
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="130.000000pt" height="130.000000pt" viewBox="0 0 130.000000 130.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.16, written by Peter Selinger 2001-2019
+</metadata>
+<g transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M9 8H6v4h3v12h5V12h3.642L18 8h-4V6.333C14 5.378 14.192 5 15.115 5H18V0h-3.808C10.596 0 9 1.583 9 4.615V8z"></path>
+</g>
+</svg>
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_old.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_old.svg
new file mode 100644
index 0000000..4c7c0ff
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_old.svg
@@ -0,0 +1,20 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="130.000000pt" height="130.000000pt" viewBox="0 0 130.000000 130.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.16, written by Peter Selinger 2001-2019
+</metadata>
+<g transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M491 1234 c-192 -52 -354 -207 -418 -399 -22 -67 -26 -98 -26 -190 0
+-93 4 -122 27 -188 54 -161 163 -286 311 -357 44 -22 99 -42 123 -46 l42 -7 0
+217 0 216 -75 0 -75 0 0 85 0 85 75 0 75 0 0 91 c0 116 14 164 65 214 48 49
+98 65 196 65 122 0 120 1 117 -89 l-3 -76 -60 -3 c-89 -5 -105 -23 -105 -124
+l0 -78 80 0 c91 0 86 7 69 -101 l-12 -69 -68 0 -69 0 0 -215 c0 -248 -8 -233
+104 -191 201 76 346 246 386 454 19 93 8 231 -23 322 -66 186 -226 334 -417
+385 -71 19 -248 18 -319 -1z"/>
+</g>
+</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_white.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_white.svg
new file mode 100644
index 0000000..5b20741
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_white.svg
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+ sodipodi:docname="facebook - Copia.svg"
+ id="svg40"
+ preserveAspectRatio="xMidYMid meet"
+ viewBox="0 0 130.000000 130.000000"
+ height="130.000000pt"
+ width="130.000000pt"
+ version="1.0">
+ <defs
+ id="defs44" />
+ <sodipodi:namedview
+ inkscape:current-layer="svg40"
+ inkscape:window-maximized="1"
+ inkscape:window-y="-9"
+ inkscape:window-x="-9"
+ inkscape:cy="86.666667"
+ inkscape:cx="86.666667"
+ inkscape:zoom="4.7884615"
+ showgrid="false"
+ id="namedview42"
+ inkscape:window-height="1001"
+ inkscape:window-width="1920"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0"
+ guidetolerance="10"
+ gridtolerance="10"
+ objecttolerance="10"
+ borderopacity="1"
+ bordercolor="#666666"
+ pagecolor="#ffffff" />
+ <metadata
+ id="metadata34">
+Created by potrace 1.16, written by Peter Selinger 2001-2019
+<rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+</rdf:RDF>
+</metadata>
+ <g
+ id="g38"
+ stroke="none"
+ fill="#ffffff"
+ transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)">
+ <path
+ id="path36"
+ d="M491 1234 c-192 -52 -354 -207 -418 -399 -22 -67 -26 -98 -26 -190 0 -93 4 -122 27 -188 54 -161 163 -286 311 -357 44 -22 99 -42 123 -46 l42 -7 0 217 0 216 -75 0 -75 0 0 85 0 85 75 0 75 0 0 91 c0 116 14 164 65 214 48 49 98 65 196 65 122 0 120 1 117 -89 l-3 -76 -60 -3 c-89 -5 -105 -23 -105 -124 l0 -78 80 0 c91 0 86 7 69 -101 l-12 -69 -68 0 -69 0 0 -215 c0 -248 -8 -233 104 -191 201 76 346 246 386 454 19 93 8 231 -23 322 -66 186 -226 334 -417 385 -71 19 -248 18 -319 -1z" />
+ </g>
+</svg>
diff --git a/primo-explore/custom/VU2/img/favicon.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/favicon.ico
similarity index 100%
rename from primo-explore/custom/VU2/img/favicon.png
rename to primo-explore/custom/41SLSP_HPH-EPFL/img/favicon.ico
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses.png
new file mode 100644
index 0000000..c7d60bf
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_fre.png
new file mode 100644
index 0000000..b863055
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ger.png
new file mode 100644
index 0000000..71ccc2a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ita.png
new file mode 100644
index 0000000..fb08fc3
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters.png
new file mode 100644
index 0000000..9b34b8f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_fre.png
new file mode 100644
index 0000000..586d6b8
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ger.png
new file mode 100644
index 0000000..4d00d4f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ita.png
new file mode 100644
index 0000000..7a00495
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans.png
new file mode 100644
index 0000000..91a9787
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_fre.png
new file mode 100644
index 0000000..6bd5d81
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ger.png
new file mode 100644
index 0000000..089bb4e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ita.png
new file mode 100644
index 0000000..aff1f28
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1.png
new file mode 100644
index 0000000..0ba0dbc
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_fre.png
new file mode 100644
index 0000000..6e0698f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ger.png
new file mode 100644
index 0000000..eac0c87
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ita.png
new file mode 100644
index 0000000..c29f7bd
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2.png
new file mode 100644
index 0000000..6b5add0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_fre.png
new file mode 100644
index 0000000..12801c4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ger.png
new file mode 100644
index 0000000..db8aa25
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ita.png
new file mode 100644
index 0000000..508c029
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3.png
new file mode 100644
index 0000000..622d6d1
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_fre.png
new file mode 100644
index 0000000..5c71503
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ger.png
new file mode 100644
index 0000000..261c807
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ita.png
new file mode 100644
index 0000000..1586679
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch.png
new file mode 100644
index 0000000..3dc8f15
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_fre.png
new file mode 100644
index 0000000..d76dc84
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ger.png
new file mode 100644
index 0000000..73abbb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ita.png
new file mode 100644
index 0000000..c74b788
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline.png
new file mode 100644
index 0000000..798db7c
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2.png
new file mode 100644
index 0000000..ea02e6f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_fre.png
new file mode 100644
index 0000000..2bea675
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ger.png
new file mode 100644
index 0000000..4f2e1f5
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ita.png
new file mode 100644
index 0000000..1a968da
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull.png
new file mode 100644
index 0000000..ac52ef6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_fre.png
new file mode 100644
index 0000000..5c1c8f4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ger.png
new file mode 100644
index 0000000..ac360cf
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ita.png
new file mode 100644
index 0000000..713b9e3
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_fre.png
new file mode 100644
index 0000000..1a76daa
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ger.png
new file mode 100644
index 0000000..af7376f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ita.png
new file mode 100644
index 0000000..1a968da
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification.png
new file mode 100644
index 0000000..6e72a4b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings.png
new file mode 100644
index 0000000..444c902
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_fre.png
new file mode 100644
index 0000000..85e8600
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ger.png
new file mode 100644
index 0000000..70bd63f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ita.png
new file mode 100644
index 0000000..4569cf1
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_fre.png
new file mode 100644
index 0000000..6504fc8
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ger.png
new file mode 100644
index 0000000..a4e7bf5
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ita.png
new file mode 100644
index 0000000..94c0fe4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1.png
new file mode 100644
index 0000000..e20514e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_fre.png
new file mode 100644
index 0000000..dd85460
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ger.png
new file mode 100644
index 0000000..2c3e437
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ita.png
new file mode 100644
index 0000000..6b15ada
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2.png
new file mode 100644
index 0000000..163de86
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_fre.png
new file mode 100644
index 0000000..88f2fea
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ger.png
new file mode 100644
index 0000000..a6cfeba
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ita.png
new file mode 100644
index 0000000..ef72aae
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3.png
new file mode 100644
index 0000000..fc0565b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_fre.png
new file mode 100644
index 0000000..343a5cb
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ger.png
new file mode 100644
index 0000000..48e7473
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ita.png
new file mode 100644
index 0000000..9e31f44
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1.png
new file mode 100644
index 0000000..53fd6ec
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_fre.png
new file mode 100644
index 0000000..b9e2477
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ger.png
new file mode 100644
index 0000000..99741a7
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ita.png
new file mode 100644
index 0000000..b01308e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2.png
new file mode 100644
index 0000000..a137393
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_fre.png
new file mode 100644
index 0000000..e2ceb36
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ger.png
new file mode 100644
index 0000000..e02a4d9
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ita.png
new file mode 100644
index 0000000..9fd1eed
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation.png
new file mode 100644
index 0000000..b025493
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_fre.png
new file mode 100644
index 0000000..36ac190
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ger.png
new file mode 100644
index 0000000..7504398
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ita.png
new file mode 100644
index 0000000..1a493b7
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt.png
new file mode 100644
index 0000000..4407423
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_fre.png
new file mode 100644
index 0000000..eeb3c76
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ger.png
new file mode 100644
index 0000000..44f78c5
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ita.png
new file mode 100644
index 0000000..5a22cd0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/iconUp.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/iconUp.png
new file mode 100644
index 0000000..0a2fb6e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/iconUp.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographic_en.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographic_en.png
new file mode 100644
index 0000000..d90abc9
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographic_en.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_fre.png
new file mode 100644
index 0000000..132cd34
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ger.png
new file mode 100644
index 0000000..6579478
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ita.png
new file mode 100644
index 0000000..ea4c1f1
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems.png
new file mode 100644
index 0000000..96d965e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_fre.png
new file mode 100644
index 0000000..be96f2c
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ger.png
new file mode 100644
index 0000000..48b781f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ita.png
new file mode 100644
index 0000000..7e335b7
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount.png
new file mode 100644
index 0000000..4cd905f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_fre.png
new file mode 100644
index 0000000..c6be761
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ger.png
new file mode 100644
index 0000000..606daac
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ita.png
new file mode 100644
index 0000000..8724123
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites.png
new file mode 100644
index 0000000..40c0372
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_fre.png
new file mode 100644
index 0000000..3949204
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ger.png
new file mode 100644
index 0000000..836c25f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ita.png
new file mode 100644
index 0000000..84ea1e0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess.png
new file mode 100644
index 0000000..1056591
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_fre.png
new file mode 100644
index 0000000..9fe2ef5
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ger.png
new file mode 100644
index 0000000..f5e326b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ita.png
new file mode 100644
index 0000000..e3904a1
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon1.png
new file mode 100644
index 0000000..e546754
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon1.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon2.png
new file mode 100644
index 0000000..e274fe4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon2.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans.png
new file mode 100644
index 0000000..557bb11
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_fre.png
new file mode 100644
index 0000000..6e48a13
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ger.png
new file mode 100644
index 0000000..fadfa93
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ita.png
new file mode 100644
index 0000000..426716d
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption.png
new file mode 100644
index 0000000..ea37de3
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_fre.png
new file mode 100644
index 0000000..a0da526
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ger.png
new file mode 100644
index 0000000..ed69283
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ita.png
new file mode 100644
index 0000000..994911b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery.png
new file mode 100644
index 0000000..dc006bb
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_fre.png
new file mode 100644
index 0000000..4f6a1c7
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ger.png
new file mode 100644
index 0000000..d54601d
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ita.png
new file mode 100644
index 0000000..83ee324
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches.png
new file mode 100644
index 0000000..f2988c4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_fre.png
new file mode 100644
index 0000000..7376d31
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ger.png
new file mode 100644
index 0000000..80ad814
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ita.png
new file mode 100644
index 0000000..7d43577
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory.png
new file mode 100644
index 0000000..589306b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistoryIcon.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistoryIcon.png
new file mode 100644
index 0000000..2061e93
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistoryIcon.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_fre.png
new file mode 100644
index 0000000..51eaa60
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ger.png
new file mode 100644
index 0000000..c641e91
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ita.png
new file mode 100644
index 0000000..42bc4bc
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT.png
new file mode 100644
index 0000000..6dba5b2
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_fre.png
new file mode 100644
index 0000000..fcc2e5e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ger.png
new file mode 100644
index 0000000..ec6fc14
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ita.png
new file mode 100644
index 0000000..a643677
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR.png
new file mode 100644
index 0000000..15daa61
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_fre.png
new file mode 100644
index 0000000..11cf8fa
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ger.png
new file mode 100644
index 0000000..d393355
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ita.png
new file mode 100644
index 0000000..0f2d55d
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase.png
new file mode 100644
index 0000000..1610115
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_fre.png
new file mode 100644
index 0000000..371eac4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ger.png
new file mode 100644
index 0000000..024de48
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ita.png
new file mode 100644
index 0000000..3d4e758
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1.png
new file mode 100644
index 0000000..abe7906
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_fre.png
new file mode 100644
index 0000000..8cdc7d3
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ger.png
new file mode 100644
index 0000000..fd61743
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ita.png
new file mode 100644
index 0000000..9af5514
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2.png
new file mode 100644
index 0000000..eb0445b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_fre.png
new file mode 100644
index 0000000..b11ba78
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ger.png
new file mode 100644
index 0000000..3bef7ae
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ita.png
new file mode 100644
index 0000000..530521b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3.png
new file mode 100644
index 0000000..f523219
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_fre.png
new file mode 100644
index 0000000..8e403a3
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ger.png
new file mode 100644
index 0000000..4fce32e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ita.png
new file mode 100644
index 0000000..f3bd621
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_fre.png
new file mode 100644
index 0000000..f87a29f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ger.png
new file mode 100644
index 0000000..eecb53b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ita.png
new file mode 100644
index 0000000..fb0d635
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage.png
new file mode 100644
index 0000000..d210592
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_fre.png
new file mode 100644
index 0000000..8fd5f73
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ger.png
new file mode 100644
index 0000000..fa73d11
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ita.png
new file mode 100644
index 0000000..e67eb71
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly.png
new file mode 100644
index 0000000..a350b8a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_fre.png
new file mode 100644
index 0000000..d82284a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ger.png
new file mode 100644
index 0000000..91ce64c
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ita.png
new file mode 100644
index 0000000..bad6d39
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin.png
new file mode 100644
index 0000000..35d73c0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_fre.png
new file mode 100644
index 0000000..949db61
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ger.png
new file mode 100644
index 0000000..498a6ff
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ita.png
new file mode 100644
index 0000000..9662d63
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch.png
new file mode 100644
index 0000000..af950b4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_fre.png
new file mode 100644
index 0000000..3eadb0f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ger.png
new file mode 100644
index 0000000..e39a7ec
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ita.png
new file mode 100644
index 0000000..1dc57ac
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting.png
new file mode 100644
index 0000000..da58e3f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_fre.png
new file mode 100644
index 0000000..5f2f91f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ger.png
new file mode 100644
index 0000000..5553f86
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ita.png
new file mode 100644
index 0000000..deceec5
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery.png
new file mode 100644
index 0000000..8e58e37
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_fre.png
new file mode 100644
index 0000000..3e4d5ce
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ger.png
new file mode 100644
index 0000000..668af4a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ita.png
new file mode 100644
index 0000000..b24c483
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions.png
new file mode 100644
index 0000000..e65676b
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_fre.png
new file mode 100644
index 0000000..bbbd06c
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ger.png
new file mode 100644
index 0000000..3af5d15
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ita.png
new file mode 100644
index 0000000..5969cf7
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline.png
new file mode 100644
index 0000000..26df829
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnlineIcon.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnlineIcon.png
new file mode 100644
index 0000000..6ef1440
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnlineIcon.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_fre.png
new file mode 100644
index 0000000..cb0ec57
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_fre.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ger.png
new file mode 100644
index 0000000..5fa0e3c
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ger.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ita.png
new file mode 100644
index 0000000..bf8fa06
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ita.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_archival_material.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_archival_material.png
new file mode 100644
index 0000000..e5f49d4
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_archival_material.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_article.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_article.png
new file mode 100644
index 0000000..2dc1a01
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_article.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_audio.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_audio.png
new file mode 100644
index 0000000..4755ba7
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_audio.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book_chapter.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book_chapter.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book_chapter.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cd-rom.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cd-rom.png
new file mode 100644
index 0000000..c85492d
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cd-rom.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cdrom.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cdrom.png
new file mode 100644
index 0000000..c85492d
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cdrom.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_ proceeding.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_ proceeding.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_ proceeding.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_proceeding.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_proceeding.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_proceeding.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_database.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_database.png
new file mode 100644
index 0000000..97768da
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_database.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dataset.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dataset.png
new file mode 100644
index 0000000..22d9ece
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dataset.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dissertation.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dissertation.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dissertation.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ebook.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ebook.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ebook.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ejournal.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ejournal.png
new file mode 100644
index 0000000..e709902
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ejournal.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_government_document.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_government_document.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_government_document.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_image.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_image.png
new file mode 100644
index 0000000..88cfb39
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_image.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_journal.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_journal.png
new file mode 100644
index 0000000..e709902
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_journal.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit.png
new file mode 100644
index 0000000..2b1562f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit_multimedia.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit_multimedia.png
new file mode 100644
index 0000000..2b1562f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit_multimedia.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document_.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document_.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document_.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_manuscript.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_manuscript.png
new file mode 100644
index 0000000..06e9b43
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_manuscript.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_map.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_map.png
new file mode 100644
index 0000000..5e78ef1
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_map.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform.png
new file mode 100644
index 0000000..ca098f0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform_not_used.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform_not_used.png
new file mode 100644
index 0000000..ca098f0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform_not_used.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microforms.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microforms.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microforms.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper.png
new file mode 100644
index 0000000..16408c0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper_article.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper_article.png
new file mode 100644
index 0000000..16408c0
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper_article.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_other.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_other.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_other.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_patent.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_patent.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_patent.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_reference_entry.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_reference_entry.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_reference_entry.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_report.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_report.png
new file mode 100644
index 0000000..3d77eb6
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_report.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_data.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_data.png
new file mode 100644
index 0000000..32c237a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_data.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_dataset.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_dataset.png
new file mode 100644
index 0000000..32c237a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_dataset.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_review.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_review.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_review.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_score.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_score.png
new file mode 100644
index 0000000..858173e
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_score.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_statistical_data.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_statistical_data.png
new file mode 100644
index 0000000..32c237a
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_statistical_data.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_text_resource.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_text_resource.png
new file mode 100644
index 0000000..eb87193
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_text_resource.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_versions.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_versions.png
new file mode 100644
index 0000000..4aa4b7f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_versions.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_video.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_video.png
new file mode 100644
index 0000000..820996d
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_video.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_website.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_website.png
new file mode 100644
index 0000000..d67bf35
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_website.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_de.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_de.png
new file mode 100644
index 0000000..6579478
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_de.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_en.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_en.png
new file mode 100644
index 0000000..372997f
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_en.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_fr.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_fr.png
new file mode 100644
index 0000000..132cd34
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_fr.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_it.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_it.png
new file mode 100644
index 0000000..cbfcfc5
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_it.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/information.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/information.png
new file mode 100644
index 0000000..b9a6e4c
Binary files /dev/null and b/primo-explore/custom/41SLSP_HPH-EPFL/img/information.png differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram.svg
new file mode 100644
index 0000000..de1bc35
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram.svg
@@ -0,0 +1,34 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="504.000000pt" height="504.000000pt" viewBox="0 0 504.000000 504.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.16, written by Peter Selinger 2001-2019
+</metadata>
+<g transform="translate(0.000000,504.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M1550 5034 c-540 -27 -861 -144 -1130 -414 -236 -235 -358 -522 -402
+-940 -19 -179 -19 -2141 0 -2320 44 -418 166 -705 402 -940 235 -236 522 -358
+940 -402 179 -19 2141 -19 2320 0 418 44 705 166 940 402 236 235 358 522 402
+940 19 179 19 2141 0 2320 -44 418 -166 705 -402 940 -230 231 -513 354 -920
+401 -74 8 -396 13 -1095 14 -544 1 -1019 0 -1055 -1z m2070 -473 c128 -13 245
+-36 325 -63 317 -105 518 -339 589 -688 37 -183 41 -309 41 -1290 0 -981 -4
+-1107 -41 -1290 -81 -396 -328 -643 -724 -724 -183 -37 -309 -41 -1290 -41
+-981 0 -1107 4 -1290 41 -399 82 -646 330 -724 729 -33 166 -38 296 -43 1100
+-5 796 3 1203 27 1380 68 491 346 768 840 835 47 7 162 15 255 20 250 12 1907
+4 2035 -9z"/>
+<path d="M3750 4153 c-63 -23 -151 -113 -173 -177 -9 -27 -17 -77 -17 -111 0
+-92 24 -151 89 -216 65 -65 124 -89 216 -89 92 0 151 24 216 89 66 66 89 124
+89 220 0 169 -135 302 -305 300 -38 0 -90 -8 -115 -16z"/>
+<path d="M2355 3809 c-305 -41 -562 -173 -775 -395 -239 -249 -354 -540 -354
+-894 0 -358 116 -648 362 -902 255 -264 560 -392 932 -392 372 0 677 128 932
+392 246 254 362 544 362 902 0 358 -116 648 -362 902 -191 198 -419 322 -685
+373 -101 20 -317 27 -412 14z m400 -489 c276 -88 479 -293 567 -570 20 -65 23
+-95 23 -230 0 -135 -3 -165 -23 -230 -88 -279 -293 -484 -572 -572 -65 -20
+-95 -23 -230 -23 -135 0 -165 3 -230 23 -279 88 -484 293 -572 572 -20 65 -23
+95 -23 230 0 135 3 165 23 230 96 303 338 526 643 590 24 5 107 8 184 6 111
+-3 155 -8 210 -26z"/>
+</g>
+</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram_white.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram_white.svg
new file mode 100644
index 0000000..fc51415
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram_white.svg
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
+ sodipodi:docname="instagram - Copia.svg"
+ id="svg36"
+ preserveAspectRatio="xMidYMid meet"
+ viewBox="0 0 504.000000 504.000000"
+ height="504.000000pt"
+ width="504.000000pt"
+ version="1.0">
+ <defs
+ id="defs40" />
+ <sodipodi:namedview
+ inkscape:current-layer="svg36"
+ inkscape:window-maximized="1"
+ inkscape:window-y="-9"
+ inkscape:window-x="-9"
+ inkscape:cy="198.36145"
+ inkscape:cx="336"
+ inkscape:zoom="1.235119"
+ showgrid="false"
+ id="namedview38"
+ inkscape:window-height="1001"
+ inkscape:window-width="1920"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0"
+ guidetolerance="10"
+ gridtolerance="10"
+ objecttolerance="10"
+ borderopacity="1"
+ bordercolor="#666666"
+ pagecolor="#ffffff" />
+ <metadata
+ id="metadata26">
+Created by potrace 1.16, written by Peter Selinger 2001-2019
+<rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+</rdf:RDF>
+</metadata>
+ <g
+ id="g34"
+ stroke="none"
+ fill="#ffffff"
+ transform="translate(0.000000,504.000000) scale(0.100000,-0.100000)">
+ <path
+ id="path28"
+ d="M1550 5034 c-540 -27 -861 -144 -1130 -414 -236 -235 -358 -522 -402 -940 -19 -179 -19 -2141 0 -2320 44 -418 166 -705 402 -940 235 -236 522 -358 940 -402 179 -19 2141 -19 2320 0 418 44 705 166 940 402 236 235 358 522 402 940 19 179 19 2141 0 2320 -44 418 -166 705 -402 940 -230 231 -513 354 -920 401 -74 8 -396 13 -1095 14 -544 1 -1019 0 -1055 -1z m2070 -473 c128 -13 245 -36 325 -63 317 -105 518 -339 589 -688 37 -183 41 -309 41 -1290 0 -981 -4 -1107 -41 -1290 -81 -396 -328 -643 -724 -724 -183 -37 -309 -41 -1290 -41 -981 0 -1107 4 -1290 41 -399 82 -646 330 -724 729 -33 166 -38 296 -43 1100 -5 796 3 1203 27 1380 68 491 346 768 840 835 47 7 162 15 255 20 250 12 1907 4 2035 -9z" />
+ <path
+ id="path30"
+ d="M3750 4153 c-63 -23 -151 -113 -173 -177 -9 -27 -17 -77 -17 -111 0 -92 24 -151 89 -216 65 -65 124 -89 216 -89 92 0 151 24 216 89 66 66 89 124 89 220 0 169 -135 302 -305 300 -38 0 -90 -8 -115 -16z" />
+ <path
+ id="path32"
+ d="M2355 3809 c-305 -41 -562 -173 -775 -395 -239 -249 -354 -540 -354 -894 0 -358 116 -648 362 -902 255 -264 560 -392 932 -392 372 0 677 128 932 392 246 254 362 544 362 902 0 358 -116 648 -362 902 -191 198 -419 322 -685 373 -101 20 -317 27 -412 14z m400 -489 c276 -88 479 -293 567 -570 20 -65 23 -95 23 -230 0 -135 -3 -165 -23 -230 -88 -279 -293 -484 -572 -572 -65 -20 -95 -23 -230 -23 -135 0 -165 3 -230 23 -279 88 -484 293 -572 572 -20 65 -23 95 -23 230 0 135 3 165 23 230 96 303 338 526 643 590 24 5 107 8 184 6 111 -3 155 -8 210 -26z" />
+ </g>
+</svg>
diff --git a/primo-explore/custom/VU2/img/library-logo.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/library-logo.png
similarity index 100%
rename from primo-explore/custom/VU2/img/library-logo.png
rename to primo-explore/custom/41SLSP_HPH-EPFL/img/library-logo.png
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/linkedin.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/linkedin.svg
new file mode 100644
index 0000000..3d8a056
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/linkedin.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0v24h24v-24h-24zm8 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.397-2.586 7-2.777 7 2.476v6.759z"/></svg>
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/twitter.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/twitter.svg
new file mode 100644
index 0000000..298af2a
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/twitter.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 20.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="White" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 400 400" style="enable-background:new 0 0 400 400;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#FFFFFF;}
+</style>
+<path class="st0" d="M400,200c0,110.5-89.5,200-200,200S0,310.5,0,200S89.5,0,200,0S400,89.5,400,200z M163.4,305.5
+ c88.7,0,137.2-73.5,137.2-137.2c0-2.1,0-4.2-0.1-6.2c9.4-6.8,17.6-15.3,24.1-25c-8.6,3.8-17.9,6.4-27.7,7.6
+ c10-6,17.6-15.4,21.2-26.7c-9.3,5.5-19.6,9.5-30.6,11.7c-8.8-9.4-21.3-15.2-35.2-15.2c-26.6,0-48.2,21.6-48.2,48.2
+ c0,3.8,0.4,7.5,1.3,11c-40.1-2-75.6-21.2-99.4-50.4c-4.1,7.1-6.5,15.4-6.5,24.2c0,16.7,8.5,31.5,21.5,40.1c-7.9-0.2-15.3-2.4-21.8-6
+ c0,0.2,0,0.4,0,0.6c0,23.4,16.6,42.8,38.7,47.3c-4,1.1-8.3,1.7-12.7,1.7c-3.1,0-6.1-0.3-9.1-0.9c6.1,19.2,23.9,33.1,45,33.5
+ c-16.5,12.9-37.3,20.6-59.9,20.6c-3.9,0-7.7-0.2-11.5-0.7C110.8,297.5,136.2,305.5,163.4,305.5"/>
+</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/youtube.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/youtube.svg
new file mode 100644
index 0000000..b1e20ee
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/img/youtube.svg
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
+<g>
+ <g>
+ <path d="M490.24,113.92c-13.888-24.704-28.96-29.248-59.648-30.976C399.936,80.864,322.848,80,256.064,80
+ c-66.912,0-144.032,0.864-174.656,2.912c-30.624,1.76-45.728,6.272-59.744,31.008C7.36,138.592,0,181.088,0,255.904
+ C0,255.968,0,256,0,256c0,0.064,0,0.096,0,0.096v0.064c0,74.496,7.36,117.312,21.664,141.728
+ c14.016,24.704,29.088,29.184,59.712,31.264C112.032,430.944,189.152,432,256.064,432c66.784,0,143.872-1.056,174.56-2.816
+ c30.688-2.08,45.76-6.56,59.648-31.264C504.704,373.504,512,330.688,512,256.192c0,0,0-0.096,0-0.16c0,0,0-0.064,0-0.096
+ C512,181.088,504.704,138.592,490.24,113.92z M192,352V160l160,96L192,352z"/>
+ </g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+<g>
+</g>
+</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/js/README.md
new file mode 100644
index 0000000..8c73521
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/README.md
@@ -0,0 +1,199 @@
+# The Primo New UI Customization Workflow Development Environment
+
+
+##JavaScript documentation
+
+- When you want to add functionality to your Primo installation you will be using Angular Directives.
+
+- To learn more about directives see:
+> https://docs.angularjs.org/guide/directive
+
+- Primo uses external directives from the Angular-material framework:
+> https://material.angularjs.org/latest/
+
+- Those directives are tagged by a prefix : "md-"
+
+- Primo also creates its own directives which are tagged by the "prm-" prefix.
+
+
+Example:
+```
+ <header layout="column" layout-fill class="topbar-wrapper">
+ <prm-topbar>
+ </prm-topbar>
+
+ <prm-search-bar (search-event)="prmSearch.onSearchBarSearchEvent()">
+ </prm-search-bar>
+
+ <md-progress-linear class="header-progress-bar animation-scale-up-down" md-mode="indeterminate" ng-show="prmSearch.searchInProgress">
+ </md-progress-linear>
+
+ </header>
+```
+
+
+- You can see in the example how we use :
+
+1. An HTML5 tag - header
+2. A Primo directive : prm-topbar , prm-search-bar.
+3. An external material design directive : md-progress-bar :
+> https://material.angularjs.org/latest/api/directive/mdProgressLinear
+
+
+
+##Concept
+
+- When You want to add your own JavaScript functionality - you will need to plug-in to placeholder Directives we added to the system.
+- Those directive are added as the last child element for every Primo directive (defined by the `prm-` prefix)
+- The placeholder directives are injected (as input) with the Controller of their parent, thus have access to the data model of the parent directive
+- Use the examples below as starting points for your JavaScript plug-in directives
+- Learn about Angular Directives to better understand the different abilities this workflow offers
+> https://docs.angularjs.org/guide/directive
+
+
+
+##Recipes/Examples:
+
+
+# JavaScript Recipe 1 - a Static `hello world` html Message
+
+
+- Use the `showDirectives` (located in the root directory of this package is the showDirectives.txt file
+, just add the content of the file as a bookmark to your browser) scriplet to identify the `prmSearchBarAfter` directive which you will plugin to
+- Edit the primo-explore/custom/js/custom.js file and add a component declaration for the `prmSearchBarAfter` directive
+
+ ```
+ app.component('prmSearchBarAfter', {
+
+
+ });
+ ```
+- Add the template property with your static message
+
+ ```
+ app.component('prmSearchBarAfter', {
+ template: `<span style="margin-left: 40%;">Hello World</span>`
+
+ });
+ ```
+
+- Save and refresh your browser
+
+
+
+# JavaScript Recipe 2 - a Dynamic Directive
+- Use the `showDirectives` scriplet to identify the `prmSearchBarAfter` directive which you will plugin to
+- Run the following command in your browsers' console tab:
+```
+ angular.reloadWithDebugInfo()
+```
+- Focus on the `prmSearchBarAfter` directive
+- Run the following command in your browsers' console tab:
+```
+ angular.element($0).scope().ctrl
+```
+
+- Review the properties of the directive to decide which data elements can be used, avoid methods/functions as they wont be backwards compatible
+
+- Edit primo-explore/custom/js/custom.js file and add a component declaration for the `prmSearchBarAfter` directive
+
+- Add a binding definition the input parentCtrl
+```
+ bindings: {parentCtrl: '<'},
+```
+- Add a controller definition:
+```
+ controller: 'SearchAfterController',
+```
+- Define a controller with 2 getter methods to return the query and selected scope
+```
+app.controller('SearchBarAfterController', [function () {
+ var vm = this;
+
+ vm.getSelectdScope = getSelectdScope;
+ vm.getQuery = getQuery;
+
+ function getSelectdScope() {
+ return vm.parentCtrl.scopeField;
+ }
+
+ function getQuery() {
+ return vm.parentCtrl.mainSearchField;
+ }
+
+```
+- Edit the directive template to reference the getter methods
+``` <div layout="row" layout-align="center center">
+ <md-card flex="80">
+ <md-card-title>
+ <md-card-title-text><span class="md-headline">
+ This is a demo presenting the ability to display query
+ information below the search box</span>
+ <span class="md-subhead">Query: {{$ctrl.getQuery()}}</span>
+ <span class="md-subhead">Scope: {{$ctrl.getSelectdScope()}}</span>
+ </md-card-title-text>
+ <md-card-title-media>
+ <div class="md-media-sm card-media"></div>
+ </md-card-title-media>
+ </md-card-title>
+ <md-card-actions layout="row" layout-align="end center">
+ <md-button>Action 1</md-button>
+ <md-button>Action 2</md-button>
+ </md-card-actions>
+ </md-card>
+ </div>
+ ```
+- Save and refresh your browser
+
+
+# JavaScript Recipe 3 - Adding the Altmetrics Widget
+- Use the `showDirectives` scriplet to identify the `prmFullViewAfter` directive which you will plugin to
+- Run the following command in your browsers' console tab:
+`angular.reloadWithDebugInfo()`
+- Focus on the `prmFullViewAfter` directive
+- Run the following command in your browsers' console tab:
+`angular.element($0).scope().ctrl`
+
+- Review the properties of the directive to decide which data elements can be used, avoid methods/functions as they wont be backwards compatible
+
+- Edit primo-explore/custom/js/custom.js file and add a component declaration for the `prmFullViewAfter` directive
+
+- Add a binding definition the input parentCtrl
+`bindings: {parentCtrl: '<'},`
+- Add a controller definition:
+`controller: 'FullViewAfterController',`
+- Define a controller that populates the doi and loads the Altmetrics js file
+```app.controller('FullViewAfterController', ['angularLoad', function (angularLoad) {
+ var vm = this;
+ vm.doi = vm.parentCtrl.item.pnx.addata.doi[0] || '';
+
+ vm.$onInit = function () {
+ angularLoad.loadScript('https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js?' + Date.now()).then(function () {
+
+ });
+ };
+ }]);
+```
+- Edit the directive template to add the Altmetrics div and bind the data-doi attribure to the controller
+```<div class="full-view-section-content" ng-if="$ctrl.doi">
+ <div class="section-header" layout="row" layout-align="center center">
+ <h2 class="section-title md-title light-text">
+ Social Popularity Statistics (AltMetrics) :
+ </h2>
+ <md-divider flex>
+ </md-divider>
+ </div>
+ <div class="full-view-section">
+ <div class="full-view-section-content">
+ <div class="section-body" layout="row" layout-align="center center">
+ <div class="spaced-rows" layout="column">
+ <div ng-if="$ctrl.doi" class="altmetric-embed" data-badge-type="medium-donut" data-badge-details="right" data-doi="{{$ctrl.doi}}">
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ ```
+- Save and refresh your browser
+
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js
similarity index 56%
copy from primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js
copy to primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js
index 53443aa..dd90628 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js
@@ -1,16 +1,19 @@
"use strict";
/*
OBJECTIF: Ajouter le lien vers SWITCH edu-ID.
REMARQUES: contient juste les liens vers SWITCH edu-ID et vers
l'application de changement des code-barres.
*/
module.exports = {
bindings: {parentCtrl: '<'},
controllerAs: 'ctrl',
controller: [function() {
var vm = this;
+ console.log(vm);
+ vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');
+
}],
- template: `<div ng-if="ctrl.parentCtrl.tabName=='personalsettings'"><p>{{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">eduid.ch</a></p></div>`
+ template: `<div ng-if="ctrl.parentCtrl.tabName=='personalsettings'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">https://eduid.ch</a></div>`
};
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js
new file mode 100644
index 0000000..1ad5b8a
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js
@@ -0,0 +1,4 @@
+(function () {
+ var account_module = angular.module('accountModule', ['angularLoad']);
+ account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));
+})()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js
new file mode 100644
index 0000000..d070646
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js
@@ -0,0 +1,2 @@
+!function a(s,l,o){function c(t,e){if(!l[t]){if(!s[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(u)return u(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=l[t]={exports:{}};s[t][0].call(i.exports,function(e){return c(s[t][1][e]||e)},i,i.exports,a,s,l,o)}return l[t].exports}for(var u="function"==typeof require&&require,e=0;e<o.length;e++)c(o[e]);return c}({1:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:[function(){var e=this;console.log(e),e.view=e.parentCtrl.accountLinksService.vid.replace(":","-")}],template:'<div ng-if="ctrl.parentCtrl.tabName==\'personalsettings\'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ \'switchEduID\' | customTranslate | trustHtml }} <a href="https://eduid.ch">https://eduid.ch</a></div>'}},{}],2:[function(e,t,r){"use strict";angular.module("accountModule",["angularLoad"]).component("prmAccountLinksAfter",e("./accountlinks.component.js"))},{"./accountlinks.component.js":1}],3:[function(e,t,r){"use strict";angular.module("customTranslateFilter",[]).filter("customTranslate",["$translate",function(r){return function(e){var t={costWarningScan:{fr:'<b><span class="bigfont" style="font-size:20px">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>',en:'<b><span class="bigfont" style="font-size:20px">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>',de:'<b><span class="bigfont" style="font-size:20px">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>',it:'<b><span class="bigfont" style="font-size:20px">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell\'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>'},costWarningScanEPFL:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",en:"<b>Free of charge for EPFL staff and students.</b>",de:"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"},costWarningNetworkLoan:{fr:"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",en:"<b>Free of charge if withdrawal at the EPFL Library.</b>",de:"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",it:"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"},costWarningPEB:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",en:"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",de:"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."},mainTitle:{fr:"Catalogue BEAST",en:"BEAST discovery tool",de:"BEAST Wissensportal",it:"Catalogo BEAST"},subTitle:{fr:"Le point d'accès à toutes les ressources de la Bibliothèque de l'EPFL",en:"The access portal to all the resources of the EPFL Library",de:"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",it:"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"},switchEduID:{fr:"Modifier vos informations personnelles sur",en:"Change your personal data on",de:"Ändern Sie Ihre persönlichen Daten auf",it:"Modifica i tuoi dati personali sul"},illButton:{fr:"Prêt entre bibliotèques (PEB)",en:"Inter Library Loan (ILL)",de:"Fernleihe",it:"Prestito interbibliotecario"}};return["en","fr","it","de"].includes(r.use())?t[e][r.use()]:t[e].fr}}])},{}],4:[function(e,t,r){"use strict";angular.module("trustHtmlFilter",[]).filter("trustHtml",["$sce",function(t){return function(e){return t.trustAsHtml(e)}}])},{}],5:[function(e,t,r){"use strict";t.exports={active:!0,txt:{fr:'<div class="info-symbol" style="text-align:left">\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">SLSP</a></p></div>\n </div>',en:'<div class="info-symbol" style="text-align:left">\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a>: a new and wider network.</p></div>\n </div>',de:'<div class="info-symbol" style="text-align:left">\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">SLSP</a></p></div>\n </div>',it:'<div class="info-symbol" style="text-align:left">\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a></p></div>\n </div>'},begin:"2020-01-04T00:00:00Z",end:"2021-03-31T12:00:00Z"}},{}],6:[function(e,t,r){"use strict";angular.module("homepageModule",["angularLoad"]).component("prmSearchBarAfter",e("./searchbar.component.js"))},{"./searchbar.component.js":7}],7:[function(n,e,t){"use strict";e.exports={bindings:{parentCtrl:"<"},template:'<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',controllerAs:"ctrl",controller:["$translate",function(t){var r=this;if(r.alert=n("./alert.js"),!(r.active=!1)===r.alert.active){var e=Date.now();new Date(r.alert.begin)<e&&e<new Date(r.alert.end)&&(r.active=!0)}r.get_txt=function(){var e=["en","fr","it","de"].includes(t.use())?t.use():"en";return r.active?r.alert.txt[e]:""},r.parentCtrl.showTabsAndScopes=!0}]}},{"./alert.js":5}],8:[function(e,t,r){"use strict";e("./slsp/epfl_custom_slsp.js"),e("./homepage/index.js"),e("./filters/custom_translate.filter.js"),e("./filters/trust_html.filter.js"),e("./account/index.js"),angular.module("viewCustom",["angularLoad","centralCustom","homepageModule","customTranslateFilter","trustHtmlFilter","accountModule"])},{"./account/index.js":2,"./filters/custom_translate.filter.js":3,"./filters/trust_html.filter.js":4,"./homepage/index.js":6,"./slsp/epfl_custom_slsp.js":9}],9:[function(e,t,r){"use strict";var n;(n=angular.module("centralCustom",["angularLoad"])).controller("CourierInfoController",["$filter",function(e){var r=this;Object.defineProperty(r.parentCtrl,"form",{configurable:!0,get:function(){var e=this.getFilteredForm(["label","multiLabel"],!1);if(!r.hasOwnProperty("pickupLocationsListOrdered"))for(var t=0;t<e.length;t++)if("pickupInstitution"==e[t].key){e[t].options.sort(function(e,t){var r=["41SLSP_EPF","41SLSP_EPFL"];return(e=r.indexOf(e.value))==(t=r.indexOf(t.value))?0:e<t?1:-1}),r.pickupLocationsListOrdered=!0}return e}}),r.isEPFL=function(){return!!(r.parentCtrl.requestService&&0<r.parentCtrl.requestService._service["link-to-service"].indexOf("institution=41SLSP_EPF"))},r.linkBase="https://slsp.ch/fees",r.typeFeeAlert=function(){return["almaRequest.header","almaRequestOther.header"].includes(r.parentCtrl.requestHeader)?"costWarningNetworkLoan":["almaDigitization.header","almaDigitizationOther.header","almaItemDigitization.header"].includes(r.parentCtrl.requestHeader)?r.isEPFL()?"costWarningScanEPFL":"costWarningScan":"almaResourceSharing.header"===r.parentCtrl.requestHeader?"costWarningPEB":"costWarningGeneral"},r.getFeeAlert=function(){return e("customTranslate")(r.typeFeeAlert())},r.get_peb_button=function(){for(var e=document.getElementsByTagName("span"),t=0,r=e.length;t<r;t++)if("AlmaResourceSharing"===e[t].getAttribute("translate")&&-1===e[t].parentNode.className.indexOf("greenbutton"))return e[t]},r.click_peb=function(){var e=r.get_peb_button();e?e.click():window.location.href=window.location.origin+"/discovery/blankIll?vid="+r.parentCtrl.vid}}]),n.component("prmRequestAfter",{bindings:{parentCtrl:"<"},controller:"CourierInfoController",template:'<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">\n <img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />\n <div>\n <div ng-if="$ctrl.typeFeeAlert()!=\'costWarningScanEPFL\'">\n <span class="md-subhead">\n <a href="{{ $ctrl.linkBase }}" target="_blank">\n <span translate="customized.fulldisplay.fees"></span>\n </a>\n </span>\n </div>\n <div>\n <span ng-if="$ctrl.typeFeeAlert()!=\'costWarningGeneral\'" ng-bind-html="$ctrl.getFeeAlert() "></span>\n <span ng-if="$ctrl.typeFeeAlert()==\'costWarningScan\'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ \'illButton\' | customTranslate }}</span></button></span>\n </div>\n\n </div>\n </div>'}),n.controller("LibInfoController",[function(){var e=this;e.biblinkText="Library",e.biblinkBase="https://slsp.ch/libraries",e.getLibraryUrl=function(){return e.parentCtrl.loc&&"E02"===e.parentCtrl.loc.location.libraryCode?"https://go.epfl.ch/library":e.biblinkBase},e.view=e.parentCtrl.configurationUtil.vid.replace(":","-"),e.getLibrary=function(){return e.parentCtrl.currLoc?e.parentCtrl.currLoc.location.librarycodeTranslation:""}}]),n.component("prmLocationItemsAfter",{bindings:{parentCtrl:"<"},controller:"LibInfoController",controllerAs:"ctrl",template:'<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'}),n.service("userService",["jwtHelper",function(r){this.isGuest=function(){var e=sessionStorage.getItem("primoExploreJwt");if(!e)return!0;var t=r.decodeToken(e);return!("GUEST"!==t.userGroup?t.userName:"")}}]),n.controller("IllBoxController",["$scope","$location","$translate","userService",function(e,t,r,n){return e.starturl=window.location.href.split("?")[0]+"?vid="+e.$ctrl.parentCtrl.configurationUtil.vid+"&lang="+r.use(),e.usrNme=n.isGuest(),1!=e.usrNme?angular.element(document.querySelector("primo-explore")).removeClass("logged-out"):angular.element(document.querySelector("primo-explore")).addClass("logged-out")}]),n.component("prmTopbarAfter",{bindings:{parentCtrl:"<"},controller:"IllBoxController",template:"<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>"}),n.controller("AlertMsgController",["$scope",function(e){var r=this;r.getAlert=function(){var e=r.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg,t=angular.element(document.querySelector("primo-explore"));return 0<e.length?t.addClass("alert"):t.removeClass("alert")}}]),n.component("almaHowovpAfter",{bindings:{parentCtrl:"<"},controller:"AlertMsgController",template:'<div style="display:none">{{$ctrl.getAlert()}}</div>'})},{}]},{},[8]);
+//# sourceMappingURL=custom.js.map
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js.map b/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js.map
new file mode 100644
index 0000000..0f054e7
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js","primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js","primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js","primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js","primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js","primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js","primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js","primo-explore/custom/41SLSP_HPH-EPFL/js/main.js","primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","vm","this","console","log","view","accountLinksService","vid","replace","template","angular","component","filter","$translate","txt","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","includes","use","$sce","trustAsHtml","active","begin","end","alert","d_now","Date","now","get_txt","lang","showTabsAndScopes","app","$filter","Object","defineProperty","configurable","get","form","getFilteredForm","hasOwnProperty","key","options","sort","b","onTopInstitutions","indexOf","value","isEPFL","requestService","_service","linkBase","typeFeeAlert","requestHeader","getFeeAlert","get_peb_button","allElements","document","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","window","location","href","origin","biblinkText","biblinkBase","getLibraryUrl","loc","libraryCode","configurationUtil","getLibrary","currLoc","librarycodeTranslation","service","jwtHelper","isGuest","jwt","sessionStorage","getItem","decodedToken","decodeToken","userGroup","userName","$scope","$location","userService","starturl","split","$ctrl","usrNme","element","querySelector","removeClass","addClass","getAlert","ga","almaHowToGetitService","reqAlert","_htmlMsg","myEl2"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,WACT,IAAIC,EAAKC,KACTC,QAAQC,IAAIH,GACZA,EAAGI,KAAOJ,EAAGH,WAAWQ,oBAAoBC,IAAIC,QAAQ,IAAK,OAGjEC,SAAA,kSChBqBC,QAAQd,OAAO,gBAAiB,CAAC,gBACvCe,UAAU,uBAAwBzB,EAAQ,uFCF7D,aAoCkCwB,QAAQd,OAAO,wBAAyB,IACjEgB,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAASC,GACZ,IAAIC,EAAO,CACPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,gCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,gCAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMQ,SAASf,EAAWgB,OACtCd,EAAKD,GAAKD,EAAWgB,OAErBd,EAAKD,GAAKG,+BC5FjC,aAYAP,QAAQd,OAAO,kBAAmB,IAC7BgB,OAAO,YAAa,CAAC,OAAQ,SAASkB,GACvC,OAAO,SAAShB,GACZ,OAAOgB,EAAKC,YAAYjB,4CCfhClB,EAAOJ,QAAU,CAACwC,QAAQ,EACzBlB,IACG,CAACG,GAAA,2QAGAC,GAAA,sQAGAC,GAAA,4QAGAC,GAAA,qRAGJa,MAAM,uBACNC,IAAI,6DCdqBxB,QAAQd,OAAO,iBAAkB,CAAC,gBACxCe,UAAU,oBAAqBzB,EAAQ,iFCF3D,aASAU,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBW,SAAU,4FACVV,aAAc,OACdC,WAAY,CAAC,aAAc,SAASa,GAEhC,IAAIZ,EAAKC,KAaT,GANAD,EAAGkC,MAAQjD,EAAQ,gBAGnBe,EAAG+B,QAAS,KAGR/B,EAAGkC,MAAMH,OAAgB,CAGzB,IAAII,EAAQC,KAAKC,MACZ,IAAID,KAAKpC,EAAGkC,MAAMF,OAASG,GAAWA,EAAQ,IAAIC,KAAKpC,EAAGkC,MAAMD,OAEjEjC,EAAG+B,QAAS,GAKpB/B,EAAGsC,QAAU,WACT,IAAIC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAMZ,SAASf,EAAWgB,OAAShB,EAAWgB,MAAM,KAClF,OAAO5B,EAAG+B,OAAS/B,EAAGkC,MAAMrB,IAAI0B,GAAQ,IAQ5CvC,EAAGH,WAAW2C,mBAAoB,wDC3C9CvD,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBAEUwB,QAAQd,OAAO,aAAc,CAAC,cAAe,gBAAiB,iBAAkB,wBAAyB,kBAAmB,gNCZtI,IAGQ8C,GAAAA,EAAMhC,QAAQd,OAAO,gBAAiB,CAAC,iBAgBvCI,WAAW,wBAAyB,CAAC,UAAW,SAAU2C,GAC1D,IAAI1C,EAAKC,KAGT0C,OAAOC,eAAe5C,EAAGH,WAAY,OAAQ,CACzCgD,cAAc,EACdC,IAAK,WAEG,IAAIC,EAAO9C,KAAK+C,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAKhD,EAAGiD,eAAe,8BACnB,IAAK,IAAInE,EAAI,EAAGA,EAAIiE,EAAKtD,OAAQX,IAC7B,GAAmB,qBAAfiE,EAAKjE,GAAGoE,IAA2B,CAQnCH,EAAKjE,GAAGqE,QAAQC,KAPhB,SAAkBjE,EAAGkE,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFAnE,EAAImE,EAAkBC,QAAQpE,EAAEqE,UAChCH,EAAIC,EAAkBC,QAAQF,EAAEG,QACZ,EACbrE,EAAIkE,EAAI,GAAK,IAGxBrD,EAAA,4BAAmC,EAI/C,OAAO+C,KAMnB/C,EAAGyD,OAAS,WACR,SAAOzD,EAAGH,WAAW6D,gBAA+G,EAA7F1D,EAAGH,WAAW6D,eAAeC,SAAS,mBAAmBJ,QAAQ,4BAG5GvD,EAAG4D,SAAW,uBAGd5D,EAAG6D,aAAe,WACd,MAAI,CAAC,qBAAsB,2BAA2BlC,SAAS3B,EAAGH,WAAWiE,eAClE,yBACA,CAAC,0BACA,+BACA,+BACKnC,SAAS3B,EAAGH,WAAWiE,eAC7B9D,EAAGyD,SAAW,sBAAwB,kBACN,+BAAhCzD,EAAGH,WAAWiE,cACd,iBAEA,sBAGf9D,EAAG+D,YAAc,WACb,OAAOrB,EAAQ,kBAARA,CAA2B1C,EAAG6D,iBAIzC7D,EAAGgE,eAAiB,WAEhB,IADA,IAAIC,EAAcC,SAASC,qBAAqB,QACvCrF,EAAI,EAAGH,EAAIsF,EAAYxE,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7CmF,EAAYnF,GAAGsF,aAAa,eACoC,IAAhEH,EAAYnF,GAAGuF,WAAWC,UAAUf,QAAQ,eAE5C,OAAOU,EAAYnF,IAsB/BkB,EAAGuE,UAAY,WACX,IAAIC,EAASxE,EAAGgE,iBAEZQ,EACAA,EAAOC,QAEPC,OAAOC,SAASC,KAAOF,OAAOC,SAASE,OAAS,2BAA6B7E,EAAGH,WAAWS,QAWvGmC,EAAI/B,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,wBACZS,SAAA,m+BAyBJiC,EAAI1C,WAAW,oBAAqB,CAAC,WACjC,IAAIC,EAAKC,KACTD,EAAG8E,YAAc,UACjB9E,EAAG+E,YAAc,4BAEjB/E,EAAGgF,cAAgB,WACf,OAAIhF,EAAGH,WAAWoF,KAAgD,QAAzCjF,EAAGH,WAAWoF,IAAIN,SAASO,YACzC,6BAEAlF,EAAG+E,aAGlB/E,EAAGI,KAAOJ,EAAGH,WAAWsF,kBAAkB7E,IAAIC,QAAQ,IAAK,KAC3DP,EAAGoF,WAAa,WAEZ,OAAOpF,EAAGH,WAAWwF,QAAUrF,EAAGH,WAAWwF,QAAQV,SAASW,uBAAyB,OAK/F7C,EAAI/B,UAAU,wBAAyB,CACnCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAc,OACdU,SAAA,+QAMJiC,EAAI8C,QAAQ,cAAe,CAAC,YAAa,SAAUC,GAC/CvF,KAAKwF,QAAU,WACX,IAAIC,EAAMC,eAAeC,QAAQ,mBACjC,IAAKF,EACD,OAAO,EAEX,IAAIG,EAAeL,EAAUM,YAAYJ,GAEzC,QAD0C,UAA3BG,EAAaE,UAAwBF,EAAaG,SAAW,QAWpFvD,EAAI1C,WAAW,mBAAoB,CAAC,SAAU,YAAa,aAAc,cAAe,SAAUkG,EAAQC,EAAWtF,EAAYuF,GAIzH,OAFAF,EAAOG,SAAW1B,OAAOC,SAASC,KAAKyB,MAAM,KAAK,GAAK,QAAUJ,EAAOK,MAAMzG,WAAWsF,kBAAkB7E,IAAM,SAAWM,EAAWgB,MACvIqE,EAAOM,OAASJ,EAAYV,UACP,GAAjBQ,EAAOM,OAMI9F,QAAQ+F,QAAQtC,SAASuC,cAAc,kBACtCC,YAAY,cANbjG,QAAQ+F,QAAQtC,SAASuC,cAAc,kBACtCE,SAAS,iBAWjClE,EAAI/B,UAAU,iBAAkB,CAC5Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,mBACZS,SAAA,2JAMJiC,EAAI1C,WAAW,qBAAsB,CAAC,SAAU,SAAUkG,GACtD,IAAIjG,EAAKC,KACTD,EAAG4G,SAEH,WACI,IAAIC,EAAK7G,EAAGH,WAAWiH,sBAAsBC,SAASC,SAClDC,EAAQxG,QAAQ+F,QAAQtC,SAASuC,cAAc,kBAEnD,OAAgB,EAAZI,EAAGpH,OACIwH,EAAMN,SAAS,SAKfM,EAAMP,YAAY,aAOrCjE,EAAI/B,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,qBACZS,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n console.log(vm);\r\n vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');\r\n\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">https://eduid.ch</a></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliotèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">SLSP</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">SLSP</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">SLSP</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">SLSP</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs: 'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad', 'centralCustom', 'homepageModule', 'customTranslateFilter', 'trustHtmlFilter', 'accountModule']);\r\n","(function () {\r\n\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', function ($filter) {\r\n var vm = this;\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n if (['almaRequest.header', 'almaRequestOther.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n // console.log(button);\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n template:\r\n `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n <div>\r\n <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n <span class=\"md-subhead\">\r\n <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n <span translate=\"customized.fulldisplay.fees\"></span>\r\n </a>\r\n </span>\r\n </div>\r\n <div>\r\n <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n </div>\r\n\r\n </div>\r\n </div>`\r\n });\r\n\r\n\r\n\r\n\r\n\r\n\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n vm.biblinkBase = \"https:\\/\\/slsp.ch\\/libraries\";\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\";\r\n } else {\r\n return vm.biblinkBase;\r\n }\r\n }\r\n vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n\r\n }]);\r\n\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs: 'ctrl',\r\n template: `<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>`\r\n });\r\n\r\n\r\n\r\n\t// ILL Signin Order\r\n app.service('userService', ['jwtHelper', function (jwtHelper) {\r\n this.isGuest = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return true;\r\n }\r\n var decodedToken = jwtHelper.decodeToken(jwt);\r\n let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';\r\n if (userName) {\r\n return false\r\n }\r\n else {\r\n return true;\r\n }\r\n }\r\n }])\r\n\r\n\r\n app.controller('IllBoxController', ['$scope', '$location', '$translate', 'userService', function ($scope, $location, $translate, userService) {\r\n\r\n $scope.starturl = window.location.href.split('?')[0] + '?vid=' + $scope.$ctrl.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();\r\n $scope.usrNme = userService.isGuest();\r\n if ($scope.usrNme == true) {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.addClass('logged-out')\r\n }\r\n\r\n else {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.removeClass('logged-out');\r\n }\r\n\r\n\r\n }]);\r\n\r\n app.component('prmTopbarAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'IllBoxController',\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n });\r\n\r\n //----------------------------------------------------------------------------------------------\r\n\r\n\r\n app.controller('AlertMsgController', ['$scope', function ($scope) {\r\n var vm = this;\r\n vm.getAlert = getAlert\r\n\r\n function getAlert() {\r\n var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;\r\n var myEl2 = angular.element(document.querySelector('primo-explore'));\r\n\r\n if (ga.length > 0) {\r\n return myEl2.addClass('alert');\r\n\r\n }\r\n else {\r\n\r\n return myEl2.removeClass('alert');\r\n\r\n }\r\n }\r\n\r\n }]);\r\n\r\n app.component('almaHowovpAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'AlertMsgController',\r\n template: '<div style=\"display:none\">{{$ctrl.getAlert()}}</div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js
new file mode 100644
index 0000000..9353f18
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js
@@ -0,0 +1,98 @@
+"use strict";
+
+/***********************/
+/* FILTRE : traduction */
+/***********************/
+
+/*
+ OBJECTIF: traduire des éléments, tant des urls que du texte.
+ UTILISATION:
+ - Dans le template:
+ 1. comme un filtre: {{ clé | customTranslate }}
+ - Dans un controlleur:
+ Même si les filtres sont d'abord prévus pour être utilisés dans le
+ template, on peut les appeler dans les controlleurs.
+ 1. Ajouter le service dans l'en-tête du controlleur
+ 2. Appeler le service avec la fonction $filter
+ EXEMPLE:
+ controller:function($http, $filter){...
+ var traduction = $filter('customTranslate')('cleTrad');
+ ...}
+ CONFIGURATION:
+ L'ajout de traduction se fait à travers des objets. La clé indique le
+ terme à utiliser dans le template ou le controlleur pour ensuite
+ renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels
+ quels. La structure de chaque élément traduit disponible est comme suit:
+ clé1:{
+ fr: traductionFrançaise
+ en: traductionAnglaise
+ },
+ clé2:{
+ fr: traductionFrançaise
+ en: traductionAnglaise
+ }
+*/
+(function () {
+
+ var custom_translate_module = angular.module('customTranslateFilter', [])
+ .filter('customTranslate', ['$translate', function($translate){
+ return function(txt){
+ var trad = {
+ costWarningScan:{
+ fr: "<b><span class=\"bigfont\" style=\"font-size:20px\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>",
+ en: "<b><span class=\"bigfont\" style=\"font-size:20px\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>",
+ de: "<b><span class=\"bigfont\" style=\"font-size:20px\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>",
+ it: "<b><span class=\"bigfont\" style=\"font-size:20px\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>"
+ },
+ costWarningScanEPFL:{
+ fr: "<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",
+ en: "<b>Free of charge for EPFL staff and students.</b>",
+ de: "<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",
+ it: "<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"
+ },
+ costWarningNetworkLoan:{
+ fr: "<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",
+ en: "<b>Free of charge if withdrawal at the EPFL Library.</b>",
+ de: "<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",
+ it: "<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"
+ },
+ costWarningPEB:{
+ fr: "<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",
+ en: "<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",
+ de: "<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",
+ it: "<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."
+ },
+ mainTitle:{
+ fr: "Catalogue BEAST",
+ en: "BEAST discovery tool",
+ de: "BEAST Wissensportal",
+ it: "Catalogo BEAST"
+ },
+ subTitle:{
+ fr: "Le point d\'accès à toutes les ressources de la Bibliothèque de l\'EPFL",
+ en: "The access portal to all the resources of the EPFL Library",
+ de: "Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",
+ it: "Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"
+ },
+ switchEduID:{
+ fr: "Modifier vos informations personnelles sur",
+ en: "Change your personal data on",
+ de: "Ändern Sie Ihre persönlichen Daten auf",
+ it: "Modifica i tuoi dati personali sul"
+ },
+ illButton:{
+ fr: "Prêt entre bibliotèques (PEB)",
+ en: "Inter Library Loan (ILL)",
+ de: "Fernleihe",
+ it: "Prestito interbibliotecario"
+ }
+ };
+ if (['en', 'fr', 'it', 'de'].includes($translate.use())) {
+ return trad[txt][$translate.use()]
+ } else {
+ return trad[txt].fr
+ }
+ };
+ }]);
+
+}) ()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js
new file mode 100644
index 0000000..5399f5e
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js
@@ -0,0 +1,19 @@
+"use strict";
+
+/***********************/
+/* FILTRE : traduction */
+/***********************/
+
+/*
+ OBJECTIF: Permettre des balises html dans les champs.
+ UTILISATION: S'utilise dans une balise comme un filtre.
+ EXEMPLE: {{ variable | trustHtml }}
+*/
+(function () {
+angular.module('trustHtmlFilter', [])
+ .filter('trustHtml', ['$sce', function($sce){
+ return function(txt){
+ return $sce.trustAsHtml(txt);
+ };
+}]);
+}) ()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js
new file mode 100644
index 0000000..18a9bce
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js
@@ -0,0 +1,16 @@
+module.exports = {active: true,
+ txt:
+ {fr: `<div class="info-symbol" style=\"text-align:left\">
+ <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">SLSP</a></p></div>
+ </div>`,
+ en: `<div class="info-symbol" style=\"text-align:left\">
+ <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a>: a new and wider network.</p></div>
+ </div>`,
+ de: `<div class="info-symbol" style=\"text-align:left\">
+ <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">SLSP</a></p></div>
+ </div>`,
+ it: `<div class="info-symbol" style=\"text-align:left\">
+ <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">SLSP</a></p></div>
+ </div>`},
+ begin:"2020-01-04T00:00:00Z",
+ end:"2021-03-31T12:00:00Z"}
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js
similarity index 69%
copy from primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js
copy to primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js
index 37230b3..44d86a7 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js
@@ -1,5 +1,4 @@
(function () {
var homepage_module = angular.module('homepageModule', ['angularLoad']);
- homepage_module.component('prmTopbarAfter', require('./topbar.component.js'));
homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));
})()
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js
similarity index 98%
copy from primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js
copy to primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js
index 42107c6..360c673 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js
@@ -1,54 +1,54 @@
"use strict";
/*
OBJECTIFS:
- Toujours afficher l'onglet pour modifier le scope
- Afficher une alerte si les dates correspondent
UTILISATION:
Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)
*/
module.exports = {
bindings: {parentCtrl: '<'},
template: '<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',
- controllerAs:'ctrl',
+ controllerAs: 'ctrl',
controller: ['$translate', function($translate){
var vm = this;
/********************/
/* MESSAGE D'ALERTE */
/********************/
// récupère le fichier json avec les paramètres de l'alerte
vm.alert = require("./alert.js");
// par défaut, l'alerte n'est pas considérée comme active
vm.active = false;
// Vérifie dans le fichier json si une alerte est prévue
if (vm.alert.active === true){
// Teste si les dates correspondent pour l'affichage de l'alerte
var d_now = Date.now();
if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {
// déclenche l'affichage de l'alerte
vm.active = true;
}
}
// getteur qui retourne le texte en fonction de la langue
vm.get_txt = function(){
var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';
return vm.active ? vm.alert.txt[lang] : "";
}
/*******************/
/* SCOPE PERMANENT */
/*******************/
// Rendre permanent l'affichage des onglets permettant de sélectionnet le scope
vm.parentCtrl.showTabsAndScopes = true;
// console.log(vm.alert);
}
]};
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/topbar.component.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/topbar.component.js
new file mode 100644
index 0000000..3541a67
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/topbar.component.js
@@ -0,0 +1,20 @@
+"use strict";
+
+/*
+ OBJECTIF: afficher l'entête de la page.
+ REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie
+ si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.
+*/
+
+module.exports = {
+ bindings: {parentCtrl: '<'},
+ controllerAs: 'ctrl',
+ controller: ['$location', '$translate', function($location, $translate) {
+ var vm = this;
+ vm.url = window.location.href.split('?')[0] + '?vid=' + vm.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();
+ // console.log(vm);
+ // console.log(vm.url);
+ }],
+ template: `<div class="main-title"><h1><a href="{{ ::ctrl.url }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
+ //templateUrl: './custom/41SLSP_EPF-prod/js/homepage/templates/topbar.html'
+};
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/main.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/main.js
new file mode 100644
index 0000000..7893b42
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/main.js
@@ -0,0 +1,13 @@
+/************************/
+/* List of used modules */
+/************************/
+
+// Import central SLSP package ;
+// import { centralCustom } from './slsp/custom_slsp.js';
+import { centralCustom } from './slsp/epfl_custom_slsp.js';
+import { homepageModule } from './homepage/index.js';
+import { customTranslateFilter } from './filters/custom_translate.filter.js';
+import { trustHtmlFilter } from './filters/trust_html.filter.js';
+import { accountModule } from './account/index.js';
+
+var app = angular.module('viewCustom', ['angularLoad', 'centralCustom', 'homepageModule', 'customTranslateFilter', 'trustHtmlFilter', 'accountModule']);
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/README.md
new file mode 100644
index 0000000..aa122c6
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/README.md
@@ -0,0 +1,9 @@
+# Changes to customization js file from SLSP
+`custom_slsp.js`
+
+This file contains all the changes to the master template provided by SLSP.
+
+Originally the file is named `custom.js` in the customization package.
+
+## List of Changes
+* links to img: l. 42 - replace `custom/41SLSP_NETWORK-CENTRAL_PACKAGE` with `custom/41SLSP_EPF-prod`
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp.js
new file mode 100644
index 0000000..01bf93c
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp.js
@@ -0,0 +1,44 @@
+(function () {
+
+
+ var app = angular.module('centralCustom', ['angularLoad']);
+
+
+ app.controller('CourierInfoController', [function () {
+ var vm = this;
+ vm.linkBase = "https:\/\/slsp.ch\/fees";
+
+ }]);
+
+ app.component('prmRequestAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'CourierInfoController',
+ template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
+ });
+
+
+
+
+
+
+ app.controller('LibInfoController', [function () {
+ var vm = this;
+ vm.getLibrary = getLibrary;
+ vm.biblinkText = "Library";
+ vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
+
+ function getLibrary() {
+ return vm.parentCtrl.currLoc.location.librarycodeTranslation;
+ }
+
+ }]);
+
+ app.component('prmLocationItemsAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'LibInfoController',
+ template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
+ });
+
+
+
+})();
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp_new.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp_new.js
new file mode 100644
index 0000000..adb18e5
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp_new.js
@@ -0,0 +1,118 @@
+(function () {
+
+
+ var app = angular.module('centralCustom', ['angularLoad']);
+
+
+ app.controller('CourierInfoController', [function () {
+ var vm = this;
+ vm.linkBase = "https:\/\/slsp.ch\/fees";
+
+ }]);
+
+ app.component('prmRequestAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'CourierInfoController',
+ template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
+ });
+
+
+
+
+
+
+ app.controller('LibInfoController', [function () {
+ var vm = this;
+ vm.getLibrary = getLibrary;
+ vm.biblinkText = "Library";
+ vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
+
+ function getLibrary() {
+ return vm.parentCtrl.currLoc.location.librarycodeTranslation;
+ }
+
+ }]);
+
+ app.component('prmLocationItemsAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'LibInfoController',
+ template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
+ });
+
+
+
+ // ILL Signin Order
+ app.service('userService', ['jwtHelper', function (jwtHelper) {
+ this.isGuest = function () {
+ var jwt = sessionStorage.getItem('primoExploreJwt');
+ if (!jwt) {
+ return true;
+ }
+ var decodedToken = jwtHelper.decodeToken(jwt);
+ let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
+ if (userName) {
+ return false
+ }
+ else {
+ return true;
+ }
+ }
+ }])
+
+
+ app.controller('IllBoxController', function ($scope, userService) {
+
+ $scope.usrNme = userService.isGuest();
+
+ if ($scope.usrNme == true) {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.addClass('logged-out')
+ }
+
+ else {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.removeClass('logged-out');
+ }
+
+
+ });
+
+ app.component('prmTopbarAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'IllBoxController',
+ template: ''
+ });
+
+ //----------------------------------------------------------------------------------------------
+
+
+ app.controller('AlertMsgController', ['$scope', function ($scope) {
+ var vm = this;
+ vm.getAlert = getAlert
+
+ function getAlert() {
+ var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
+ var myEl2 = angular.element(document.querySelector('primo-explore'));
+
+ if (ga.length > 0) {
+ return myEl2.addClass('alert');
+
+ }
+ else {
+
+ return myEl2.removeClass('alert');
+
+ }
+ }
+
+ }]);
+
+ app.component('almaHowovpAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'AlertMsgController',
+ template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
+ });
+
+
+
+})();
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js
similarity index 69%
copy from primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js
copy to primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js
index f136a25..45d1635 100644
--- a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js
@@ -1,172 +1,252 @@
(function () {
+
var app = angular.module('centralCustom', ['angularLoad']);
+
/*
## VERSION SLSP DU CONTROLLEUR ##
# Ajoute le lien vers les amendes
app.controller('CourierInfoController', [function () {
var vm = this;
vm.linkBase = "https:\/\/slsp.ch\/fees";
}]);
*/
/* ## VERSION EPFL DU CONTROLLEUR ## */
app.controller('CourierInfoController', ['$filter', function ($filter) {
var vm = this;
// Remonte l'EPFL dans la liste des bibliothèques
Object.defineProperty(vm.parentCtrl, "form", {
configurable: !0,
get: function(){
// Mettre l'EPFL en première position
var form = this.getFilteredForm(['label', 'multiLabel'], false);
if (!vm.hasOwnProperty('pickupLocationsListOrdered')){
for (var i = 0; i < form.length; i++){
if (form[i].key == 'pickupInstitution'){
function compare( a, b ){
var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];
a = onTopInstitutions.indexOf(a.value);
b = onTopInstitutions.indexOf(b.value);
if (a == b) {return 0};
return a < b ? 1 : -1;
}
form[i].options.sort(compare);
vm['pickupLocationsListOrdered'] = true;
}
}
}
return form;
}
}
);
// Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné
vm.isEPFL = function() {
return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;
}
vm.linkBase = "https:\/\/slsp.ch\/fees";
// Personnalisation du message des frais
vm.typeFeeAlert = function() {
if (['almaRequest.header', 'almaRequestOther.header'].includes(vm.parentCtrl.requestHeader)) {
return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');
} else if (['almaDigitization.header',
'almaDigitizationOther.header',
'almaItemDigitization.header']
.includes(vm.parentCtrl.requestHeader)) {
return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';
} else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {
return 'costWarningPEB';
} else {
return 'costWarningGeneral';
}
}
vm.getFeeAlert = function() {
return $filter('customTranslate')(vm.typeFeeAlert());
}
// Récupère le bouton PEB de la page afin de simuler un clic dessus
vm.get_peb_button = function(){
var allElements = document.getElementsByTagName('span');
for (var i = 0, n = allElements.length; i < n; i++) {
if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&
allElements[i].parentNode.className.indexOf('greenbutton') === -1)
{
return allElements[i];
}
}
}
// vm.get_request_button = function(){
// var allElements = document.getElementsByTagName('prm-opac');
// if (allElements.length === 0) { return null; }
// var opac = allElements[0];
// if (opac.closest('prm-alma-other-members')) { return null; }
//
// var buttons = opac.getElementsByTagName('span');
// for (var i = 0, n = buttons.length; i < n; i++) {
// if (buttons[i].getAttribute('translate') == 'AlmaRequest')
// {
// return buttons[i];
// }
// }
// }
// Fonction simulant un clic sur le bouton PEB quand on clique sur les
// frais.
vm.click_peb = function(){
var button = vm.get_peb_button();
// console.log(button);
if (button) {
button.click();
} else {
window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;
}
}
// vm.click_request = function(){
// vm.get_request_button().click();
// }
// console.log(vm);
}]);
app.component('prmRequestAfter', {
bindings: { parentCtrl: '<' },
controller: 'CourierInfoController',
template:
`<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">
<img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />
<div>
<div ng-if="$ctrl.typeFeeAlert()!='costWarningScanEPFL'">
<span class="md-subhead">
<a href="{{ $ctrl.linkBase }}" target="_blank">
<span translate="customized.fulldisplay.fees"></span>
</a>
</span>
</div>
<div>
<span ng-if="$ctrl.typeFeeAlert()!='costWarningGeneral'" ng-bind-html="$ctrl.getFeeAlert() "></span>
<span ng-if="$ctrl.typeFeeAlert()=='costWarningScan'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ 'illButton' | customTranslate }}</span></button></span>
</div>
</div>
</div>`
});
- /* Icône avec le nom de la bibliothèque */
+
+
+
+
+
app.controller('LibInfoController', [function () {
var vm = this;
vm.biblinkText = "Library";
- // console.log(vm);
+ vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
+ vm.getLibraryUrl = function() {
+ if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {
+ return "https://go.epfl.ch/library";
+ } else {
+ return vm.biblinkBase;
+ }
+ }
+ vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');
vm.getLibrary = function() {
// return vm.parentCtrl.currLoc.location.librarycodeTranslation;
return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';
}
- vm.getLibraryUrl = function() {
- if (vm.parentCtrl.loc) {
- if (vm.parentCtrl.loc.location.libraryCode==='E02') {
- return "https://go.epfl.ch/library"
- }
+ }]);
+
+ app.component('prmLocationItemsAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'LibInfoController',
+ controllerAs: 'ctrl',
+ template: `<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>`
+ });
+
+
+
+ // ILL Signin Order
+ app.service('userService', ['jwtHelper', function (jwtHelper) {
+ this.isGuest = function () {
+ var jwt = sessionStorage.getItem('primoExploreJwt');
+ if (!jwt) {
+ return true;
+ }
+ var decodedToken = jwtHelper.decodeToken(jwt);
+ let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
+ if (userName) {
+ return false
+ }
+ else {
+ return true;
+ }
+ }
+ }])
+
+
+ app.controller('IllBoxController', ['$scope', '$location', '$translate', 'userService', function ($scope, $location, $translate, userService) {
+
+ $scope.starturl = window.location.href.split('?')[0] + '?vid=' + $scope.$ctrl.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();
+ $scope.usrNme = userService.isGuest();
+ if ($scope.usrNme == true) {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.addClass('logged-out')
+ }
+
+ else {
+ var myEl = angular.element(document.querySelector('primo-explore'));
+ return myEl.removeClass('logged-out');
+ }
+
+
+ }]);
+
+ app.component('prmTopbarAfter', {
+ bindings: { parentCtrl: '<' },
+ controller: 'IllBoxController',
+ template: `<div class="main-title"><h1><a href="{{ starturl }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
+ });
+
+ //----------------------------------------------------------------------------------------------
+
+
+ app.controller('AlertMsgController', ['$scope', function ($scope) {
+ var vm = this;
+ vm.getAlert = getAlert
+
+ function getAlert() {
+ var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
+ var myEl2 = angular.element(document.querySelector('primo-explore'));
+
+ if (ga.length > 0) {
+ return myEl2.addClass('alert');
+
+ }
+ else {
+
+ return myEl2.removeClass('alert');
+
}
- return "https://slsp.ch/libraries";
}
}]);
- app.component('prmLocationItemsAfter', {
+
+ app.component('almaHowovpAfter', {
bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- controllerAs:'ctrl',
- template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'
+ controller: 'AlertMsgController',
+ template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
});
})();
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/showDirectives.txt b/primo-explore/custom/41SLSP_HPH-EPFL/showDirectives.txt
new file mode 100644
index 0000000..9dcbb56
--- /dev/null
+++ b/primo-explore/custom/41SLSP_HPH-EPFL/showDirectives.txt
@@ -0,0 +1 @@
+javascript:(function(){var script=document.createElement("SCRIPT");script.src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';script.type='text/javascript';document.getElementsByTagName("head")[0].appendChild(script);var checkReady=function(callback){if(window.jQuery){callback(jQuery)}else{window.setTimeout(function(){checkReady(callback)},100)}};checkReady(function($){$('primo-explore').find('*[parent-ctrl="ctrl"]').each(function(){$(this).append('<a href="#" title="'+$(this)[0].outerHTML.replace(/</g,'').replace(/>/g,'').replace(/\//g,'').replace(/"/g,'').replace(/parent-ctrl.*/g,'').replace(/-([a-z])/g,function(m,w){return w.toUpperCase()})+'" style="display:block;height:auto;color:black;">Hover for id</a>')})})})();
\ No newline at end of file
diff --git a/primo-explore/custom/VU2/colors.json.txt b/primo-explore/custom/VU2/colors.json.txt
deleted file mode 100644
index bcd7455..0000000
--- a/primo-explore/custom/VU2/colors.json.txt
+++ /dev/null
@@ -1 +0,0 @@
-{"primary":"#B51F1F","secondary":"#525252","backgroundColor":"#ffffff","links":"#464600","warning":"#FFB816","positive":"#34A5A5","negative":"#808080","notice":"#e08303"}
diff --git a/primo-explore/custom/VU2/css/custom1.css b/primo-explore/custom/VU2/css/custom1.css
deleted file mode 100644
index 5ed8dd7..0000000
--- a/primo-explore/custom/VU2/css/custom1.css
+++ /dev/null
@@ -1,6270 +0,0 @@
-prm-logo>div{
- display: none;
-}
-prm-logo-after>div>a.md-button{
- width: 150px;
-}
-@media (max-width: 1100px){
- prm-logo-after>div>a:last-child{
- display: none;
- }
-}
-prm-logo-after>div{
- width:350px;
-}
-
-prm-logo-after>div>a:last-child{
- width: 110px;
- font-size: 35px;
- color: black;
-}
-
-prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
- background-color: #fff !important;
- border-radius: 3px;
-}
-
-#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
- font-size: small !important;
- font-weight: 500 !important;
-}
-
- #mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover, prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover {
- background-color: #ddd !important;
- color: #111;
- }
-
-button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- color: #111;
-}
-
-#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- background: none;
-}
-
-prm-search-bookmark-filter .md-button {
- background-color: #fff !important;
-}
-
-.my-refworks-ctm {
- display: none;
-}
-
-.my-refworks-separator-ctm {
- display: none;
-}
-
-.md-headline {
- font-size: 32px !important;
- line-height: 36px !important;
-}
-
-prm-static > div > md-content > div > div > div.layout-column.flex-xl-30.flex-sm-100.flex-md-60.flex-lg-35.flex-100 > md-card:nth-child(1) > md-card-title > md-card-title-text > h2 {
- font-size: 48px !important;
- line-height: 56px !important;
-}
-
-.list-item-wrapper {
- background-color: #f9f9f9;
-}
-
-md-card.prm-primary-bg.psfooter {
- margin: 16px 0 0 0;
-}
-
-md-card.prm-primary-bg.psfooter-legal {
- margin: 1px 0 0 0;
-}
-
-@media (min-width: 960px) {
-
- md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
- text-align: end;
- }
-}
-
-md-icon.ps_icon, a.ps_link {
- margin-right: 5%;
- text-decoration: underline;
-}
-
-.prm-primary-bg, .md-button.switch-to-advanced {
- color: white !important;
-}
-
-
-md-card-content > p > a, md-card-content > ul > li > a {
- text-decoration: underline !important;
-}
-
- md-card-content > p > a:hover, md-card-content > ul > li > a:hover {
- color: #111;
- }
-
-.resp-container {
- position: relative;
- overflow: hidden;
- padding-top: 56.25%;
-}
-
-.resp-iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-a.ps_link.legal, span.legal {
- font-size: small;
- font-weight: 300;
-}
-
-span.legal {
- color: white;
-}
-
- span.legal > a {
- color: white;
- font-weight: 600;
- }
-
-md-card-content.prm-primary-bg {
- font-weight: 300;
-}
-
-prm-static.md-padding.flex {
- min-width: 100%;
- padding: 0;
-}
-
-@media (min-width: 600px) {
- .prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #fff !important;
- }
-}
-
-.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
- color: #222;
-}
-
-prm-brief-result .item-title span {
- color: #333;
-}
-
- prm-brief-result .item-title span:hover {
- color: #111;
- }
-
-.md-button {
- text-transform: none;
-}
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- background-color: #99d0d0 !important;
- border: none !important;
-}
-
-.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #ddd !important;
-}
-
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- color: #222 !important;
-}
-
-div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
- background-color: #6b6b6b !important;
-}
-
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- box-shadow: none !important;
-}
-
-.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #34A5A5;
-}
-
-.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child {
- color: #34A5A5 !important;
-}
-
-.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #222 !important;
-}
-
-#item-details > div > div {
- margin-bottom: .8em !important;
-}
-
-md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
- background-color: #1f1f1f !important;
-}
-
-h3.list-item-title.md-display-3, prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm {
- color: #fff !important;
-}
-
-.login-header {
- display: none;
-}
-/* primary color hook */
-/* commenttttt*/
-
-
-/*Uncomment the follwoing lines to move facets to the left*/
-
-/*
-prm-search > md-content.md-primoExplore-theme .main {
- display: -webkit-flex; !* Safari *!
- -webkit-flex-flow: row-reverse wrap; !* Safari 6.1+ *!
- display: flex;
- flex-flow: row-reverse wrap;
-
-}
-.screen-gt-sm .sidebar{
- webkit-flex: 0 0 15%;
- flex: 0 0 15%;
-}
-
-*/
-
-
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #240077;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #240077;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #6E2EFF;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #631fff;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #6E2EFF;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #631fff;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #5c15ff;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #550aff;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #550aff !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #4d00fa;
- }
-
-.prm-primary-border {
- border-color: #6E2EFF;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #6E2EFF;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #6E2EFF;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #240077;
-}
-
-.prm-links-important, .text-link {
- color: #240077 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #050011;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-databases-results md-list-item .item-actions .add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-databases-results md-list-item .item-actions .prm-hue1.add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #240077;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(36, 0, 119, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(36, 0, 119, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #050011;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(5, 0, 17, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(36, 0, 119, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #6E2EFF;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #6E2EFF;
-}
-
-/* primary color hook end*/
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #240077;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #240077;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #6E2EFF;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #631fff;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #6E2EFF;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #631fff;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #5c15ff;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #550aff;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #550aff !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #4d00fa;
- }
-
-.prm-primary-border {
- border-color: #6E2EFF;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #6E2EFF;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #6E2EFF;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #240077;
-}
-
-.prm-links-important, .text-link {
- color: #240077 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #050011;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-databases-results md-list-item .item-actions .add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-databases-results md-list-item .item-actions .prm-hue1.add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #240077;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(36, 0, 119, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(36, 0, 119, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #050011;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(5, 0, 17, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(36, 0, 119, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #6E2EFF;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #6E2EFF;
-}
-
-/* primary color hook end*/
-
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #754f00;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #754f00;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #754f00;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #754f00;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #FFC550;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #ffc041;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #FFC550;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #ffc041;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #ffbd37;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #ffb92c;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #ffb92c !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #ffb41d;
- }
-
-.prm-primary-border {
- border-color: #FFC550;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #FFC550;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #FFC550;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #754f00;
-}
-
-.prm-links-important, .text-link {
- color: #754f00 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #0f0a00;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #754f00;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(117, 79, 0, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(117, 79, 0, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(117, 79, 0, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #0f0a00;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(15, 10, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(117, 79, 0, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #FFC550;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #FFC550;
-}
-
-/* primary color hook end*/
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #6f3200;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #6f3200;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #6f3200;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #6f3200;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #B85300;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #a94c00;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #B85300;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #a94c00;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #9f4700;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #944300;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #944300 !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #853c00;
- }
-
-.prm-primary-border {
- border-color: #B85300;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #B85300;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #B85300;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #6f3200;
-}
-
-.prm-links-important, .text-link {
- color: #6f3200 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #090400;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #6f3200;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(111, 50, 0, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(111, 50, 0, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(111, 50, 0, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #090400;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(9, 4, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(111, 50, 0, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #B85300;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #B85300;
-}
-
-/* primary color hook end*/
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #003c64;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #003c64;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #003c64;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #003c64;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #0064a6;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #005b97;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #0064a6;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #005b97;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #00558d;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #004e82;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #004e82 !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #004573;
- }
-
-.prm-primary-border {
- border-color: #0064a6;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #0064a6;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #0064a6;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #003c64;
-}
-
-.prm-links-important, .text-link {
- color: #003c64 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: black;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #003c64;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(0, 60, 100, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(0, 60, 100, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(0, 60, 100, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: black;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(0, 0, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(0, 60, 100, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #0064a6;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #0064a6;
-}
-
-/* primary color hook end*/
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: white;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: white;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: white;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: white;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #B51F1F;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #cfcd00;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #B51F1F;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #cfcd00;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #c5c300;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #bab900;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #bab900 !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #aba900;
- }
-
-.prm-primary-border {
- border-color: #B51F1F;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #B51F1F;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #B51F1F;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: white;
-}
-
-.prm-links-important, .text-link {
- color: white !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: black;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: white;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(70, 70, 0, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(70, 70, 0, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(70, 70, 0, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: black;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(0, 0, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(70, 70, 0, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #B51F1F;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #B51F1F;
-}
-
-/* primary color hook end*/
-
-.top-nav-bar{
- height: 60px !important;
-}
-prm-topbar{
- height: inherit !important;
-}
-prm-main-menu{
- border-bottom: solid rgb(216,216,216) 1px !important;
-}
-prm-topbar-after div{
- background-color: white !important;
-}
diff --git a/primo-explore/custom/VU2/css/logo.css b/primo-explore/custom/VU2/css/logo.css
deleted file mode 100644
index ea8cd16..0000000
--- a/primo-explore/custom/VU2/css/logo.css
+++ /dev/null
@@ -1,20 +0,0 @@
-prm-logo>div{
- display: none;
-}
-prm-logo-after>div>a.md-button{
- width: 150px;
-}
-@media (max-width: 1100px){
- prm-logo-after>div>a:last-child{
- display: none;
- }
-}
-prm-logo-after>div{
- width:350px;
-}
-
-prm-logo-after>div>a:last-child{
- width: 110px;
- font-size: 35px;
- color: black;
-}
diff --git a/primo-explore/custom/VU2/css/main.css b/primo-explore/custom/VU2/css/main.css
deleted file mode 100644
index 2771145..0000000
--- a/primo-explore/custom/VU2/css/main.css
+++ /dev/null
@@ -1,6236 +0,0 @@
-prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
- background-color: #fff !important;
- border-radius: 3px;
-}
-
-#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
- font-size: small !important;
- font-weight: 500 !important;
-}
-
- #mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover, prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover {
- background-color: #ddd !important;
- color: #111;
- }
-
-button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- color: #111;
-}
-
-#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- background: none;
-}
-
-prm-search-bookmark-filter .md-button {
- background-color: #fff !important;
-}
-
-.my-refworks-ctm {
- display: none;
-}
-
-.my-refworks-separator-ctm {
- display: none;
-}
-
-.md-headline {
- font-size: 32px !important;
- line-height: 36px !important;
-}
-
-prm-static > div > md-content > div > div > div.layout-column.flex-xl-30.flex-sm-100.flex-md-60.flex-lg-35.flex-100 > md-card:nth-child(1) > md-card-title > md-card-title-text > h2 {
- font-size: 48px !important;
- line-height: 56px !important;
-}
-
-.list-item-wrapper {
- background-color: #f9f9f9;
-}
-
-md-card.prm-primary-bg.psfooter {
- margin: 16px 0 0 0;
-}
-
-md-card.prm-primary-bg.psfooter-legal {
- margin: 1px 0 0 0;
-}
-
-@media (min-width: 960px) {
-
- md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
- text-align: end;
- }
-}
-
-md-icon.ps_icon, a.ps_link {
- margin-right: 5%;
- text-decoration: underline;
-}
-
-.prm-primary-bg, .md-button.switch-to-advanced {
- color: white !important;
-}
-
-
-md-card-content > p > a, md-card-content > ul > li > a {
- text-decoration: underline !important;
-}
-
- md-card-content > p > a:hover, md-card-content > ul > li > a:hover {
- color: #111;
- }
-
-.resp-container {
- position: relative;
- overflow: hidden;
- padding-top: 56.25%;
-}
-
-.resp-iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-a.ps_link.legal, span.legal {
- font-size: small;
- font-weight: 300;
-}
-
-span.legal {
- color: white;
-}
-
- span.legal > a {
- color: white;
- font-weight: 600;
- }
-
-md-card-content.prm-primary-bg {
- font-weight: 300;
-}
-
-prm-static.md-padding.flex {
- min-width: 100%;
- padding: 0;
-}
-
-@media (min-width: 600px) {
- .prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #fff !important;
- }
-}
-
-.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
- color: #222;
-}
-
-prm-brief-result .item-title span {
- color: #333;
-}
-
- prm-brief-result .item-title span:hover {
- color: #111;
- }
-
-.md-button {
- text-transform: none;
-}
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- background-color: #99d0d0 !important;
- border: none !important;
-}
-
-.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #ddd !important;
-}
-
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- color: #222 !important;
-}
-
-div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
- background-color: #6b6b6b !important;
-}
-
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- box-shadow: none !important;
-}
-
-.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #34A5A5;
-}
-
-.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child {
- color: #34A5A5 !important;
-}
-
-.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #222 !important;
-}
-
-#item-details > div > div {
- margin-bottom: .8em !important;
-}
-
-md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
- background-color: #1f1f1f !important;
-}
-
-h3.list-item-title.md-display-3, prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm {
- color: #fff !important;
-}
-
-.login-header {
- display: none;
-}
-/* primary color hook */
-/* commenttttt*/
-
-
-/*Uncomment the follwoing lines to move facets to the left*/
-
-/*
-prm-search > md-content.md-primoExplore-theme .main {
- display: -webkit-flex; !* Safari *!
- -webkit-flex-flow: row-reverse wrap; !* Safari 6.1+ *!
- display: flex;
- flex-flow: row-reverse wrap;
-
-}
-.screen-gt-sm .sidebar{
- webkit-flex: 0 0 15%;
- flex: 0 0 15%;
-}
-
-*/
-
-
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #240077;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #240077;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #6E2EFF;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #631fff;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #6E2EFF;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #631fff;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #5c15ff;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #550aff;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #550aff !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #4d00fa;
- }
-
-.prm-primary-border {
- border-color: #6E2EFF;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #6E2EFF;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #6E2EFF;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #240077;
-}
-
-.prm-links-important, .text-link {
- color: #240077 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #050011;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-databases-results md-list-item .item-actions .add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-databases-results md-list-item .item-actions .prm-hue1.add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #240077;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(36, 0, 119, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(36, 0, 119, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #050011;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(5, 0, 17, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(36, 0, 119, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #6E2EFF;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #6E2EFF;
-}
-
-/* primary color hook end*/
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #240077;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #240077;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #240077;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #6E2EFF;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #631fff;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #6E2EFF;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #631fff;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #5c15ff;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #550aff;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #550aff !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #4d00fa;
- }
-
-.prm-primary-border {
- border-color: #6E2EFF;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #6E2EFF;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #6E2EFF;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #240077;
-}
-
-.prm-links-important, .text-link {
- color: #240077 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #050011;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-databases-results md-list-item .item-actions .add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-databases-results md-list-item .item-actions .prm-hue1.add-to-favorites, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #240077;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #050011;
- background-color: rgba(36, 0, 119, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(36, 0, 119, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(36, 0, 119, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(36, 0, 119, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #050011;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(5, 0, 17, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(36, 0, 119, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #6E2EFF;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #6E2EFF;
-}
-
-/* primary color hook end*/
-
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #754f00;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #754f00;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #754f00;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #754f00;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #FFC550;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #ffc041;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #FFC550;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #ffc041;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #ffbd37;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #ffb92c;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #ffb92c !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #ffb41d;
- }
-
-.prm-primary-border {
- border-color: #FFC550;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #FFC550;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #FFC550;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #754f00;
-}
-
-.prm-links-important, .text-link {
- color: #754f00 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #0f0a00;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #754f00;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #0f0a00;
- background-color: rgba(117, 79, 0, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(117, 79, 0, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(117, 79, 0, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(117, 79, 0, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #0f0a00;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(15, 10, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(117, 79, 0, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #FFC550;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #FFC550;
-}
-
-/* primary color hook end*/
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #6f3200;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #6f3200;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #6f3200;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #6f3200;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #B85300;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #a94c00;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #B85300;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #a94c00;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #9f4700;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #944300;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #944300 !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #853c00;
- }
-
-.prm-primary-border {
- border-color: #B85300;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #B85300;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #B85300;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #6f3200;
-}
-
-.prm-links-important, .text-link {
- color: #6f3200 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: #090400;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #6f3200;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: #090400;
- background-color: rgba(111, 50, 0, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(111, 50, 0, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(111, 50, 0, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(111, 50, 0, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: #090400;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(9, 4, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(111, 50, 0, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #B85300;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #B85300;
-}
-
-/* primary color hook end*/
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: #003c64;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: #003c64;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #003c64;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: #003c64;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #0064a6;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #005b97;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #0064a6;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #005b97;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #00558d;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #004e82;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #004e82 !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #004573;
- }
-
-.prm-primary-border {
- border-color: #0064a6;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #0064a6;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #0064a6;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: #003c64;
-}
-
-.prm-links-important, .text-link {
- color: #003c64 !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: black;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: #003c64;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 60, 100, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(0, 60, 100, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(0, 60, 100, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(0, 60, 100, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: black;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(0, 0, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(0, 60, 100, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #0064a6;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #0064a6;
-}
-
-/* primary color hook end*/
-
-/* primary color hook */
-/* commenttttt*/
-.md-button {
- color: #3a3a3a;
-}
-
- .md-button:hover:not([disabled]), .md-button:focus:not([disabled]), .md-button.hovered:not([disabled]), .md-button.md-focused:not([disabled]), .md-button._md-focused:not([disabled]) {
- color: #080606;
- background-color: rgba(58, 58, 58, 0.1);
- }
-
-.light-on-dark-dialog .md-button {
- color: white;
-}
-
- .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: white;
- background-color: rgba(255, 255, 255, 0.08);
- }
-
-.md-button.md-primary {
- color: white;
-}
-
- .md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), .md-button.md-primary.hovered:not([disabled]), .md-button.md-primary.md-focused:not([disabled]), .md-button.md-primary._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
-.md-button.md-secondary {
- color: #525252;
-}
-
- .md-button.md-secondary:hover:not([disabled]), .md-button.md-secondary:focus:not([disabled]), .md-button.md-secondary.hovered:not([disabled]), .md-button.md-secondary.md-focused:not([disabled]), .md-button.md-secondary._md-focused:not([disabled]) {
- color: #241a1a;
- background-color: rgba(82, 82, 82, 0.1);
- }
-
-.md-button.button-confirm, .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm prm-icon svg path {
- color: #34A5A5;
-}
-
- .md-button.button-confirm:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .md-button.button-confirm:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .md-button.button-confirm.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .md-button.button-confirm.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .md-button.button-confirm._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]) {
- color: #136060;
- background-color: rgba(52, 165, 165, 0.1);
- }
-
-.light-on-dark-dialog .md-button.button-confirm, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span, .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span, .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path, .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-confirm:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:hover:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:hover:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:hover:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:hover:not([disabled]), .light-on-dark-dialog .md-button.button-confirm:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span:focus:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span:focus:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path:focus:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path:focus:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.hovered:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.hovered:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.hovered:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-confirm.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span.md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span.md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path.md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-confirm._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon + span._md-focused:not([disabled]), .service-form-static-panel button.button-confirm .light-on-dark-dialog prm-icon + span._md-focused:not([disabled]), .light-on-dark-dialog .service-form-static-panel button.button-confirm prm-icon svg path._md-focused:not([disabled]), .service-form-static-panel button.button-confirm prm-icon svg .light-on-dark-dialog path._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-notice {
- color: #e08303;
-}
-
- .md-button.button-notice:hover:not([disabled]), .md-button.button-notice:focus:not([disabled]), .md-button.button-notice.hovered:not([disabled]), .md-button.button-notice.md-focused:not([disabled]), .md-button.button-notice._md-focused:not([disabled]) {
- color: #7d4800;
- background-color: rgba(224, 131, 3, 0.1);
- }
-
-.md-button.button-prompt {
- color: #FFFCC4;
-}
-
- .md-button.button-prompt:hover:not([disabled]), .md-button.button-prompt:focus:not([disabled]), .md-button.button-prompt.hovered:not([disabled]), .md-button.button-prompt.md-focused:not([disabled]), .md-button.button-prompt._md-focused:not([disabled]) {
- color: #fff75e;
- background-color: rgba(255, 252, 196, 0.1);
- }
-
-.md-button.button-warn {
- color: #FFB816;
-}
-
- .md-button.button-warn:hover:not([disabled]), .md-button.button-warn:focus:not([disabled]), .md-button.button-warn.hovered:not([disabled]), .md-button.button-warn.md-focused:not([disabled]), .md-button.button-warn._md-focused:not([disabled]) {
- color: #af7a00;
- background-color: rgba(255, 184, 22, 0.1);
- }
-
-.md-button.button-link, md-grid-tile .tile-content > .md-button,
-.tiles-grid-tile .tile-content > .md-button {
- color: white;
- box-shadow: none;
-}
-
- .md-button.button-link:hover:not([disabled]), md-grid-tile .tile-content > .md-button:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), md-grid-tile .tile-content > .md-button:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button:focus:not([disabled]), .md-button.button-link.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.hovered:not([disabled]), .md-button.button-link.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.md-focused:not([disabled]), .md-button.button-link._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .md-button.button-link.link-alt-color, .section-title prm-icon.md-button.button-link, .section-title md-grid-tile .tile-content > prm-icon.md-button, md-grid-tile .section-title .tile-content > prm-icon.md-button,
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button, .tiles-grid-tile .section-title .tile-content > prm-icon.md-button, md-grid-tile .tile-content > .md-button.link-alt-color,
- .tiles-grid-tile .tile-content > .md-button.link-alt-color {
- color: #100e0e;
- }
-
- .md-button.button-link.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-link:hover:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:hover:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:hover:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:hover:not([disabled]), .md-button.button-link.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-link:focus:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button:focus:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button:focus:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color:focus:not([disabled]), .md-button.button-link.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-link.hovered:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.hovered:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.hovered:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.hovered:not([disabled]), .md-button.button-link.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-link.md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button.md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button.md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color.md-focused:not([disabled]), .md-button.button-link.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-link._md-focused:not([disabled]), .section-title md-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]),
- .section-title .tiles-grid-tile .tile-content > prm-icon.md-button._md-focused:not([disabled]), .tiles-grid-tile .section-title .tile-content > prm-icon.md-button._md-focused:not([disabled]), md-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]),
- .tiles-grid-tile .tile-content > .md-button.link-alt-color._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(16, 14, 14, 0.1);
- }
-
-.md-button.button-large {
- font-size: 1.2em;
- padding: .25em .75em;
-}
-
- .md-button.button-large.button-with-icon {
- padding-left: .5em;
- }
-
- .md-button.button-large.button-with-icon > prm-icon + span {
- padding-right: 0;
- }
-
-.md-button.button-zero-radius {
- border-radius: 0;
-}
-
-.md-button.button-no-hover:hover {
- background-color: transparent;
-}
-
-.md-button.md-icon-button.square-button {
- border-radius: 0;
-}
-
-.md-button.md-icon-button.icon-button-large {
- height: 50px;
- width: 50px;
- min-height: 50px;
- min-width: 50px;
-}
-
- .md-button.md-icon-button.icon-button-large md-icon {
- height: 40px;
- width: 40px;
- min-height: 40px;
- min-width: 40px;
- }
-
- .md-button.md-icon-button.icon-button-large prm-icon {
- position: relative;
- left: -4px;
- top: -3px;
- }
-
-.md-button.button-with-icon > prm-icon {
- display: inline-block;
-}
-
- .md-button.button-with-icon > prm-icon md-icon {
- position: relative;
- top: -2px;
- }
-
- .md-button.button-with-icon > prm-icon + span {
- display: inline-block;
- margin-left: 3px;
- padding-right: 0.5em;
- }
-
-[dir=rtl] .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-.md-button.button-large .md-button.button-with-icon > prm-icon + span {
- padding-right: 0;
-}
-
-.md-button.button-with-icon > span + prm-icon {
- margin-right: 0;
-}
-
- .md-button.button-with-icon > span + prm-icon md-icon {
- margin-left: 5px;
- margin-right: 0;
- }
-
-.md-button.icon-button-with-text, prm-action-list > md-nav-bar .md-nav-item .md-button, .saved-query-list > md-nav-bar .md-nav-item .md-button {
- font-size: 10px;
- line-height: 14px;
- font-weight: 600;
- letter-spacing: 0.03em;
-}
-
-.md-button.outline-button {
- border: 1px solid;
-}
-
-.md-button.md-raised:not([disabled]) {
- box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.26);
-}
-
-.md-button[disabled="disabled"] {
- color: #ccc !important;
- cursor: not-allowed;
-}
-
-.md-button.button-as-link, .bar prm-authentication .md-button {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: .3em .35em;
- line-height: 1em;
- min-height: 0;
- margin: 0 .25em;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: white;
-}
-
- .md-button.button-as-link:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), .md-button.button-as-link:focus:not([disabled]), .bar prm-authentication .md-button:focus:not([disabled]), .md-button.button-as-link.hovered:not([disabled]), .bar prm-authentication .md-button.hovered:not([disabled]), .md-button.button-as-link.md-focused:not([disabled]), .bar prm-authentication .md-button.md-focused:not([disabled]), .md-button.button-as-link._md-focused:not([disabled]), .bar prm-authentication .md-button._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .md-button.button-as-link.link-alt-color, .bar prm-authentication .md-button.link-alt-color, .bar prm-authentication .section-title prm-icon.md-button, .section-title .bar prm-authentication prm-icon.md-button, .section-title prm-icon.md-button.button-as-link, prm-gallery-collection .collection-folder .item-actions button, prm-gallery-collection .collection-folder .item-actions .md-button, .is-gallery-view prm-gallery-item .collection-element .item-actions button, .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button, .is-grid-view prm-gallery-item .collection-element .item-actions button, .is-grid-view prm-gallery-item .collection-element .item-actions .md-button {
- color: black;
- }
-
- .md-button.button-as-link.link-alt-color:hover:not([disabled]), .bar prm-authentication .md-button.link-alt-color:hover:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:hover:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:hover:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:hover:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:hover:not([disabled]), .md-button.button-as-link.link-alt-color:focus:not([disabled]), .bar prm-authentication .md-button.link-alt-color:focus:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button:focus:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions button:focus:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button:focus:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-button:focus:not([disabled]), .md-button.button-as-link.link-alt-color.hovered:not([disabled]), .bar prm-authentication .md-button.link-alt-color.hovered:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.hovered:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.hovered:not([disabled]), prm-gallery-collection .collection-folder .item-actions .hovered.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.hovered:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .hovered.md-button:not([disabled]), .md-button.button-as-link.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color.md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button.md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button.md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions .md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button.md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions .md-focused.md-button:not([disabled]), .md-button.button-as-link.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .md-button.link-alt-color._md-focused:not([disabled]), .bar prm-authentication .section-title prm-icon.md-button._md-focused:not([disabled]), .section-title .bar prm-authentication prm-icon.md-button._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions button._md-focused:not([disabled]), prm-gallery-collection .collection-folder .item-actions ._md-focused.md-button:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-gallery-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions button._md-focused:not([disabled]), .is-grid-view prm-gallery-item .collection-element .item-actions ._md-focused.md-button:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link.button-external-link span, .bar prm-authentication .md-button.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .bar prm-authentication .md-button, .bar prm-authentication .light-on-dark-dialog .md-button {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link:hover:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:hover:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link:focus:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button:focus:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.hovered:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.hovered:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link.md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button.md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link._md-focused:not([disabled]), .light-on-dark-dialog .bar prm-authentication .md-button._md-focused:not([disabled]), .bar prm-authentication .light-on-dark-dialog .md-button._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.button-as-link-mobile {
- text-transform: none;
- font-size: 1em;
- min-width: 0;
- padding: 0;
- line-height: 1em;
- min-height: 0;
- overflow: visible;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- letter-spacing: 0;
- color: white;
-}
-
- .md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.link-alt-color, .section-title prm-icon.md-button.button-as-link-mobile {
- color: black;
- }
-
- .md-button.button-as-link-mobile.link-alt-color:hover:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:hover:not([disabled]), .md-button.button-as-link-mobile.link-alt-color:focus:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile:focus:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.hovered:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.hovered:not([disabled]), .md-button.button-as-link-mobile.link-alt-color.md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile.md-focused:not([disabled]), .md-button.button-as-link-mobile.link-alt-color._md-focused:not([disabled]), .section-title prm-icon.md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(0, 0, 0, 0.1);
- }
-
- .md-button.button-as-link-mobile.button-external-link span {
- position: relative;
- top: 1px;
- }
-
-.light-on-dark-dialog .md-button.button-as-link-mobile {
- color: #33FFFF;
-}
-
- .light-on-dark-dialog .md-button.button-as-link-mobile:hover:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile:focus:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.hovered:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile.md-focused:not([disabled]), .light-on-dark-dialog .md-button.button-as-link-mobile._md-focused:not([disabled]) {
- color: #00cccc;
- background-color: rgba(51, 255, 255, 0.1);
- }
-
-.md-button.flex-button {
- display: -ms-flexbox;
- display: flex;
-}
-
-.md-button.inline-button {
- display: inline;
-}
-
- .md-button.inline-button.flex-button {
- display: -ms-inline-flexbox;
- display: inline-flex;
- }
-
-.md-button.md-mini {
- line-height: 40px;
- width: 40px;
- height: 40px;
- min-width: 40px;
-}
-
-.md-button.multi-line-button, .__sm prm-search-bar .search-switch-buttons .md-button, .__sm prm-atoz-search-bar .search-switch-buttons .md-button, .__sm prm-browse-search-bar .search-switch-buttons .md-button, .__sm prm-tags-search-bar .search-switch-buttons .md-button, .__sm prm-newspapers-search-bar .search-switch-buttons .md-button {
- white-space: normal;
- line-height: 1.2em;
- padding: .5em;
-}
-
-.md-button.button-full-height {
- height: 100%;
-}
-
-.md-button.neutralized-button {
- max-width: none;
- max-height: none;
- text-transform: none;
- padding: 0;
- margin: 0;
- line-height: inherit;
- min-height: 0;
- min-width: 0;
- white-space: normal;
- text-align: inherit;
- overflow: visible;
- font-size: 1em;
- border-radius: 0;
-}
-
- .md-button.neutralized-button:hover {
- background-color: transparent;
- }
-
-.md-button.arrow-link-button .button-content {
- line-height: 1.4em;
-}
-
-.md-button.arrow-link-button:hover, .md-button.arrow-link-button:focus {
- background: transparent;
-}
-
-.md-button.arrow-link-button [link-arrow] {
- position: static;
-}
-
-.md-button .md-ripple-container + .md-ripple-container {
- display: none;
-}
-
-.md-button.button-with-menu-arrow {
- display: -ms-flexbox;
- display: flex;
-}
-
- .md-button.button-with-menu-arrow .menu-arrow {
- margin-left: 8px;
- }
-
-[dir="rtl"] .md-button.button-with-menu-arrow .menu-arrow {
- margin-right: 8px;
-}
-
-.buttons-group .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:first-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-[dir="rtl"] .buttons-group div:last-child .md-button {
- box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 0 rgba(0, 0, 0, 0.1);
-}
-
-.prm-primary-color, .request-form md-input-container label,
-.request-form md-input-container label:not(.md-no-float):not(._md-container-ignore),
-.request-form md-input-container md-select .md-select-value.md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder,
-.request-form md-input-container md-select ._md-select-value._md-select-placeholder,
-.request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #B51F1F;
-}
-
- .prm-primary-color.prm-hue1, .request-form md-input-container label.prm-hue1,
- .request-form md-input-container label.prm-hue1:not(.md-no-float):not(._md-container-ignore),
- .request-form md-input-container md-select .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1.md-select-value.md-select-placeholder,
- .request-form md-input-container md-select .prm-hue1._md-select-value._md-select-placeholder,
- .request-form md-input-container .md-input-container-dummy > .md-select-dummy .prm-hue1._md-select-value._md-select-placeholder, .result-item-actions .prm-hue1.md-icon-button, .result-item-actions .prm-hue1.more-options-button, prm-add-query-to-saved-searches .prm-hue1.custom-button, prm-pre-filters md-input-container.prm-hue1.is-active, .md-autocomplete-suggestions .prm-hue1.suggestion-scope, md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-active:not([disabled]), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-tab-content .tab-content-header md-input-container md-select-value .prm-hue1.md-text {
- color: #cfcd00;
- }
-
-.prm-primary-bg, prm-spinner.overlay-cover.light-on-dark:after, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-collection-gallery-header .collection-header-inner, prm-tree-nav prm-spinner .diamond {
- color: white;
- background-color: #B51F1F;
-}
-
- .prm-primary-bg.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-topbar .top-nav-bar, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #cfcd00;
- }
-
- .prm-primary-bg.prm-hue2, prm-spinner.prm-hue2.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-collection-gallery-header .prm-hue2.collection-header-inner, prm-tree-nav prm-spinner .prm-hue2.diamond, md-backdrop.md-opaque {
- background-color: #c5c300;
- }
-
- .prm-primary-bg.prm-hue3, prm-spinner.prm-hue3.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-collection-gallery-header .prm-hue3.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3.diamond {
- background-color: #bab900;
- }
-
- .prm-primary-bg.prm-hue3-important, prm-spinner.prm-hue3-important.overlay-cover.light-on-dark:after, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger .md-fab-toolbar-background, prm-user-area md-fab-toolbar.md-is-open md-fab-trigger ._md-fab-toolbar-background, prm-search-bar.prm-hue3-important, prm-atoz-search-bar.prm-hue3-important, prm-browse-search-bar.prm-hue3-important, prm-tags-search-bar.prm-hue3-important, prm-newspapers-search-bar.prm-hue3-important, prm-collection-gallery-header .prm-hue3-important.collection-header-inner, prm-tree-nav prm-spinner .prm-hue3-important.diamond {
- background-color: #bab900 !important;
- }
-
- .prm-primary-bg.prm-hue4, prm-spinner.prm-hue4.overlay-cover.light-on-dark:after, prm-search-bar.prm-hue4, prm-atoz-search-bar.prm-hue4, prm-browse-search-bar.prm-hue4, prm-tags-search-bar.prm-hue4, prm-newspapers-search-bar.prm-hue4, prm-collection-gallery-header .prm-hue4.collection-header-inner, prm-tree-nav prm-spinner .prm-hue4.diamond {
- background-color: #aba900;
- }
-
-.prm-primary-border {
- border-color: #B51F1F;
-}
-
- .prm-primary-border.prm-hue1 {
- border-color: #B51F1F;
- }
-
- .prm-primary-border.prm-hue2 {
- border-color: #B51F1F;
- }
-
-.prm-secondary-color, prm-search-bookmark-filter .md-button, prm-topbar .top-nav-bar {
- color: #525252;
-}
-
- .prm-secondary-color.prm-hue1, .link-alt-color, .section-title prm-icon, .result-item-actions .pin-button, prm-add-query-to-saved-searches .custom-button.pin-button, prm-search-bookmark-filter .prm-hue1.md-button, prm-topbar .prm-hue1.top-nav-bar, prm-pre-filters md-input-container.is-active :focus, prm-account-overview .institutions-list md-list-item.is-selected .institution-name, prm-recomendation-item .media-on-hover .pin-button, prm-tree-nav md-list md-list-item .md-button.branch-name.is-selected, prm-tree-nav md-list md-list-item md-button.branch-name.is-selected {
- color: #100e0e;
- }
-
- .prm-secondary-color.prm-hue2, prm-search-bookmark-filter .prm-hue2.md-button, prm-topbar .prm-hue2.top-nav-bar {
- color: #1f1f1f;
- }
-
- .prm-secondary-color.prm-hue3, prm-search-bookmark-filter .prm-hue3.md-button, prm-topbar .prm-hue3.top-nav-bar {
- color: black;
- }
-
- .prm-secondary-color.prm-hue4, prm-search-bookmark-filter .prm-hue4.md-button, prm-topbar .prm-hue4.top-nav-bar, prm-user-area-expandable .md-button.user-button {
- color: #4d1017;
- }
-
-.prm-secondary-bg, md-progress-linear[md-mode=indeterminate].header-progress-bar .md-bar {
- background-color: #525252;
-}
-
- .prm-secondary-bg.prm-hue1, .new-result-item .list-item-count, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue1.md-bar, md-tabs md-ink-bar, md-input-container:after, prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips ._md-chip-input-container:after, .md-input-color-underline, md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value:after, md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value:after, md-radio-button.md-checked .md-on, md-radio-button.md-checked ._md-on {
- background-color: #100e0e;
- }
-
- .prm-secondary-bg.prm-hue2, .dark-toolbar prm-pre-filters md-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips .md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list .md-chips ._md-chip-input-container:after, prm-tags-list .md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips .md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters .md-chip-input-container:after, .dark-toolbar prm-pre-filters prm-tags-list md-chips ._md-chip-input-container:after, prm-tags-list md-chips .dark-toolbar prm-pre-filters ._md-chip-input-container:after, md-progress-linear[md-mode=indeterminate].header-progress-bar .prm-hue2.md-bar, md-checkbox.md-checked .md-icon,
- md-checkbox.md-checked ._md-icon, md-option.prm-select-checkbox._md-checkbox-enabled[selected] .md-icon,
- md-option.prm-select-checkbox._md-checkbox-enabled[selected] ._md-icon, md-radio-group.layout-row.md-focused md-radio-button.md-checked :before {
- background-color: #1f1f1f;
- }
-
-.prm-secondary-border {
- border-color: #525252;
-}
-
- .prm-secondary-border.prm-hue1, md-select:focus .md-select-value, .md-input-container-dummy > .md-select-dummy:focus .md-select-value,
- .md-input-focused md-select .md-select-value,
- .md-input-focused .md-input-container-dummy > .md-select-dummy .md-select-value,
- md-select:not([disabled]):focus .md-select-value,
- .md-input-focused md-select:not([disabled]) .md-select-value, md-radio-button.md-checked .md-off, md-radio-button.md-checked ._md-off {
- border-color: #100e0e;
- }
-
-.prm-background, html, body, prm-search .ui-blocker, prm-featured-results .horizontal-content-container .horizontal-content-control, prm-search-bar .simple-search-wrapper .search-options:after, prm-atoz-search-bar .simple-search-wrapper .search-options:after, prm-browse-search-bar .simple-search-wrapper .search-options:after, prm-tags-search-bar .simple-search-wrapper .search-options:after, prm-newspapers-search-bar .simple-search-wrapper .search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider, prm-browse-search-bar .simple-search-wrapper .search-options md-divider, prm-tags-search-bar .simple-search-wrapper .search-options md-divider, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider, .prm-view-overlay-inner, .__xs prm-facet,
-.__sm prm-facet, .__sm .sidebar,
-.__xs .sidebar, .available-facets .section-content .md-chips .md-chip .md-button:before, .multiselect-submit .multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .pin-button, prm-full-view-cont .recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon, prm-databases-categorize .sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider, md-dialog md-toolbar:not(.md-menu-toolbar), md-card .card-content-block {
- background-color: #e9e9e9;
- border-color: #e1e1e1;
-}
-
- .prm-background.prm-hue1, html.prm-hue1, body.prm-hue1, .prm-horizontal-content .horizontal-content-control, .prm-horizontal-content .horizontal-content-control:hover, prm-search .prm-hue1.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue1.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue1.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue1, .prm-hue1.prm-view-overlay-inner, .full-view-inner-container + .full-view-aside:before, .__xs prm-facet.prm-hue1,
- .__sm prm-facet.prm-hue1, .__sm .prm-hue1.sidebar,
- .__xs .prm-hue1.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue1.md-button:before, .multiselect-submit .prm-hue1.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue1.pin-button, prm-full-view-cont .prm-hue1.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue1, prm-databases-categorize .prm-hue1.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue1, md-dialog md-toolbar.prm-hue1:not(.md-menu-toolbar), .default-tabs[md-border-bottom] > md-tabs-wrapper, md-card .prm-hue1.card-content-block, md-card .card-divider, md-toolbar.default-toolbar,
- md-toolbar.md-primoExplore-theme.default-toolbar,
- md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- background-color: #f7f7f7;
- border-color: #d5d5d5;
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue2, html.prm-hue2, body.prm-hue2, .line-clamp-1:after, .line-clamp-2:after, .line-clamp-3:after, .line-clamp-4:after, .line-clamp-5:after, .prm-horizontal-content .horizontal-content-item md-card > .md-button, prm-search-result-list .results-header,
- prm-search-result-list .results-footer, prm-search .prm-hue2.ui-blocker, prm-featured-result-item md-card md-card-title, prm-featured-results .horizontal-content-container .prm-hue2.horizontal-content-control, prm-search-result-tool-bar .floated-max-results-message, .list-item-wrapper, prm-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue2.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue2, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, .prm-hue2.prm-view-overlay-inner, .prm-full-view-dialog, .full-view-inner-container, prm-ngrs-results-button md-card, .__xs prm-facet.prm-hue2,
- .__sm prm-facet.prm-hue2, .__sm .prm-hue2.sidebar,
- .__xs .prm-hue2.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue2.md-button:before, .multiselect-submit .prm-hue2.multiselect-submit-inner, .__xs prm-full-view-cont .recommendations-wrapper,
- .__sm prm-full-view-cont .recommendations-wrapper, prm-recomendation-item .media-on-hover .pin-button, prm-recomendation-item .media-on-hover .pin-button:hover, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue2.pin-button, .recommendations-title:after, prm-full-view-cont .prm-hue2.recommendations-title:after, .__xs prm-full-view-cont .recommendations-title:after,
- .__sm prm-full-view-cont .recommendations-title:after, .recommendations-title prm-icon, prm-full-view-cont .recommendations-title prm-icon.prm-hue2, .__xs prm-full-view-cont .recommendations-title prm-icon,
- .__sm prm-full-view-cont .recommendations-title prm-icon, prm-gallery-collection .collection-folder, prm-gallery-collection .collection-folder .item-meta, prm-gallery-collection .collection-folder h3 span, prm-gallery-item .collection-element, prm-gallery-item .collection-element .resource-type, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-databases-categorize .prm-hue2.sticking-wrapper, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner, prm-resource-recommender md-card, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue2, md-dialog md-toolbar.prm-hue2:not(.md-menu-toolbar), md-grid-tile,
- .tiles-grid-tile, md-grid-tile md-list prm-spinner.overlay-cover:after,
- md-grid-tile .tile-content prm-spinner.overlay-cover:after,
- .tiles-grid-tile md-list prm-spinner.overlay-cover:after,
- .tiles-grid-tile .tile-content prm-spinner.overlay-cover:after, md-card.default-card, prm-featured-result-item md-card, md-card .prm-hue2.card-content-block, md-list.prm-list.prm-linkable-list-items md-list-item ._md-list-item-inner {
- background-color: #f3f3f3;
- }
-
- .prm-background.prm-hue3, html.prm-hue3, body.prm-hue3, prm-search .prm-hue3.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue3.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue3.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue3, .prm-hue3.prm-view-overlay-inner, .__xs prm-facet.prm-hue3,
- .__sm prm-facet.prm-hue3, .__sm .prm-hue3.sidebar,
- .__xs .prm-hue3.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue3.md-button:before, .multiselect-submit .prm-hue3.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue3.pin-button, prm-full-view-cont .prm-hue3.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue3, prm-databases-categorize .prm-hue3.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue3, md-dialog md-toolbar.prm-hue3:not(.md-menu-toolbar), md-card .prm-hue3.card-content-block {
- background-color: white;
- }
-
- .prm-background.prm-hue4, html.prm-hue4, body.prm-hue4, prm-search .prm-hue4.ui-blocker, prm-featured-result-item.dummy-item md-card, prm-featured-results .horizontal-content-container .prm-hue4.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue4.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue4, .prm-hue4.prm-view-overlay-inner, .__xs prm-facet.prm-hue4,
- .__sm prm-facet.prm-hue4, .__sm .prm-hue4.sidebar,
- .__xs .prm-hue4.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue4.md-button:before, .multiselect-submit .prm-hue4.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue4.pin-button, prm-full-view-cont .prm-hue4.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue4, prm-databases-categorize .prm-hue4.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue4, md-dialog md-toolbar.prm-hue4:not(.md-menu-toolbar), md-card .prm-hue4.card-content-block {
- background-color: #f1f1f1;
- }
-
- .prm-background.prm-hue5, html.prm-hue5, body.prm-hue5, .login-dialog .loader-wrapper, prm-search .prm-hue5.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue5.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue5.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue5, .prm-hue5.prm-view-overlay-inner, .__xs prm-facet.prm-hue5,
- .__sm prm-facet.prm-hue5, .__sm .prm-hue5.sidebar,
- .__xs .prm-hue5.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue5.md-button:before, .multiselect-submit .prm-hue5.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue5.pin-button, prm-full-view-cont .prm-hue5.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue5, prm-databases-categorize .prm-hue5.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue5, md-dialog md-toolbar.prm-hue5:not(.md-menu-toolbar), md-card .prm-hue5.card-content-block {
- background-color: rgba(233, 233, 233, 0.5);
- }
-
- .prm-background.prm-hue6, html.prm-hue6, body.prm-hue6, .bar.filter-bar, prm-search .prm-hue6.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue6.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue6.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue6, .prm-hue6.prm-view-overlay-inner, .__xs prm-facet.prm-hue6,
- .__sm prm-facet.prm-hue6, .__sm .prm-hue6.sidebar,
- .__xs .prm-hue6.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue6.md-button:before, .multiselect-submit .prm-hue6.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue6.pin-button, prm-full-view-cont .prm-hue6.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue6, prm-databases-categorize .prm-hue6.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue6, md-dialog md-toolbar.prm-hue6:not(.md-menu-toolbar), md-card .prm-hue6.card-content-block {
- background-color: #e6e6e6;
- }
-
- .prm-background.prm-hue7, html.prm-hue7, body.prm-hue7, .links-block .separated-block-item:after, prm-search .prm-hue7.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue7.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue7.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue7, .prm-hue7.prm-view-overlay-inner, .__xs prm-facet.prm-hue7,
- .__sm prm-facet.prm-hue7, .__sm .prm-hue7.sidebar,
- .__xs .prm-hue7.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue7.md-button:before, .multiselect-submit .prm-hue7.multiselect-submit-inner, prm-account-overview .institutions-list:after, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue7.pin-button, prm-full-view-cont .prm-hue7.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue7, prm-databases-categorize .prm-hue7.sticking-wrapper, prm-search-result-list prm-personalize-results-button .md-button md-switch .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch ._md-bar, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue7, md-dialog md-toolbar.prm-hue7:not(.md-menu-toolbar), md-card .prm-hue7.card-content-block, md-switch .md-bar {
- background-color: #cfcfcf;
- }
-
- .prm-background.prm-hue8, html.prm-hue8, body.prm-hue8, .service-form-static-panel, prm-search .prm-hue8.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue8.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue8.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue8, .prm-hue8.prm-view-overlay-inner, .__xs prm-facet.prm-hue8,
- .__sm prm-facet.prm-hue8, .__sm .prm-hue8.sidebar,
- .__xs .prm-hue8.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue8.md-button:before, .multiselect-submit .prm-hue8.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue8.pin-button, prm-full-view-cont .prm-hue8.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue8, prm-databases-categorize .prm-hue8.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue8, md-dialog md-toolbar.prm-hue8:not(.md-menu-toolbar), md-card .prm-hue8.card-content-block {
- background-color: #f8f8f8;
- }
-
- .prm-background.prm-hue9, html.prm-hue9, body.prm-hue9, prm-search .prm-hue9.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue9.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue9.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue9, .prm-hue9.prm-view-overlay-inner, .__xs prm-facet.prm-hue9,
- .__sm prm-facet.prm-hue9, .__sm .prm-hue9.sidebar,
- .__xs .prm-hue9.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue9.md-button:before, .multiselect-submit .prm-hue9.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue9.pin-button, prm-full-view-cont .prm-hue9.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue9, prm-databases-categorize .prm-hue9.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue9, md-dialog md-toolbar.prm-hue9:not(.md-menu-toolbar), md-tabs md-tabs-wrapper md-tabs-canvas md-pagination-wrapper md-tab-item.md-focused:not([disabled]), md-card .prm-hue9.card-content-block {
- background-color: gainsboro;
- }
-
- .prm-background.prm-hue10, html.prm-hue10, body.prm-hue10, prm-search .prm-hue10.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue10.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue10.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue10, .prm-hue10.prm-view-overlay-inner, .__xs prm-facet.prm-hue10,
- .__sm prm-facet.prm-hue10, .__sm .prm-hue10.sidebar,
- .__xs .prm-hue10.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue10.md-button:before, .multiselect-submit .prm-hue10.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue10.pin-button, prm-full-view-cont .prm-hue10.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue10, prm-databases-categorize .prm-hue10.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue10, md-dialog md-toolbar.prm-hue10:not(.md-menu-toolbar), md-card .prm-hue10.card-content-block, md-toolbar .toolbar-divider,
- md-toolbar.md-primoExplore-theme .toolbar-divider,
- md-toolbar:not(.md-menu-toolbar) .toolbar-divider {
- background-color: #cacaca;
- }
-
- .prm-background.prm-hue11, html.prm-hue11, body.prm-hue11, prm-search .prm-hue11.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue11.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue11.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue11, .prm-hue11.prm-view-overlay-inner, .__xs prm-facet.prm-hue11,
- .__sm prm-facet.prm-hue11, .__sm .prm-hue11.sidebar,
- .__xs .prm-hue11.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue11.md-button:before, .multiselect-submit .prm-hue11.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue11.pin-button, prm-full-view-cont .prm-hue11.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue11, prm-databases-categorize .prm-hue11.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue11, md-dialog md-toolbar.prm-hue11:not(.md-menu-toolbar), md-card .prm-hue11.card-content-block, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- background-color: #e4e4e4;
- }
-
- .prm-background.prm-hue13, html.prm-hue13, body.prm-hue13, prm-search .prm-hue13.ui-blocker, prm-featured-results .horizontal-content-container .prm-hue13.horizontal-content-control, prm-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-atoz-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-browse-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-tags-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-newspapers-search-bar .simple-search-wrapper .prm-hue13.search-options:after, prm-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-atoz-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-browse-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-tags-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, prm-newspapers-search-bar .simple-search-wrapper .search-options md-divider.prm-hue13, .prm-hue13.prm-view-overlay-inner, .__xs prm-facet.prm-hue13,
- .__sm prm-facet.prm-hue13, .__sm .prm-hue13.sidebar,
- .__xs .prm-hue13.sidebar, .available-facets .section-content .md-chips .md-chip .prm-hue13.md-button:before, .multiselect-submit .prm-hue13.multiselect-submit-inner, prm-full-view-cont prm-recomendation-item .media-on-hover .prm-hue13.pin-button, prm-full-view-cont .prm-hue13.recommendations-title:after, prm-full-view-cont .recommendations-title prm-icon.prm-hue13, prm-databases-categorize .prm-hue13.sticking-wrapper, md-virtual-repeat-container#prm-simple-search .md-autocomplete-suggestions md-divider.prm-hue13, md-dialog md-toolbar.prm-hue13:not(.md-menu-toolbar), md-card .prm-hue13.card-content-block {
- background-color: #eeeeee;
- }
-
-.prm-background-color, md-grid-tile .message-with-icon md-icon,
-.tiles-grid-tile .message-with-icon md-icon {
- color: #e9e9e9;
-}
-
- .prm-background-color.prm-hue4, .service-form-static-panel, md-grid-tile .message-with-icon md-icon.prm-hue4,
- .tiles-grid-tile .message-with-icon md-icon.prm-hue4 {
- color: #f1f1f1;
- }
-
-.prm-background-border, prm-search-result-list .results-header, .list-item-wrapper, .action-list-content md-divider, prm-search-bar .advanced-search-tabs, prm-atoz-search-bar .advanced-search-tabs, prm-browse-search-bar .advanced-search-tabs, prm-tags-search-bar .advanced-search-tabs, prm-newspapers-search-bar .advanced-search-tabs, prm-search-bar .advanced-search-output md-card, prm-atoz-search-bar .advanced-search-output md-card, prm-browse-search-bar .advanced-search-output md-card, prm-tags-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .advanced-search-output md-card, prm-newspapers-search-bar .search-options md-divider, md-grid-tile md-list md-list-item,
-md-grid-tile .tile-content md-list-item,
-.tiles-grid-tile md-list md-list-item,
-.tiles-grid-tile .tile-content md-list-item, md-grid-tile md-list md-divider,
-md-grid-tile .tile-content md-divider,
-.tiles-grid-tile md-list md-divider,
-.tiles-grid-tile .tile-content md-divider {
- border-color: #e9e9e9;
- border-color: #e1e1e1 !important;
-}
-
- .prm-background-border.prm-hue1, prm-search-result-list .prm-hue1.results-header, .prm-hue1.list-item-wrapper, .action-list-content md-divider.prm-hue1, prm-search-bar .prm-hue1.advanced-search-tabs, prm-atoz-search-bar .prm-hue1.advanced-search-tabs, prm-browse-search-bar .prm-hue1.advanced-search-tabs, prm-tags-search-bar .prm-hue1.advanced-search-tabs, prm-newspapers-search-bar .prm-hue1.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue1, prm-atoz-search-bar .advanced-search-output md-card.prm-hue1, prm-browse-search-bar .advanced-search-output md-card.prm-hue1, prm-tags-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue1, prm-newspapers-search-bar .search-options md-divider.prm-hue1, md-grid-tile md-list md-list-item.prm-hue1,
- md-grid-tile .tile-content md-list-item.prm-hue1,
- .tiles-grid-tile md-list md-list-item.prm-hue1,
- .tiles-grid-tile .tile-content md-list-item.prm-hue1, md-grid-tile md-list md-divider.prm-hue1,
- md-grid-tile .tile-content md-divider.prm-hue1,
- .tiles-grid-tile md-list md-divider.prm-hue1,
- .tiles-grid-tile .tile-content md-divider.prm-hue1 {
- border-color: #f0f0f0;
- border-color: #d5d5d5 !important;
- }
-
- .prm-background-border.prm-hue2, prm-search-result-list .prm-hue2.results-header, .prm-hue2.list-item-wrapper, .action-list-content md-divider.prm-hue2, prm-search-bar .prm-hue2.advanced-search-tabs, prm-atoz-search-bar .prm-hue2.advanced-search-tabs, prm-browse-search-bar .prm-hue2.advanced-search-tabs, prm-tags-search-bar .prm-hue2.advanced-search-tabs, prm-newspapers-search-bar .prm-hue2.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue2, prm-atoz-search-bar .advanced-search-output md-card.prm-hue2, prm-browse-search-bar .advanced-search-output md-card.prm-hue2, prm-tags-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue2, prm-newspapers-search-bar .search-options md-divider.prm-hue2, md-grid-tile md-list md-list-item.prm-hue2,
- md-grid-tile .tile-content md-list-item.prm-hue2,
- .tiles-grid-tile md-list md-list-item.prm-hue2,
- .tiles-grid-tile .tile-content md-list-item.prm-hue2, md-grid-tile md-list md-divider.prm-hue2,
- md-grid-tile .tile-content md-divider.prm-hue2,
- .tiles-grid-tile md-list md-divider.prm-hue2,
- .tiles-grid-tile .tile-content md-divider.prm-hue2 {
- border-color: #ececec !important;
- }
-
- .prm-background-border.prm-hue3, .bar.filter-bar, prm-search-result-list .prm-hue3.results-header, .prm-hue3.list-item-wrapper, .action-list-content md-divider.prm-hue3, prm-search-bar .prm-hue3.advanced-search-tabs, prm-atoz-search-bar .prm-hue3.advanced-search-tabs, prm-browse-search-bar .prm-hue3.advanced-search-tabs, prm-tags-search-bar .prm-hue3.advanced-search-tabs, prm-newspapers-search-bar .prm-hue3.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue3, prm-atoz-search-bar .advanced-search-output md-card.prm-hue3, prm-browse-search-bar .advanced-search-output md-card.prm-hue3, prm-tags-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue3, prm-newspapers-search-bar .search-options md-divider.prm-hue3, md-grid-tile md-list md-list-item.prm-hue3,
- md-grid-tile .tile-content md-list-item.prm-hue3,
- .tiles-grid-tile md-list md-list-item.prm-hue3,
- .tiles-grid-tile .tile-content md-list-item.prm-hue3, md-grid-tile md-list md-divider.prm-hue3,
- md-grid-tile .tile-content md-divider.prm-hue3,
- .tiles-grid-tile md-list md-divider.prm-hue3,
- .tiles-grid-tile .tile-content md-divider.prm-hue3 {
- border-color: #e1e1e1;
- }
-
- .prm-background-border.prm-hue4, prm-search-result-list .prm-hue4.results-header, .prm-hue4.list-item-wrapper, .action-list-content md-divider.prm-hue4, prm-search-bar .prm-hue4.advanced-search-tabs, prm-atoz-search-bar .prm-hue4.advanced-search-tabs, prm-browse-search-bar .prm-hue4.advanced-search-tabs, prm-tags-search-bar .prm-hue4.advanced-search-tabs, prm-newspapers-search-bar .prm-hue4.advanced-search-tabs, prm-search-bar .advanced-search-output md-card.prm-hue4, prm-atoz-search-bar .advanced-search-output md-card.prm-hue4, prm-browse-search-bar .advanced-search-output md-card.prm-hue4, prm-tags-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .advanced-search-output md-card.prm-hue4, prm-newspapers-search-bar .search-options md-divider.prm-hue4, md-grid-tile md-list md-list-item.prm-hue4,
- md-grid-tile .tile-content md-list-item.prm-hue4,
- .tiles-grid-tile md-list md-list-item.prm-hue4,
- .tiles-grid-tile .tile-content md-list-item.prm-hue4, md-grid-tile md-list md-divider.prm-hue4,
- md-grid-tile .tile-content md-divider.prm-hue4,
- .tiles-grid-tile md-list md-divider.prm-hue4,
- .tiles-grid-tile .tile-content md-divider.prm-hue4, md-toolbar.citations-toolbar .toolbar-section,
- md-toolbar.md-primoExplore-theme.citations-toolbar .toolbar-section,
- md-toolbar:not(.md-menu-toolbar).citations-toolbar .toolbar-section {
- border-color: #d7d7d7;
- }
-
-.prm-links, .md-button.arrow-link-button [link-arrow], a, .md-button.arrow-link-button .button-content, [class*="NFT"] > span,
-[class*="check_"] > span,
-[class*="_more"] > span,
-[class*="_unknown"] > span,
-[class*="may_"] > span,
-[class*="does_not_exist"] > span,
-.worldcat > span,
-.getit > span, [class*="available"] > span,
-[class*="FT"] > span,
-.not_restricted > span,
-.ext_not_restricted > span,
-.fulltext > span,
-.fulltext_linktorsrc > span,
-.fulltext_newspaper > span,
-.fulltext_linktorsrc_newspaper > span,
-.fulltext_linktorsrc_topic > span,
-.fulltext_topic > span, [class*="unavailable"] > span,
-[class*="no_"] > span,
-.restricted > span,
-.duedate > span, .login-dialog md-list md-list-item .md-list-item-text h3,
-.login-dialog md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3,
-.login-dialog .md-list md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, .login-dialog .collapsable-container md-list md-list-item .md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong, prm-tags-list .md-chips md-chip .md-chip-content strong, prm-tags-list md-chips .md-chip .md-chip-content strong, prm-tags-list md-chips md-chip .md-chip-content strong, md-tabs.tabs-as-links md-tab-item,
-md-tabs.tabs-as-links md-tab-item:not([disabled]), md-tabs.tabs-as-app .back-button, md-grid-tile .tile-header .header-link .arrow-icon,
-.tiles-grid-tile .tile-header .header-link .arrow-icon, md-grid-tile .tile-header .header-link:hover, md-grid-tile .tile-header .header-link:focus,
-.tiles-grid-tile .tile-header .header-link:hover,
-.tiles-grid-tile .tile-header .header-link:focus, md-grid-tile .tile-header .md-button,
-.tiles-grid-tile .tile-header .md-button, md-input-container.has-fixed-message [ng-message] a, .separate-list-items md-list-item .item-loader-with-text .md-button, md-list-item.list-item-as-link {
- color: white;
-}
-
-.prm-links-important, .text-link {
- color: white !important;
-}
-
-.prm-links.prm-links-hover, .md-button.arrow-link-button .prm-links-hover[link-arrow], a.prm-links-hover, .md-button.arrow-link-button .prm-links-hover.button-content, [class*="NFT"] > span.prm-links-hover,
-[class*="check_"] > span.prm-links-hover,
-[class*="_more"] > span.prm-links-hover,
-[class*="_unknown"] > span.prm-links-hover,
-[class*="may_"] > span.prm-links-hover,
-[class*="does_not_exist"] > span.prm-links-hover,
-.worldcat > span.prm-links-hover,
-.getit > span.prm-links-hover, [class*="available"] > span.prm-links-hover,
-[class*="FT"] > span.prm-links-hover,
-.not_restricted > span.prm-links-hover,
-.ext_not_restricted > span.prm-links-hover,
-.fulltext > span.prm-links-hover,
-.fulltext_linktorsrc > span.prm-links-hover,
-.fulltext_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_newspaper > span.prm-links-hover,
-.fulltext_linktorsrc_topic > span.prm-links-hover,
-.fulltext_topic > span.prm-links-hover, [class*="unavailable"] > span.prm-links-hover,
-[class*="no_"] > span.prm-links-hover,
-.restricted > span.prm-links-hover,
-.duedate > span.prm-links-hover, .login-dialog md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-links-hover.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-links-hover,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-links-hover.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-links-hover.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-links-hover.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-links-hover.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-links-hover.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-links-hover, prm-tags-list md-chips md-chip .md-chip-content strong.prm-links-hover, md-tabs.tabs-as-links md-tab-item.prm-links-hover, md-tabs.tabs-as-app .prm-links-hover.back-button, md-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-links-hover.arrow-icon, md-grid-tile .tile-header .prm-links-hover.header-link:hover, md-grid-tile .tile-header .prm-links-hover.header-link:focus,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:hover,
-.tiles-grid-tile .tile-header .prm-links-hover.header-link:focus, md-grid-tile .tile-header .prm-links-hover.md-button,
-.tiles-grid-tile .tile-header .prm-links-hover.md-button, md-input-container.has-fixed-message [ng-message] a.prm-links-hover, .separate-list-items md-list-item .item-loader-with-text .prm-links-hover.md-button, md-list-item.prm-links-hover.list-item-as-link {
- color: black;
-}
-
-.prm-links.prm-alt-link, .md-button.arrow-link-button .prm-alt-link[link-arrow], a.prm-alt-link, .md-button.arrow-link-button .prm-alt-link.button-content, [class*="NFT"] > span.prm-alt-link,
-[class*="check_"] > span.prm-alt-link,
-[class*="_more"] > span.prm-alt-link,
-[class*="_unknown"] > span.prm-alt-link,
-[class*="may_"] > span.prm-alt-link,
-[class*="does_not_exist"] > span.prm-alt-link,
-.worldcat > span.prm-alt-link,
-.getit > span.prm-alt-link, [class*="available"] > span.prm-alt-link,
-[class*="FT"] > span.prm-alt-link,
-.not_restricted > span.prm-alt-link,
-.ext_not_restricted > span.prm-alt-link,
-.fulltext > span.prm-alt-link,
-.fulltext_linktorsrc > span.prm-alt-link,
-.fulltext_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_newspaper > span.prm-alt-link,
-.fulltext_linktorsrc_topic > span.prm-alt-link,
-.fulltext_topic > span.prm-alt-link, [class*="unavailable"] > span.prm-alt-link,
-[class*="no_"] > span.prm-alt-link,
-.restricted > span.prm-alt-link,
-.duedate > span.prm-alt-link, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-alt-link,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-alt-link.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.md-list-item-inner, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .md-button.is-active, prm-collection-discovery-view-switcher .md-button.is-active:hover, prm-collection-discovery-view-switcher .md-button.is-active:focus, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link, md-tabs.tabs-as-links md-tab-item.prm-alt-link, md-tabs.tabs-as-app .prm-alt-link.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-alt-link.arrow-icon, md-grid-tile .tile-header .prm-alt-link.header-link:hover, md-grid-tile .tile-header .prm-alt-link.header-link:focus,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:hover,
-.tiles-grid-tile .tile-header .prm-alt-link.header-link:focus, md-grid-tile .tile-header .prm-alt-link.md-button,
-.tiles-grid-tile .tile-header .prm-alt-link.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.md-button, md-list-item.prm-alt-link.list-item-as-link {
- color: #100e0e;
-}
-
- .prm-links.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1[link-arrow], a.prm-alt-link.prm-hue1, .md-button.arrow-link-button .prm-alt-link.prm-hue1.button-content, [class*="NFT"] > span.prm-alt-link.prm-hue1,
- [class*="check_"] > span.prm-alt-link.prm-hue1,
- [class*="_more"] > span.prm-alt-link.prm-hue1,
- [class*="_unknown"] > span.prm-alt-link.prm-hue1,
- [class*="may_"] > span.prm-alt-link.prm-hue1,
- [class*="does_not_exist"] > span.prm-alt-link.prm-hue1,
- .worldcat > span.prm-alt-link.prm-hue1,
- .getit > span.prm-alt-link.prm-hue1, [class*="available"] > span.prm-alt-link.prm-hue1,
- [class*="FT"] > span.prm-alt-link.prm-hue1,
- .not_restricted > span.prm-alt-link.prm-hue1,
- .ext_not_restricted > span.prm-alt-link.prm-hue1,
- .fulltext > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc > span.prm-alt-link.prm-hue1,
- .fulltext_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_newspaper > span.prm-alt-link.prm-hue1,
- .fulltext_linktorsrc_topic > span.prm-alt-link.prm-hue1,
- .fulltext_topic > span.prm-alt-link.prm-hue1, [class*="unavailable"] > span.prm-alt-link.prm-hue1,
- [class*="no_"] > span.prm-alt-link.prm-hue1,
- .restricted > span.prm-alt-link.prm-hue1,
- .duedate > span.prm-alt-link.prm-hue1, .login-dialog md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title,
- .login-dialog .md-list md-list-item .md-list-item-text h3.prm-alt-link.prm-hue1,
- .login-dialog .md-list md-list-item .md-list-item-text .prm-alt-link.prm-hue1.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-alt-link.prm-hue1.md-list-item-inner, prm-main-menu[menu-type="full"] md-button .md-headline, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-alt-link.prm-hue1.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-alt-link.prm-hue1.link-to-altmetric-details-tab.button-content, prm-collection-discovery-view-switcher .prm-hue1.md-button.is-active, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-alt-link.prm-hue1, prm-tags-list md-chips md-chip .md-chip-content strong.prm-alt-link.prm-hue1, md-tabs.tabs-as-links md-tab-item.prm-alt-link.prm-hue1, md-tabs.tabs-as-app .prm-alt-link.prm-hue1.back-button, md-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon,
- .tiles-grid-tile .tile-header .header-link .prm-alt-link.prm-hue1.arrow-icon, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover, md-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:hover,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.header-link:focus, md-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button,
- .tiles-grid-tile .tile-header .prm-alt-link.prm-hue1.md-button, md-input-container.has-fixed-message [ng-message] a.prm-alt-link.prm-hue1, .separate-list-items md-list-item .item-loader-with-text .prm-alt-link.prm-hue1.md-button, md-list-item.prm-alt-link.prm-hue1.list-item-as-link {
- color: #33FFFF;
- }
-
-.prm-links.prm-hue-2, .md-button.arrow-link-button .prm-hue-2[link-arrow], a.prm-hue-2, .md-button.arrow-link-button .prm-hue-2.button-content, [class*="NFT"] > span.prm-hue-2,
-[class*="check_"] > span.prm-hue-2,
-[class*="_more"] > span.prm-hue-2,
-[class*="_unknown"] > span.prm-hue-2,
-[class*="may_"] > span.prm-hue-2,
-[class*="does_not_exist"] > span.prm-hue-2,
-.worldcat > span.prm-hue-2,
-.getit > span.prm-hue-2, [class*="available"] > span.prm-hue-2,
-[class*="FT"] > span.prm-hue-2,
-.not_restricted > span.prm-hue-2,
-.ext_not_restricted > span.prm-hue-2,
-.fulltext > span.prm-hue-2,
-.fulltext_linktorsrc > span.prm-hue-2,
-.fulltext_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_newspaper > span.prm-hue-2,
-.fulltext_linktorsrc_topic > span.prm-hue-2,
-.fulltext_topic > span.prm-hue-2, [class*="unavailable"] > span.prm-hue-2,
-[class*="no_"] > span.prm-hue-2,
-.restricted > span.prm-hue-2,
-.duedate > span.prm-hue-2, .login-dialog md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list md-list-item .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list md-list-item .md-list-item-text .prm-hue-2.list-item-title,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3.prm-hue-2,
-.login-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .prm-hue-2.list-item-title, .login-dialog .collapsable-container md-list md-list-item .prm-hue-2.md-list-item-inner, prm-user-area .user-menu-button .user-name, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container a.prm-hue-2.link-to-altmetric-details-tab, prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .md-button.arrow-link-button .prm-hue-2.link-to-altmetric-details-tab.button-content, .md-button.arrow-link-button prm-usage-metrics div[id^=_altmetric_popover_el].altmetric-embed div#_altmetric_container.altmetric_container .prm-hue-2.link-to-altmetric-details-tab.button-content, prm-tags-list .md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list .md-chips md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips .md-chip .md-chip-content strong.prm-hue-2, prm-tags-list md-chips md-chip .md-chip-content strong.prm-hue-2, md-tabs.tabs-as-links md-tab-item.prm-hue-2, md-tabs.tabs-as-app .prm-hue-2.back-button, md-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon,
-.tiles-grid-tile .tile-header .header-link .prm-hue-2.arrow-icon, md-grid-tile .tile-header .prm-hue-2.header-link:hover, md-grid-tile .tile-header .prm-hue-2.header-link:focus,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:hover,
-.tiles-grid-tile .tile-header .prm-hue-2.header-link:focus, md-grid-tile .tile-header .prm-hue-2.md-button,
-.tiles-grid-tile .tile-header .prm-hue-2.md-button, md-input-container.has-fixed-message [ng-message] a.prm-hue-2, .separate-list-items md-list-item .item-loader-with-text .prm-hue-2.md-button, md-list-item.prm-hue-2.list-item-as-link {
- color: #33FFFF;
-}
-
-.prm-links-bg {
- color: white;
-}
-
- .prm-links-bg:hover:not([disabled]), .prm-links-bg:focus:not([disabled]), .prm-links-bg.hovered:not([disabled]), .prm-links-bg.md-focused:not([disabled]), .prm-links-bg._md-focused:not([disabled]) {
- color: black;
- background-color: rgba(70, 70, 0, 0.1);
- }
-
- .prm-links-bg.prm-hue-1 {
- background-color: rgba(70, 70, 0, 0.1);
- }
-
-.prm-links-background.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- background-color: rgba(70, 70, 0, 0.1);
-}
-
-.prm-links-background.prm-hue-2 {
- background-color: rgba(70, 70, 0, 0);
-}
-
-.prm-links-hover.prm-hue-1, a:hover, .md-button.arrow-link-button .button-content:hover, .recommendations-title:hover > span > span, .recommendations-title.hover > span > span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong, a:focus, .md-button.arrow-link-button .button-content:focus, a.hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:hover .button-content, .md-button.arrow-link-button:focus .button-content, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-chapters-and-reviews md-card > .md-button:focus .item-title span {
- color: black;
-}
-
-.prm-links-hover.prm-hue-2 {
- color: rgba(0, 0, 0, 0.5);
-}
-
-.prm-links-hover.prm-hue-3 {
- color: rgba(70, 70, 0, 0);
-}
-
-.prm-text, body, a.a-tag-as-wrapper, .md-button.arrow-link-button .a-tag-as-wrapper.button-content, a.a-tag-as-wrapper:hover, .recommendations-title:hover > span > span.a-tag-as-wrapper, .recommendations-title.hover > span > span.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.a-tag-as-wrapper, a.a-tag-as-wrapper:focus, .hack-a-tag-unclickable a, .hack-a-tag-unclickable .md-button.arrow-link-button .button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .button-content, prm-search-result-tool-bar .md-toolbar-tools, .prm-user-menu-content .user-menu-header, prm-search-bar, prm-atoz-search-bar, prm-browse-search-bar, prm-tags-search-bar, prm-newspapers-search-bar, prm-virtual-browse-item md-card md-card-title, prm-virtual-browse-item md-card md-card-content, prm-more-like-this-item md-card md-card-title, prm-more-like-this-item md-card md-card-content, md-input-container.static-select.md-input-has-value label,
-md-input-container.static-select.md-input-has-value label:not(.md-no-float), .presentable-disabled-inputs md-input-container label, md-tooltip.bright-tooltip .md-content, md-tooltip.bright-tooltip ._md-content, md-toolbar.transparent-toolbar,
-md-toolbar.md-primoExplore-theme.transparent-toolbar,
-md-toolbar.transparent-toolbar:not(.md-menu-toolbar), md-toolbar.default-toolbar,
-md-toolbar.md-primoExplore-theme.default-toolbar,
-md-toolbar.default-toolbar:not(.md-menu-toolbar) {
- color: #3a3a3a;
-}
-
- .prm-text.prm-hue1, body.prm-hue1, .weak-text, .numbered-list .item:before, prm-reference-entry-item .reference-entry-type, prm-snippet prm-icon, .prm-recommendations-fullview .resource-count, a.prm-hue1.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue1.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue1.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue1.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue1, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue1.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue1.button-content, prm-search-result-tool-bar .prm-hue1.md-toolbar-tools, .prm-user-menu-content .prm-hue1.user-menu-header, prm-search-bar.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-tags-search-bar.prm-hue1, prm-newspapers-search-bar.prm-hue1, prm-virtual-browse-item md-card md-card-title.prm-hue1, prm-virtual-browse-item md-card md-card-content.prm-hue1, prm-more-like-this-item md-card md-card-title.prm-hue1, prm-more-like-this-item md-card md-card-content.prm-hue1, md-input-container.static-select.md-input-has-value label.prm-hue1, .presentable-disabled-inputs md-input-container label.prm-hue1, md-tooltip.bright-tooltip .prm-hue1.md-content, md-tooltip.bright-tooltip .prm-hue1._md-content, md-toolbar.prm-hue1.transparent-toolbar, md-toolbar.prm-hue1.default-toolbar {
- color: #878787;
- }
-
- .prm-text.prm-hue2, body.prm-hue2, a.prm-hue2.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue2.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue2.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue2.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue2, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue2.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue2.button-content, prm-search-result-tool-bar .prm-hue2.md-toolbar-tools, .prm-user-menu-content .prm-hue2.user-menu-header, prm-search-bar.prm-hue2, prm-atoz-search-bar.prm-hue2, prm-browse-search-bar.prm-hue2, prm-tags-search-bar.prm-hue2, prm-newspapers-search-bar.prm-hue2, prm-virtual-browse-item md-card md-card-title.prm-hue2, prm-virtual-browse-item md-card md-card-content.prm-hue2, prm-more-like-this-item md-card md-card-title.prm-hue2, prm-more-like-this-item md-card md-card-content.prm-hue2, md-input-container label, md-input-container label:not(.md-no-float):not(._md-container-ignore), md-input-container.static-select.md-input-has-value label.prm-hue2, .presentable-disabled-inputs md-input-container label.prm-hue2, md-tooltip.bright-tooltip .prm-hue2.md-content, md-tooltip.bright-tooltip .prm-hue2._md-content, md-toolbar.prm-hue2.transparent-toolbar, md-toolbar.prm-hue2.default-toolbar {
- color: #3a3a3a;
- }
-
- .prm-text.prm-hue3, body.prm-hue3, .darker-text, a.prm-hue3.a-tag-as-wrapper, .md-button.arrow-link-button .prm-hue3.a-tag-as-wrapper.button-content, .recommendations-title:hover > span > span.prm-hue3.a-tag-as-wrapper, .recommendations-title.hover > span > span.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list .md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips .md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, prm-tags-list md-chips md-chip .md-chip-content:hover strong.prm-hue3.a-tag-as-wrapper, .hack-a-tag-unclickable a.prm-hue3, .hack-a-tag-unclickable .md-button.arrow-link-button .prm-hue3.button-content, .md-button.arrow-link-button .hack-a-tag-unclickable .prm-hue3.button-content, prm-search-result-tool-bar .prm-hue3.md-toolbar-tools, .prm-user-menu-content .prm-hue3.user-menu-header, prm-search-bar.prm-hue3, prm-atoz-search-bar.prm-hue3, prm-browse-search-bar.prm-hue3, prm-tags-search-bar.prm-hue3, prm-newspapers-search-bar.prm-hue3, prm-virtual-browse-item md-card md-card-title.prm-hue3, prm-virtual-browse-item md-card md-card-content.prm-hue3, prm-more-like-this-item md-card md-card-title.prm-hue3, prm-more-like-this-item md-card md-card-content.prm-hue3, md-input-container.static-select.md-input-has-value label.prm-hue3, .presentable-disabled-inputs md-input-container label.prm-hue3, md-tooltip.bright-tooltip .prm-hue3.md-content, md-tooltip.bright-tooltip .prm-hue3._md-content, md-toolbar.prm-hue3.transparent-toolbar, md-toolbar.prm-hue3.default-toolbar {
- color: #212121;
- }
-
-.prm-warn, md-input-container.md-required:before, md-input-container.md-input-invalid:before, .required-starlet, .md-chip-remove-container button:hover md-icon, .md-chip-remove-container button:focus md-icon, prm-tags-list .md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list .md-chips.md-removable md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable .md-chip .md-chip-remove md-icon, prm-tags-list md-chips.md-removable md-chip .md-chip-remove md-icon, md-input-container.md-input-invalid, .md-chips .md-chip.toggleable-chip .md-chip-remove-container prm-icon.close-button {
- color: #FFB816;
-}
-
- .prm-warn-bg, .multiselect-facet-group .md-chip.facet-excluded md-checkbox.md-checked ._md-icon, md-input-container.md-input-invalid:after, prm-tags-list .md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list .md-chips .md-input-invalid._md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid.md-chip-input-container:after, prm-tags-list md-chips .md-input-invalid._md-chip-input-container:after {
- background-color: #FFB816;
- }
-
-.prm-alert, .bar.alert-bar, .classic-input .search-scope {
- color: black;
-}
-
-.prm-alert-bg, .bar.alert-bar, .classic-input .search-scope {
- background-color: #F7EDA3;
-}
-
-.prm-alert-border, .bar.alert-bar, .classic-input .search-scope {
- border-color: #ede49e;
-}
-
-.prm-highlight, prm-breadcrumbs .md-chip.persistent-facet {
- background-color: #FFFCC4;
-}
-
- .prm-highlight.prm-hue1, .list-item-wrapper .item-bookmarked,
- .list-item-wrapper .item-bookmarked:hover, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #FFFCC4;
- }
-
-.prm-notice, .status-maybe, [class*="NFT"],
-[class*="check_"],
-[class*="_more"],
-[class*="_unknown"],
-[class*="may_"],
-[class*="does_not_exist"],
-.worldcat,
-.getit, prm-search-result-frbr-line a > prm-icon:first-child, prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child {
- color: #e08303;
-}
-
-.prm-positive, .status-available, [class*="available"],
-[class*="FT"],
-.not_restricted,
-.ext_not_restricted,
-.fulltext,
-.fulltext_linktorsrc,
-.fulltext_newspaper,
-.fulltext_linktorsrc_newspaper,
-.fulltext_linktorsrc_topic,
-.fulltext_topic {
- color: #34A5A5;
-}
-
-.prm-positive-bg, .multiselect-submit .multiselect-submit-inner .md-button.md-primary {
- background-color: #34A5A5;
-}
-
-.prm-negative, .status-unavailable, [class*="unavailable"],
-[class*="no_"],
-.restricted,
-.duedate {
- color: #808080;
-}
-
-.prm-citation-color, prm-citation-trails-item .item-type, prm-chapters-and-reviews .item-type {
- color: tomato;
-}
-
- .prm-citation-color.citation-hover, prm-citation-trails-item .citation-hover.item-type, prm-citation-trails-indication .md-button.md-icon-button:hover, prm-citation-trails-indication .md-button.button-with-icon:hover, prm-chapters-and-reviews .citation-hover.item-type {
- color: #7a1300;
- }
-
-.prm-citation-title, prm-citation-trails-item.active-item .item-title, prm-chapters-and-reviews .item-title, prm-opac .related-title .related-title-name, prm-gallery-collection .collection-folder .collection-overlay, prm-gallery-item .collection-element .item-title, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item .item-title, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item .item-title, md-list.prm-list.prm-linkable-list-items md-list-item .item-title {
- color: #44707b;
-}
-
-.prm-hover-list-element-bg, prm-brief-result-container .list-item-primary-content:before, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-browse-search md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner, prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner,
-prm-tags-results-list md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + .md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:hover + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:hover + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title:hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item.recommendations-title.hover > span.md-button > span + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list .md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list .md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips .md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips .md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items prm-tags-list md-chips md-chip .md-chip-content:hover md-list-item > .md-button > strong + ._md-list-item-inner, prm-tags-list md-chips md-chip .md-chip-content:hover md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > strong + ._md-list-item-inner, md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + .md-list-item-inner, md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + .md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + .md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > a:focus + ._md-list-item-inner,
-md-list.prm-list.prm-linkable-list-items .md-button.arrow-link-button md-list-item > .md-button > .button-content:focus + ._md-list-item-inner, .md-button.arrow-link-button md-list.prm-list.prm-linkable-list-items md-list-item > .md-button > .button-content:focus + ._md-list-item-inner {
- background-color: white;
-}
-
-.prm-peer-reviewed, .prm-course {
- color: #8359d4;
-}
-
-.prm-open-access {
- color: #f68212;
-}
-
-.prm-personalization, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-label, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-label, .sidebar .personalization-section .section-title-header,
-.sidebar .personalization-section .sidebar-list,
-.sidebar .personalization-section md-checkbox {
- color: #7d1538;
-}
-
- .prm-personalization-bg, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-bar, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch.md-checked ._md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked .md-thumb, prm-search-result-list prm-personalize-results-button .md-button md-switch._md-checked ._md-thumb, .sidebar .personalization-section md-checkbox.md-checked .md-icon, .sidebar .personalization-section .sidebar-list li:before, .sidebar .personalization-section ul li:before {
- background-color: #7d1538;
- }
-
-.prm-organization, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-label, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-label {
- color: #B51F1F;
-}
-
-.prm-organization-bg, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-bar, prm-facet prm-organization-or-facet-toggle .md-button md-switch .md-thumb, prm-facet prm-organization-or-facet-toggle .md-button md-switch ._md-thumb {
- background-color: #B51F1F;
-}
-
-/* primary color hook end*/
diff --git a/primo-explore/custom/VU2/css/topbar.css b/primo-explore/custom/VU2/css/topbar.css
deleted file mode 100644
index 64c3e72..0000000
--- a/primo-explore/custom/VU2/css/topbar.css
+++ /dev/null
@@ -1,12 +0,0 @@
-.top-nav-bar{
- height: 60px !important;
-}
-prm-topbar{
- height: inherit !important;
-}
-prm-main-menu{
- border-bottom: solid rgb(216,216,216) 1px !important;
-}
-prm-topbar-after div{
- background-color: white !important;
-}
diff --git a/primo-explore/custom/VU2/custom.js b/primo-explore/custom/VU2/custom.js
deleted file mode 100644
index 0dc214b..0000000
--- a/primo-explore/custom/VU2/custom.js
+++ /dev/null
@@ -1,6 +0,0 @@
-(function(){
-"use strict";
-'use strict';
-
-var app = angular.module('viewCustom', ['angularLoad']);
-})();
\ No newline at end of file
diff --git a/primo-explore/custom/VU2/features.json.txt b/primo-explore/custom/VU2/features.json.txt
deleted file mode 100644
index d801e72..0000000
--- a/primo-explore/custom/VU2/features.json.txt
+++ /dev/null
@@ -1 +0,0 @@
-{"prm-explore-footer-after":["prm-explore-footer-after-app-store-generated"]}
diff --git a/primo-explore/custom/VU2/html/home_en_US.html b/primo-explore/custom/VU2/html/home_en_US.html
deleted file mode 100644
index 9a8eb91..0000000
--- a/primo-explore/custom/VU2/html/home_en_US.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<md-content layout-xs="column" layout="row">
- <div flex="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <span class="md-headline">How does this work?</span>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Primo provides simple, one-stop searching for books and e-books, videos, articles, digital media, and more.
- </p>
- <p>
- Primo also helps you manage your research. Sign-in in order to:
- </p>
- <ul>
- <li>Renew books and videos</li>
- <li>Create favoriets lists</li>
- <li>Export citations to Refworks and Endnote Web</li>
- <li>View full search results. (Some databases, only show results when you're signed in.)</li>
- </ul>
- </md-card-content>
- </md-card>
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <span class="md-headline">Questions? Comments?</span>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <a href="#" class="arrow-link">
- Let us know what you think!
- <prm-icon link-arrow>
- <md-icon md-svg-icon="./images/chevron-right.svg"></md-icon>
- </prm-icon>
- </a>
- </md-card-content>
- </md-card>
- </div>
- <div flex-xs flex="40" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <span class="md-headline">Where can I get help?</span>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- <a href="#">Ask a librarian</a> how to start your search
- </p>
-
- </md-card-content>
- </md-card>
- </div>
-</md-content>
\ No newline at end of file
diff --git a/primo-explore/custom/VU2/html/logo.html b/primo-explore/custom/VU2/html/logo.html
deleted file mode 100644
index 95dc89b..0000000
--- a/primo-explore/custom/VU2/html/logo.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<div class="product-logo" id="banner" aria-label="{{'nui.aria.logo.link.open' | translate}}" ng-if="!$ctrl.parentCtrl.disableLogo">
- <a ng-href="{{$ctrl.parentCtrl.logoURL}}" aria-label="{{'nui.aria.logo.link.open' | translate}}">
- <a ng-if="!$ctrl.parentCtrl.needSref" ng-href="{{$ctrl.parentCtrl.logoURL}}" ng-click="$ctrl.parentCtrl.logoClick()">
- <img class="logo-image" ng-if="!$ctrl.parentCtrl.isEmailMode()" id="logoImage" data-logo="email-template" translate-attr="{ alt: 'nui.header.LogoAlt' }" ng-src="{{$ctrl.parentCtrl.iconLink}}" />
- <img class="logo-image" ng-if="$ctrl.parentCtrl.isEmailMode()" height="35" id="logoImage" data-logo="email-template" translate-attr="{ alt: 'nui.header.LogoAlt' }" ng-src="{{$ctrl.parentCtrl.iconLink}}" />
- </a>
- <md-button ng-if="$ctrl.parentCtrl.needSref" ui-state="'exploreMain.search'" ui-state-params="{vid: '{{$ctrl.parentCtrl.vid}}'}" ui-state-opts="{reload: true, inherit: false}" href="" ng-click="$ctrl.parentCtrl.logoClick()">
- <img class="logo-image" ng-if="!$ctrl.parentCtrl.isEmailMode()" id="logoImage" data-logo="email-template" translate-attr="{ alt: 'nui.header.LogoAlt' }" ng-src="{{$ctrl.parentCtrl.iconLink}}" />
- <img ng-if="$ctrl.parentCtrl.isEmailMode()" class="logo-image" id="logoImage" height="35" data-logo="email-template" translate-attr="{ alt: 'nui.header.LogoAlt' }" ng-src="{{$ctrl.parentCtrl.iconLink}}" />
- </md-button>
- </a>
- <a href="https://library.epfl.ch">Library</a>
-</div>
-<div class="product-logo" id="banner" aria-label="{{'nui.aria.logo.link.open' | translate}}" ng-if="$ctrl.parentCtrl.disableLogo" style="cursor:auto">
- <img class="logo-image" ng-if="!$ctrl.parentCtrl.isEmailMode()" id="logoImage" translate-attr="{ alt: 'nui.header.LogoAlt' }" ng-src="{{$ctrl.parentCtrl.iconLink}}" />
- <img class="logo-image" ng-if="$ctrl.parentCtrl.isEmailMode()" height="35" id="logoImage" translate-attr="{ alt: 'nui.header.LogoAlt' }" ng-src="{{$ctrl.parentCtrl.iconLink}}" />
-</div>
diff --git a/primo-explore/custom/VU2/html/topbar.html b/primo-explore/custom/VU2/html/topbar.html
deleted file mode 100644
index 550806c..0000000
--- a/primo-explore/custom/VU2/html/topbar.html
+++ /dev/null
@@ -1 +0,0 @@
-<div>TEST<div>
diff --git a/primo-explore/custom/VU2/img/custom-ui.svg b/primo-explore/custom/VU2/img/custom-ui.svg
deleted file mode 100644
index be30e2d..0000000
--- a/primo-explore/custom/VU2/img/custom-ui.svg
+++ /dev/null
@@ -1,2 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="5000" viewBox="0 0 24 5000">
-</svg>
diff --git a/primo-explore/custom/VU2/js/custom.js b/primo-explore/custom/VU2/js/custom.js
deleted file mode 100644
index 6f2a697..0000000
--- a/primo-explore/custom/VU2/js/custom.js
+++ /dev/null
@@ -1,2 +0,0 @@
-!function u(l,i,a){function c(r,o){if(!i[r]){if(!l[r]){var t="function"==typeof require&&require;if(!o&&t)return t(r,!0);if(m)return m(r,!0);var e=new Error("Cannot find module '"+r+"'");throw e.code="MODULE_NOT_FOUND",e}var n=i[r]={exports:{}};l[r][0].call(n.exports,function(o){return c(l[r][1][o]||o)},n,n.exports,u,l,i,a)}return i[r].exports}for(var m="function"==typeof require&&require,o=0;o<a.length;o++)c(a[o]);return c}({1:[function(o,r,t){"use strict";angular.module("logo",[]).component("prmLogoAfter",{bindings:{parentCtrl:"<"},controller:function(){console.log(this)},templateUrl:"custom/Vu2/html/logo.html"})},{}],2:[function(o,r,t){"use strict";o("./topbar.module"),o("./logo.module"),angular.module("viewCustom",["angularLoad","logo"])},{"./logo.module":1,"./topbar.module":3}],3:[function(o,r,t){"use strict";angular.module("topbar",[]).component("prmTopbarAfter",{bindings:{parentCtrl:"<"},controller:function(){},templateUrl:"custom/EPFL_3/html/topbar.html"})},{}]},{},[2]);
-//# sourceMappingURL=custom.js.map
diff --git a/primo-explore/custom/VU2/js/custom.js.map b/primo-explore/custom/VU2/js/custom.js.map
deleted file mode 100644
index 629c1c9..0000000
--- a/primo-explore/custom/VU2/js/custom.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/VU2/js/logo.module.js","primo-explore/custom/VU2/js/main.js","primo-explore/custom/VU2/js/topbar.module.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","angular","component","bindings","parentCtrl","controller","console","log","this","templateUrl"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aASAK,QAAQD,OAAO,OAAQ,IAAIE,UAAU,eAAgB,CAC7CC,SAAU,CAACC,WAAY,KACvBC,WAAY,WAKRC,QAAQC,IAFCC,OAKbC,YAAA,mECjBRnB,EAAA,mBACAA,EAAA,iBAEUW,QAAQD,OAAO,aAAc,CAAC,cAA6B,sECLrE,aAQAC,QAAQD,OAAO,SAAU,IAAIE,UAAU,iBAAkB,CACjDC,SAAU,CAACC,WAAY,KACvBC,WAAY,aAOZI,YAAa","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n\r\n/*\r\n OBJECTIF: afficher l'entête de la page.\r\n REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie\r\n si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.\r\n*/\r\n\r\nangular.module('logo', []).component('prmLogoAfter', {\r\n bindings: {parentCtrl: '<'},\r\n controller: function(){\r\n\r\n // Paramétrage du fil d'ariane\r\n var vm = this;\r\n // vm.isUrlAccount = ($location.path() === \"/account\") ? true : false;\r\n console.log(vm);\r\n },\r\n // controllerAs: 'ctrl',\r\n templateUrl: `custom/Vu2/html/logo.html`\r\n });\r\n","\r\n\r\nimport { topbar } from './topbar.module';\r\nimport { logo } from './logo.module';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad', /*'topbar',*/ 'logo']);\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: afficher l'entête de la page.\r\n REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie\r\n si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.\r\n*/\r\n\r\nangular.module('topbar', []).component('prmTopbarAfter', {\r\n bindings: {parentCtrl: '<'},\r\n controller: function(){\r\n\r\n // Paramétrage du fil d'ariane\r\n var vm = this;\r\n // vm.isUrlAccount = ($location.path() === \"/account\") ? true : false;\r\n // console.log(vm);\r\n },\r\n templateUrl: 'custom/EPFL_3/html/topbar.html'\r\n });\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/VU2/js/logo.module.js b/primo-explore/custom/VU2/js/logo.module.js
deleted file mode 100644
index 0b62953..0000000
--- a/primo-explore/custom/VU2/js/logo.module.js
+++ /dev/null
@@ -1,21 +0,0 @@
-"use strict";
-
-
-/*
- OBJECTIF: afficher l'entête de la page.
- REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie
- si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.
-*/
-
-angular.module('logo', []).component('prmLogoAfter', {
- bindings: {parentCtrl: '<'},
- controller: function(){
-
- // Paramétrage du fil d'ariane
- var vm = this;
- // vm.isUrlAccount = ($location.path() === "/account") ? true : false;
- console.log(vm);
- },
- // controllerAs: 'ctrl',
- templateUrl: `custom/Vu2/html/logo.html`
- });
diff --git a/primo-explore/custom/VU2/js/main.js b/primo-explore/custom/VU2/js/main.js
deleted file mode 100644
index a74fcda..0000000
--- a/primo-explore/custom/VU2/js/main.js
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-import { topbar } from './topbar.module';
-import { logo } from './logo.module';
-
-var app = angular.module('viewCustom', ['angularLoad', /*'topbar',*/ 'logo']);
diff --git a/primo-explore/custom/VU2/js/topbar.module.js b/primo-explore/custom/VU2/js/topbar.module.js
deleted file mode 100644
index 3fec2b1..0000000
--- a/primo-explore/custom/VU2/js/topbar.module.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: afficher l'entête de la page.
- REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie
- si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.
-*/
-
-angular.module('topbar', []).component('prmTopbarAfter', {
- bindings: {parentCtrl: '<'},
- controller: function(){
-
- // Paramétrage du fil d'ariane
- var vm = this;
- // vm.isUrlAccount = ($location.path() === "/account") ? true : false;
- // console.log(vm);
- },
- templateUrl: 'custom/EPFL_3/html/topbar.html'
- });
diff --git a/primo-explore/custom/VU2/node_modules/topbar/topbar.js b/primo-explore/custom/VU2/node_modules/topbar/topbar.js
deleted file mode 100644
index 93997e4..0000000
--- a/primo-explore/custom/VU2/node_modules/topbar/topbar.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: afficher l'entête de la page.
- REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie
- si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controller: function(){
-
- // Paramétrage du fil d'ariane
- var vm = this;
- // vm.isUrlAccount = ($location.path() === "/account") ? true : false;
- console.log(vm);
- },
- template: 'TEST';
- };
diff --git a/primo-explore/custom/VU2/package.json b/primo-explore/custom/VU2/package.json
deleted file mode 100644
index 7153c96..0000000
--- a/primo-explore/custom/VU2/package.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "name": "epfl_3",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "author": "",
- "license": "ISC",
- "devDependencies": {
- "primo-explore-oadoi-link": "^1.0.1"
- }
-}

Event Timeline