matrix-dimension/web/style/_riot.scss
2021-09-02 00:05:38 +02:00

44 lines
1011 B
SCSS

// The CSS for the Element breadcrumb is specified here to ensure that it's style can be overridden.
// 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.
@import "themes/themes";
.main-app {
@include themify() {
.xng-breadcrumb-link {
text-decoration: none;
}
.xng-breadcrumb-root {
color: inherit;
}
.xng-breadcrumb-seperator,
.xng-breadcrumb-trail {
color: themed(activeBreadcrumbColor);
}
.header .quickAction .closeButton .scalarClose {
position: absolute;
top: 19px;
right: 15px;
}
.header .quickAction .adminButton {
position: absolute;
top: 19px;
right: 55px;
}
.header .quickAction .headerButton {
font-size: 35px;
cursor: pointer;
color: themed(quickActionColor);
}
.header .quickAction .headerButton:hover {
color: themed(quickActionHoverColor);
}
}
}