matrix-dimension/web/style/_riot.scss

40 lines
887 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;
2021-12-03 02:33:53 -05:00
top: 0px;
right: 0px;
}
.header .quickAction .adminButton {
position: absolute;
2021-12-03 02:33:53 -05:00
top: 0px;
right: 26px;
}
.header .quickAction .headerButton {
2021-12-03 02:33:53 -05:00
width: 20px;
height: 20px;
cursor: pointer;
}
2017-12-15 01:32:23 -05:00
}
2020-07-15 20:24:23 -04:00
}