2020-07-15 20:24:23 -04:00
|
|
|
// The CSS for the Element breadcrumb is specified here to ensure that it's style can be overridden.
|
2017-12-15 01:32:23 -05:00
|
|
|
// In it's current position (as a component), the component-level stylesheet cannot access the
|
|
|
|
// elements, so we specify it in a more generic location.
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "themes/themes";
|
|
|
|
|
|
|
|
.main-app {
|
|
|
|
@include themify() {
|
2021-09-01 18:05:38 -04:00
|
|
|
.xng-breadcrumb-link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2021-09-01 18:05:38 -04:00
|
|
|
.xng-breadcrumb-root {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
|
2021-09-01 18:05:38 -04:00
|
|
|
.xng-breadcrumb-seperator,
|
|
|
|
.xng-breadcrumb-trail {
|
|
|
|
color: themed(activeBreadcrumbColor);
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .quickAction .closeButton .scalarClose {
|
|
|
|
position: absolute;
|
2021-12-03 02:33:53 -05:00
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .quickAction .adminButton {
|
|
|
|
position: absolute;
|
2021-12-03 02:33:53 -05:00
|
|
|
top: 0px;
|
|
|
|
right: 26px;
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .quickAction .headerButton {
|
2021-12-03 02:33:53 -05:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2018-10-22 02:41:35 -04:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-12-15 01:32:23 -05:00
|
|
|
}
|
2020-07-15 20:24:23 -04:00
|
|
|
}
|