mirror of
https://github.com/documize/community.git
synced 2025-07-28 09:39:42 +02:00
Upgraded to Ember JS 2.16.x release. This upgrade uses the new JavaScript modules API syntax. Integrated Bootstrap 4 Beta 2 via package.json and associated popper.js library. Overridden Bootstrap styles using bootstrap.scss -- this file selectively imports the modules we need.
57 lines
875 B
SCSS
57 lines
875 B
SCSS
.document-sidebar-view-index {
|
|
margin: 0;
|
|
|
|
>.structure {
|
|
> .toc-controls {
|
|
margin: 0;
|
|
color: $color-gray;
|
|
|
|
> .round-button-mono {
|
|
> .material-icons {
|
|
color: $color-link;
|
|
}
|
|
}
|
|
|
|
> .disabled {
|
|
cursor: not-allowed !important;
|
|
color: $color-stroke;
|
|
border-color: $color-stroke;
|
|
|
|
> .material-icons {
|
|
color: $color-stroke;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .index-list {
|
|
padding: 0;
|
|
list-style: none;
|
|
font-size: 13px;
|
|
overflow-x: hidden;
|
|
list-style-type: none;
|
|
margin: 20px 0 0;
|
|
|
|
.item {
|
|
padding: 4px 0;
|
|
text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
@extend .no-select;
|
|
|
|
> .link {
|
|
color: $color-off-black;
|
|
|
|
&:hover {
|
|
color: $color-link;
|
|
}
|
|
}
|
|
|
|
> .selected {
|
|
color: $color-link;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|