argos/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents.scss

59 lines
1.0 KiB
SCSS
Raw Normal View History

:host {
font-size: 13px;
// Width is container width minus content width
width: 19%;
height: fit-content;
position: -webkit-sticky;
position: sticky;
// display: inline-flex;
align-self: flex-start;
top: 0;
padding-left: 25px;
box-sizing: border-box;
}
.docs-toc-container {
width: 100%;
padding: 5px 0 10px 10px;
cursor: pointer;
border-left: solid 4px #0c7489;
.docs-link {
color: rgba(0, 0, 0, 0.54);
// color: mat-color($app-blue-theme-foreground, secondary-text);
transition: color 100ms;
&:hover,
&.docs-active {
color: #0c7489;
// color: mat-color($primary, if($is-dark-theme, 200, default));
}
}
}
.docs-toc-heading {
margin: 0;
padding: 0;
font-size: 13px;
font-weight: bold;
}
span {
line-height: 16px;
margin: 8px 0 0;
position: relative;
text-decoration: none;
display: block;
text-overflow: ellipsis !important;
overflow: hidden;
color: rgba(0, 0, 0, 0.54);
}
.docs-level-mat-expansion-panel {
margin-left: 12px;
}
.docs-level-h5 {
margin-left: 24px;
}