2021-09-07 15:51:21 +02:00
|
|
|
/* layout */
|
|
|
|
:root {
|
|
|
|
--navbar-height: 60px;
|
2021-09-17 16:32:32 +02:00
|
|
|
/* --navbar-height: 40px; */
|
2021-09-08 08:16:08 +02:00
|
|
|
--sidebar-width-expanded: 230px;
|
|
|
|
--sidebar-width-collapsed: 65px;
|
2021-09-17 16:32:32 +02:00
|
|
|
/* --sidebar-width-collapsed: 40px; */
|
2021-09-08 08:16:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2021-09-09 15:01:06 +02:00
|
|
|
padding-top: var(--navbar-height);
|
2021-09-13 11:43:42 +02:00
|
|
|
margin-left: var(--sidebar-width-collapsed);
|
|
|
|
}
|
|
|
|
|
2021-09-16 15:50:55 +02:00
|
|
|
.panel {
|
2021-09-13 13:04:54 +02:00
|
|
|
padding: 0.75rem;
|
2021-09-13 11:43:42 +02:00
|
|
|
border-radius: 0.25rem;
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
margin-bottom: 1rem;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-09-09 17:16:37 +02:00
|
|
|
/* navbar-toggler breakpoint */
|
|
|
|
@media (max-width: 576px) {
|
|
|
|
body {
|
|
|
|
margin-left: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
header.top-navbar {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 100% !important;
|
|
|
|
position: relative !important;
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li > a.sidebar-link > span.text {
|
|
|
|
visibility: visible !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li.category > span.category-label {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar:hover:not(.expanded) ~ main.content:after {
|
|
|
|
bottom: unset !important;
|
|
|
|
right: unset !important;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded ~ main.content {
|
|
|
|
margin-left: 0 !important;
|
|
|
|
}
|
2021-09-17 16:32:32 +02:00
|
|
|
|
|
|
|
.sidebar ul.sidebar-elements > li.category > span.category-label {
|
|
|
|
opacity: 1;
|
|
|
|
position: relative;
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
}
|
2021-09-09 17:16:37 +02:00
|
|
|
}
|
|
|
|
|
2021-09-10 09:22:08 +02:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
.header-breadcrumb-actions > a {
|
|
|
|
border-top-left-radius: 0.25rem !important;
|
|
|
|
border-bottom-left-radius: 0.25rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
.main-wrapper {
|
|
|
|
min-height: 100%;
|
2021-09-09 15:01:06 +02:00
|
|
|
/* padding-top: var(--navbar-height); */
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-navbar {
|
2021-09-08 10:57:22 +02:00
|
|
|
min-height: var(--navbar-height);
|
2021-09-07 15:51:21 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 0;
|
2021-09-09 12:21:53 +02:00
|
|
|
z-index: 1020;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-09-08 14:35:51 +02:00
|
|
|
main.content {
|
2021-09-07 15:51:21 +02:00
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
margin-top: var(--navbar-height);
|
2021-09-08 14:35:51 +02:00
|
|
|
overflow: hidden;
|
2021-09-07 15:51:21 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2021-09-08 08:16:08 +02:00
|
|
|
width: var(--sidebar-width-collapsed);
|
2021-09-07 15:51:21 +02:00
|
|
|
left: 0;
|
2021-09-08 08:16:08 +02:00
|
|
|
transform:translateZ(0) scale(1,1);
|
2021-09-13 13:04:54 +02:00
|
|
|
z-index:1039;
|
2021-09-08 08:16:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded, .sidebar:hover {
|
|
|
|
width: var(--sidebar-width-expanded);
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-09-08 14:35:51 +02:00
|
|
|
.sidebar.expanded ~ main.content {
|
2021-09-09 17:16:37 +02:00
|
|
|
margin-left: calc(var(--sidebar-width-expanded) - var(--sidebar-width-collapsed));
|
2021-09-08 14:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar ~ main.content:after {
|
2021-09-13 13:04:54 +02:00
|
|
|
z-index: 1038;
|
2021-09-08 14:47:47 +02:00
|
|
|
content: ' ';
|
|
|
|
transition: opacity 0.5s;
|
|
|
|
position: fixed;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar:hover:not(.expanded) ~ main.content:after {
|
|
|
|
bottom: 0;
|
|
|
|
right:0;
|
|
|
|
opacity: 0.5;
|
2021-09-08 14:35:51 +02:00
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
.left-navbar {
|
2021-09-08 10:57:22 +02:00
|
|
|
min-width: 70px;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.center-navbar {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-navbar {
|
|
|
|
display: flex;
|
2021-09-08 10:57:22 +02:00
|
|
|
justify-content: end;
|
|
|
|
flex: 1 0 auto;
|
2021-09-09 16:27:09 +02:00
|
|
|
height: var(--navbar-height);
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-09-09 16:27:09 +02:00
|
|
|
.right-navbar div.global-search-container {
|
|
|
|
margin: auto 0;
|
|
|
|
}
|
|
|
|
|
2021-09-13 15:56:51 +02:00
|
|
|
.global-search-result-container {
|
|
|
|
min-width: 280px;
|
|
|
|
}
|
|
|
|
|
2021-09-10 14:46:56 +02:00
|
|
|
.global-search-result-container .total-found {
|
|
|
|
font-size: 0.75rem;
|
|
|
|
padding-top: 0rem;
|
|
|
|
text-align: end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-search-result-container .total-found .total-found-number {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
|
2021-09-10 14:12:19 +02:00
|
|
|
.global-search-result-container .search-container-model .model-text {
|
|
|
|
font-size: 0.75rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-search-result-container .search-container-model .search-container-divider {
|
|
|
|
flex: 1 0 0;
|
|
|
|
min-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-search-result-container .search-container-model .search-container-divider > hr {
|
|
|
|
height: 1px;
|
|
|
|
flex: 1 0 auto
|
|
|
|
}
|
|
|
|
|
2021-09-10 14:22:28 +02:00
|
|
|
.top-navbar .global-search-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-search-container #globalSearch {
|
|
|
|
padding-right: 26px;
|
2021-10-08 10:08:02 +02:00
|
|
|
width: 280px;
|
|
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, width 0.3s;
|
|
|
|
-webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, width 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-search-container #globalSearch:focus {
|
|
|
|
width: 380px !important;
|
2021-09-10 14:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-navbar .global-search-container .search-input-container > i.icon {
|
|
|
|
position: absolute;
|
|
|
|
right: 8px;
|
|
|
|
line-height: 38px;
|
|
|
|
}
|
|
|
|
|
2021-09-09 16:27:09 +02:00
|
|
|
.right-navbar div.header-menu a.nav-link {
|
|
|
|
margin: auto 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-navbar .header-menu .dropdown-menu a.dropdown-item > i {
|
|
|
|
min-width: 25px;
|
|
|
|
}
|
2021-09-08 14:35:51 +02:00
|
|
|
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
/* sidebar */
|
|
|
|
.sidebar-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-scroll {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2021-10-18 13:10:04 +02:00
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-scroll:hover {
|
|
|
|
overflow-y: auto;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-content {
|
2021-09-17 16:32:32 +02:00
|
|
|
padding-top: 0.25em;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-10-18 13:10:04 +02:00
|
|
|
.sidebar .lock-sidebar {
|
|
|
|
-webkit-box-shadow: 0px -1px 5px 1px rgb(0 0 0 / 8%);
|
|
|
|
box-shadow: 0px -1px 5px 1px rgb(0 0 0 / 8%);
|
|
|
|
}
|
|
|
|
|
2021-09-08 14:35:51 +02:00
|
|
|
.sidebar .lock-sidebar > a::before {
|
|
|
|
content: "\f101";
|
|
|
|
font-family: 'Font Awesome 5 Free';
|
|
|
|
font-weight: 900;
|
2021-10-18 13:10:04 +02:00
|
|
|
transition: margin-left 0.1s ease-out;
|
|
|
|
margin-left: 0;
|
2021-09-08 14:35:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded .lock-sidebar > a::before {
|
|
|
|
content: "\f100";
|
|
|
|
}
|
|
|
|
|
2021-10-18 13:10:04 +02:00
|
|
|
.sidebar .lock-sidebar:hover > a::before {
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
.sidebar.expanded .lock-sidebar:hover > a::before {
|
|
|
|
margin-left: -0.5rem;
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
/* sidebar entry */
|
|
|
|
ul.sidebar-elements > li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2021-10-18 13:10:04 +02:00
|
|
|
ul.sidebar-elements > li > a[data-href] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-10-08 16:57:38 +02:00
|
|
|
ul.sidebar-elements li.bookmarks {
|
|
|
|
padding: 0 calc((var(--sidebar-width-collapsed) - 25px) / 2);
|
|
|
|
}
|
|
|
|
|
2021-09-08 08:16:08 +02:00
|
|
|
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link,
|
|
|
|
.sidebar:hover ul.sidebar-elements li > a.sidebar-link {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2021-10-08 16:57:38 +02:00
|
|
|
.sidebar ul.sidebar-elements li.bookmark-categ,
|
|
|
|
.sidebar ul.sidebar-elements li.bookmarks {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded ul.sidebar-elements li.bookmark-categ,
|
|
|
|
.sidebar:hover ul.sidebar-elements li.bookmark-categ {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded ul.sidebar-elements li.bookmarks,
|
|
|
|
.sidebar:hover ul.sidebar-elements li.bookmarks {
|
|
|
|
display: list-item;
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
ul.sidebar-elements li > a.sidebar-link {
|
2021-09-13 11:43:42 +02:00
|
|
|
position: relative;
|
2021-09-07 15:51:21 +02:00
|
|
|
display: block;
|
2021-09-17 16:32:32 +02:00
|
|
|
padding: 0 calc((var(--sidebar-width-collapsed) - 25px) / 2);
|
2021-09-07 15:51:21 +02:00
|
|
|
line-height: 35px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-decoration: none;
|
2021-09-10 15:37:20 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 11:43:42 +02:00
|
|
|
ul.sidebar-elements li > a.sidebar-link.active::after {
|
|
|
|
content: ' ';
|
|
|
|
width: 3px;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
|
|
|
content: ' ';
|
|
|
|
width: 3px;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded ul.sidebar-elements li > a.sidebar-link.have-active-child::after,
|
|
|
|
.sidebar:hover ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
|
|
|
content: unset;
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
ul.sidebar-elements > li > a.sidebar-link > * {
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li > a.sidebar-link > i.sidebar-icon {
|
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 19px;
|
2021-09-08 08:16:08 +02:00
|
|
|
min-width: 25px;
|
2021-09-07 15:51:21 +02:00
|
|
|
line-height: 19px;
|
|
|
|
}
|
|
|
|
|
2021-09-08 08:16:08 +02:00
|
|
|
.sidebar.expanded ul.sidebar-elements > li > a.sidebar-link > span.text,
|
|
|
|
.sidebar:hover ul.sidebar-elements > li > a.sidebar-link > span.text {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
ul.sidebar-elements > li > a.sidebar-link > span.text {
|
2021-09-08 08:16:08 +02:00
|
|
|
visibility: hidden;
|
2021-09-07 15:51:21 +02:00
|
|
|
line-height: 40px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sidebar sub-menu */
|
|
|
|
ul.sidebar-elements li.parent > a.sidebar-link::before {
|
2021-09-08 08:16:08 +02:00
|
|
|
visibility: hidden;
|
2021-09-07 15:51:21 +02:00
|
|
|
content: "\f0d7";
|
|
|
|
float: right;
|
|
|
|
font-family: 'Font Awesome 5 Free';
|
|
|
|
font-weight: 900;
|
|
|
|
font-size: 1rem;
|
2022-02-08 17:58:30 +01:00
|
|
|
order: 6 !important;
|
|
|
|
margin-left: auto;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements li.parent > a.sidebar-link:not(.collapsed)::before {
|
|
|
|
content: "\f0d8";
|
|
|
|
}
|
|
|
|
|
2021-09-08 08:16:08 +02:00
|
|
|
.sidebar.expanded ul.sidebar-elements li.parent > a.sidebar-link::before,
|
|
|
|
.sidebar:hover ul.sidebar-elements li.parent > a.sidebar-link::before {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar.expanded ul.sidebar-elements li ul.show,
|
|
|
|
.sidebar.expanded ul.sidebar-elements li ul.collapsing,
|
|
|
|
.sidebar.expanded ul.sidebar-elements li ul.in,
|
|
|
|
.sidebar:hover ul.sidebar-elements li ul.show,
|
|
|
|
.sidebar:hover ul.sidebar-elements li ul.collapsing,
|
|
|
|
.sidebar:hover ul.sidebar-elements li ul.in {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
ul.sidebar-elements > li ul {
|
2021-09-08 08:16:08 +02:00
|
|
|
display: none;
|
2021-09-07 15:51:21 +02:00
|
|
|
padding: 10px 0;
|
|
|
|
list-style: none;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li ul li > a.sidebar-link {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
padding-left: 35px;
|
|
|
|
padding-right: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li ul li > ul > li > a.sidebar-link {
|
|
|
|
font-size: 0.85rem;
|
|
|
|
padding-left: 50px;
|
|
|
|
padding-right: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li ul li > ul > li > ul > li > a.sidebar-link {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
padding-left: 65px;
|
|
|
|
padding-right: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li ul li > ul > li > ul > li > ul > li > a.sidebar-link {
|
|
|
|
font-size: 0.78rem;
|
|
|
|
padding-left: 80px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sidebar category */
|
|
|
|
ul.sidebar-elements > li.category {
|
2021-09-08 08:16:08 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
display: flex;
|
2021-09-17 16:32:32 +02:00
|
|
|
padding: 15px calc((var(--sidebar-width-collapsed) - 25px) / 2) 0;
|
2021-09-07 15:51:21 +02:00
|
|
|
line-height: 30px;
|
2021-09-08 08:16:08 +02:00
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-09-08 08:24:32 +02:00
|
|
|
.sidebar.expanded ul.sidebar-elements > li.category > span.category-label,
|
|
|
|
.sidebar:hover ul.sidebar-elements > li.category > span.category-label {
|
2021-09-13 11:43:42 +02:00
|
|
|
opacity: 1;
|
|
|
|
position: relative;
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
2021-09-08 08:24:32 +02:00
|
|
|
}
|
|
|
|
|
2021-09-07 15:51:21 +02:00
|
|
|
ul.sidebar-elements > li.category > span.category-label {
|
2021-09-13 11:43:42 +02:00
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
overflow: hidden;
|
2021-09-07 15:51:21 +02:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 0.75rem;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-right: 15px;
|
2021-09-13 11:43:42 +02:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.2s linear;
|
2021-09-07 15:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li.category > span.category-divider {
|
2021-09-08 08:24:32 +02:00
|
|
|
min-height: 30px;
|
2021-09-07 15:51:21 +02:00
|
|
|
flex: 1 0 0%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.sidebar-elements > li.category > span.category-divider > hr {
|
|
|
|
margin: 0;
|
|
|
|
height: 1px;
|
|
|
|
flex: 1 0 auto;
|
2021-09-08 10:57:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Header
|
|
|
|
*/
|
|
|
|
.center-navbar nav.header-breadcrumb {
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center-navbar nav.header-breadcrumb > ol {
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center-navbar nav.header-breadcrumb li {
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center-navbar nav.header-breadcrumb li.header-breadcrumb-item {
|
2021-11-09 09:11:35 +01:00
|
|
|
max-width: 25vw;
|
2021-09-09 15:01:06 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2021-09-08 10:57:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.center-navbar nav.header-breadcrumb li.header-breadcrumb-separator {
|
|
|
|
padding: 0 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-dark .center-navbar nav.header-breadcrumb li.header-breadcrumb-separator {
|
|
|
|
/* color: black; */
|
|
|
|
}
|
|
|
|
.navbar-light .center-navbar nav.header-breadcrumb li.header-breadcrumb-separator {
|
|
|
|
/* color: white; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.center-navbar nav.header-breadcrumb li.header-breadcrumb-item a {
|
2021-09-17 13:04:37 +02:00
|
|
|
text-decoration: none;
|
2021-09-08 10:57:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-breadcrumb-children {
|
|
|
|
border-radius: 0.25rem;
|
2021-09-17 15:44:52 +02:00
|
|
|
padding: 0 0.25rem;
|
2021-09-08 10:57:22 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-breadcrumb-children > a:not(:last-child) {
|
|
|
|
}
|
|
|
|
|
2021-09-10 09:22:08 +02:00
|
|
|
.header-breadcrumb-actions > a {
|
2021-09-17 15:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb-link-container {
|
|
|
|
top: var(--navbar-height);
|
|
|
|
padding: 2px;
|
|
|
|
border-radius: 0 0 0 5px;
|
|
|
|
}
|
|
|
|
.header-breadcrumb-children .dropdown-menu .dropdown-item > i {
|
|
|
|
min-width: 25px;
|
2021-09-10 09:22:08 +02:00
|
|
|
}
|
|
|
|
|
2021-09-13 10:59:08 +02:00
|
|
|
.composed-app-icon-container {
|
2021-09-17 16:32:32 +02:00
|
|
|
height: calc(var(--navbar-height) - 10px);
|
|
|
|
width: calc(var(--navbar-height) - 10px);
|
2021-09-13 10:59:08 +02:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.composed-app-icon-container > .app-icon {
|
|
|
|
display: inline-block;
|
|
|
|
mask-image: url(/img/icon-composition/sheet-all.svg), url(/img/icon-composition/z.svg);
|
2021-09-17 16:32:32 +02:00
|
|
|
mask-position: 0 0, 2.4px calc((var(--navbar-height) - 10px) / 2);
|
2021-09-13 10:59:08 +02:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain, cover;
|
|
|
|
mask-composite: source-out;
|
2021-10-18 20:56:51 +02:00
|
|
|
mask-composite: subtract;
|
2021-09-13 10:59:08 +02:00
|
|
|
-webkit-mask-image: url(/img/icon-composition/sheet-all.svg), url(/img/icon-composition/z.svg);
|
2021-09-17 16:32:32 +02:00
|
|
|
-webkit-mask-position: 0 0, 2.4px calc((var(--navbar-height) - 10px) / 2);
|
2021-09-13 10:59:08 +02:00
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
-webkit-mask-size: contain, cover;
|
|
|
|
-webkit-mask-composite: source-out;
|
2021-10-18 20:56:51 +02:00
|
|
|
-webkit-mask-composite: subtract;
|
2021-09-13 10:59:08 +02:00
|
|
|
transition-timing-function: ease-out;
|
|
|
|
transition-duration: 0.2s;
|
|
|
|
transition-property: -webkit-mask-position;
|
|
|
|
}
|
|
|
|
|
|
|
|
.composed-app-icon-container > .app-icon:hover {
|
2021-09-17 16:32:32 +02:00
|
|
|
mask-position: 0 0, 2.4px calc(0.75 * (var(--navbar-height) - 10px) / 2);
|
|
|
|
-webkit-mask-position: 0 0, 2.4px calc(0.75 * (var(--navbar-height) - 10px) / 2);
|
2021-09-13 10:59:08 +02:00
|
|
|
}
|