matrix-dimension/web/style/_riot.scss

44 lines
1011 B
SCSS
Raw Normal View History

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.
@import "themes/themes";
.main-app {
@include themify() {
2021-09-01 18:05:38 -04:00
.xng-breadcrumb-link {
text-decoration: none;
}
2021-09-01 18:05:38 -04:00
.xng-breadcrumb-root {
color: inherit;
}
2021-09-01 18:05:38 -04:00
.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);
}
2017-12-15 01:32:23 -05:00
}
2020-07-15 20:24:23 -04:00
}