matrix-dimension/web/style/_riot.scss

40 lines
887 B
SCSS
Raw Normal View History

2020-07-16 00:24:23 +00:00
// The CSS for the Element breadcrumb is specified here to ensure that it's style can be overridden.
2017-12-15 06:32:23 +00: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 22:05:38 +00:00
.xng-breadcrumb-link {
text-decoration: none;
}
2021-09-01 22:05:38 +00:00
.xng-breadcrumb-root {
color: inherit;
}
2021-09-01 22:05:38 +00:00
.xng-breadcrumb-seperator,
.xng-breadcrumb-trail {
color: themed(activeBreadcrumbColor);
}
.header .quickAction .closeButton .scalarClose {
position: absolute;
2021-12-03 07:33:53 +00:00
top: 0px;
right: 0px;
}
.header .quickAction .adminButton {
position: absolute;
2021-12-03 07:33:53 +00:00
top: 0px;
right: 26px;
}
.header .quickAction .headerButton {
2021-12-03 07:33:53 +00:00
width: 20px;
height: 20px;
cursor: pointer;
}
2017-12-15 06:32:23 +00:00
}
2020-07-16 00:24:23 +00:00
}