2022-07-27 11:36:18 +02:00
|
|
|
.monitor {
|
2022-06-16 18:54:14 +02:00
|
|
|
/* Import OpenAIRE theme*/
|
|
|
|
@import (multiple) "~src/assets/openaire-theme/less/_import";
|
2022-07-18 11:20:27 +02:00
|
|
|
@import (multiple) "~src/assets/common-assets/less/general";
|
|
|
|
@import (multiple) "~src/assets/common-assets/less/user";
|
|
|
|
@import (multiple) "~src/assets/common-assets/less/dashboard";
|
2024-01-24 08:31:31 +01:00
|
|
|
@import (multiple) "~src/assets/common-assets/less/indicators";
|
2022-08-02 22:15:38 +02:00
|
|
|
@import (multiple) "~src/assets/common-assets/less/landing";
|
2022-07-18 11:20:27 +02:00
|
|
|
|
2022-07-17 15:24:47 +02:00
|
|
|
@monitor-dashboard-background: #F3F3F3;
|
2022-06-16 18:54:14 +02:00
|
|
|
|
|
|
|
/** Global */
|
|
|
|
@global-primary-gradient: linear-gradient(110deg, @monitor-light-color 0%, @monitor-dark-color 100%);
|
|
|
|
|
2022-07-17 15:24:47 +02:00
|
|
|
/** Background */
|
2022-06-16 18:54:14 +02:00
|
|
|
@background-primary-background: @monitor-color;
|
2022-06-21 12:53:25 +02:00
|
|
|
@background-primary-background-gradient: none;
|
2022-06-16 18:54:14 +02:00
|
|
|
|
2022-07-17 15:24:47 +02:00
|
|
|
/** Button */
|
2022-06-16 18:54:14 +02:00
|
|
|
@button-primary-background: @monitor-color;
|
|
|
|
@button-secondary-border: @monitor-color;
|
|
|
|
@button-secondary-color: @monitor-color;
|
|
|
|
@button-secondary-hover-background: @global-secondary-background;
|
|
|
|
@button-secondary-hover-background-gradient: none;
|
2022-06-20 12:30:25 +02:00
|
|
|
@button-secondary-active-background: @global-secondary-background;
|
|
|
|
@button-secondary-active-background-gradient: none;
|
2022-06-16 18:54:14 +02:00
|
|
|
|
|
|
|
/** Label */
|
|
|
|
@label-secondary-color: @monitor-color;
|
|
|
|
@label-secondary-border: @monitor-color;
|
|
|
|
|
|
|
|
/** List */
|
|
|
|
@list-primary-color: @monitor-color;
|
|
|
|
|
|
|
|
/* Navbar */
|
2022-08-04 14:33:49 +02:00
|
|
|
@inverse-navbar-background: @monitor-color;
|
2022-07-04 21:35:58 +02:00
|
|
|
@inverse-navbar-background-image: url("banner.jpg");
|
2022-06-16 18:54:14 +02:00
|
|
|
|
|
|
|
/** Text */
|
|
|
|
@text-primary-color: @monitor-color;
|
|
|
|
@text-background-color: @monitor-color;
|
2022-08-02 22:34:30 +02:00
|
|
|
@inverse-text-primary-color: @monitor-color;
|
|
|
|
|
|
|
|
/* Slider */
|
|
|
|
@dotnav-item-background: fade(@monitor-color, 50%);
|
|
|
|
@dotnav-item-hover-background: @monitor-color;
|
|
|
|
@dotnav-item-onclick-background: @monitor-color;
|
|
|
|
@dotnav-item-active-background: @monitor-color;
|
2022-06-16 18:54:14 +02:00
|
|
|
|
2022-07-17 15:24:47 +02:00
|
|
|
/* General */
|
|
|
|
@general-search-form-background: @monitor-dashboard-background;
|
|
|
|
@general-tab-featured-tab: @monitor-color;
|
|
|
|
|
|
|
|
/* Landing */
|
|
|
|
@landing-portal-color: @monitor-color;
|
|
|
|
|
|
|
|
/* Dashboard */
|
|
|
|
@dashboard-page-content-background: @monitor-dashboard-background;
|
|
|
|
@dashboard-primary-background: @monitor-color;
|
2023-03-22 16:56:50 +01:00
|
|
|
@dashboard-menu-section-sublist-border: fade(@monitor-color, 30%);
|
2022-07-17 15:24:47 +02:00
|
|
|
|
2022-06-16 18:54:14 +02:00
|
|
|
& #filters_icon .start {
|
|
|
|
stop-color: @monitor-light-color;
|
|
|
|
}
|
|
|
|
|
2022-07-17 15:24:47 +02:00
|
|
|
& #filters_icon .end {
|
2022-06-16 18:54:14 +02:00
|
|
|
stop-color: @monitor-dark-color;
|
|
|
|
}
|
2022-12-20 16:40:46 +01:00
|
|
|
|
|
|
|
.private-data {
|
|
|
|
background-image: url("private-overlay.png");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2022-12-23 16:37:42 +01:00
|
|
|
min-height: 100vh;
|
2022-12-20 16:40:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.preview {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 40px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
background: @global-inverse-color;
|
|
|
|
border: 2px solid @background-primary-background;
|
|
|
|
border-radius: @global-border-radius;
|
|
|
|
box-shadow: @global-large-box-shadow;
|
|
|
|
padding: 20px 25px;
|
|
|
|
z-index: @global-z-index;
|
|
|
|
}
|
2022-06-16 18:54:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#print_toggle {
|
|
|
|
top: 320px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filters_switcher_toggle {
|
|
|
|
top: 400px !important;
|
|
|
|
}
|
2022-07-04 22:48:11 +02:00
|
|
|
|
2023-03-22 16:56:50 +01:00
|
|
|
@media (max-width: @breakpoint-small-max) {
|
|
|
|
#filters_switcher_toggle {
|
|
|
|
top: unset !important;
|
|
|
|
bottom: 10vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-04 22:48:11 +02:00
|
|
|
/* Quick fix for svgs with a class that makes their opacity: 0.5*/
|
|
|
|
svg .a {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|