| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503 |
- //
- // Sidebar
- //
- ._sidebar {
- position: absolute;
- z-index: $sidebarZ;
- top: $headerHeight;
- bottom: 0;
- left: 0;
- margin-top: 1px;
- overflow-x: hidden;
- overflow-y: scroll;
- background: $sidebarBackground;
- background-clip: content-box;
- -webkit-overflow-scrolling: touch;
- -ms-overflow-style: none; // IE 10 doesn't support pointer-events
- @extend %user-select-none;
- &::-webkit-scrollbar { -webkit-appearance: none; width: 10px; }
- &::-webkit-scrollbar-button { display: none; }
- &::-webkit-scrollbar-track { background: $contentBackground; }
- &::-webkit-scrollbar-thumb {
- min-height: 2rem;
- background: $scrollbarColor;
- background-clip: padding-box;
- border: 3px solid $contentBackground;
- border-radius: 5px;
- &:active {
- background-color: $scrollbarColorHover;
- border-width: 2px;
- }
- }
- ._sidebar-hidden & {
- display: none;
- }
- }
- ._resizer {
- position: absolute;
- z-index: $sidebarZ;
- top: $headerHeight;
- bottom: 0;
- left: $sidebarWidth;
- margin-left: -2px;
- width: 3px;
- cursor: col-resize;
- ._sidebar-hidden & {
- left: 0;
- margin-left: 0;
- background: $headerBackground;
- border-right: 1px solid $headerBorder;
- width: 8px;
- cursor: pointer;
- &:before {
- content: '';
- position: absolute;
- top: 50%;
- left: 3px;
- margin-top: -.5rem;
- width: 1px;
- height: 1rem;
- border-left: 1px solid $textColorLighter;
- border-right: 1px solid $textColorLighter;
- }
- }
- }
- //
- // List
- //
- ._list {
- margin: 0;
- padding: 0;
- list-style: none;
- width: $sidebarWidth;
- box-shadow: inset -1px 0 $sidebarBorder;
- @extend %border-box;
- @media #{$mediumScreen} { width: $sidebarMediumWidth; }
- ._sidebar > & {
- min-height: 100%;
- padding-bottom: 3.5rem;
- }
- a:focus { outline: 0; }
- }
- ._list-title {
- position: relative;
- margin: .5rem 0 0;
- padding-left: 2.25rem;
- line-height: 2rem;
- font-size: .75rem;
- color: $textColorLight;
- text-transform: uppercase;
- cursor: default;
- }
- ._list-item {
- display: block;
- position: relative;
- padding: .25rem .75rem;
- line-height: 1.5rem;
- font-size: .875rem;
- cursor: default;
- background: $sidebarBackground;
- box-shadow: inset -1px 0 $sidebarBorder;
- &, &:hover {
- color: inherit;
- text-decoration: none;
- }
- &.focus,
- &.focus:hover,
- &.active,
- &.active:hover {
- color: $focusText;
- background: $focusBackground;
- box-shadow: inset -1px 0 $focusBorder;
- }
- &.active,
- &.active:hover {
- color: $selectionText;
- background: $selectionBackground;
- box-shadow: inset -1px 0 $selectionBorder;
- }
- &:before {
- float: left;
- margin: .25rem .625rem 0 0;
- @extend %doc-icon;
- }
- }
- ._list-item, ._list-text {
- overflow: hidden;
- white-space: nowrap;
- word-wrap: normal;
- overflow-wrap: normal;
- text-overflow: ellipsis;
- }
- ._list-text {
- display: block;
- pointer-events: none;
- }
- ._list-count, ._list-enable {
- float: right;
- font-size: .75rem;
- margin-left: .375rem;
- .focus > &,
- .active > & {
- color: inherit;
- }
- }
- ._list-count {
- color: $textColorLighter;
- pointer-events: none;
- ._list-disabled:hover > & { display: none; }
- }
- ._list-enable {
- display: none;
- color: $linkColor;
- cursor: pointer;
- &:hover { text-decoration: underline; }
- ._list-disabled:hover > &, ._list-result > & { display: block; }
- ._list-result.active > & { margin-right: -1rem; }
- }
- //
- // List hierarchy
- //
- ._list-dir:not(._list-rdir),
- %_list-dir {
- padding-left: 2.25rem;
- }
- ._list-disabled {
- @extend %_list-dir;
- &, &:hover { color: $textColorLight; }
- &:before { opacity: .7; }
- }
- ._list-arrow {
- position: absolute;
- top: 0;
- left: .25rem;
- padding: .5rem;
- cursor: pointer;
- opacity: .4;
- &:hover { opacity: .65; }
- ._list-rdir > & {
- left: auto;
- right: .25rem;
- }
- &:before {
- @if $style == 'dark' {
- @extend %icon, %icon-dir-white;
- } @else {
- @extend %icon, %icon-dir;
- }
- .open > &, .open-title > & {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- }
- }
- ._list-sub {
- display: none;
- .open + & { display: block; }
- > ._list-item { padding-left: 2.375rem; }
- > ._list-dir, > ._list-sub > ._list-item { padding-left: 2.75rem; }
- > ._list-disabled { padding-left: 3.875rem; }
- > ._list-item:before { content: none; }
- > ._list-dir { line-height: 1.375rem; }
- ._list-arrow {
- left: 1rem;
- padding: .4375rem;
- }
- }
- //
- // List pagination
- //
- ._list-pagelink {
- color: $linkColor;
- cursor: pointer;
- &:hover {
- color: $linkColorHover;
- text-decoration: underline;
- }
- }
- //
- // Search results
- //
- ._list-result.active {
- padding-right: 1.75rem;
- > ._list-reveal { display: block; }
- > ._list-count { display: none; }
- }
- ._list-reveal {
- display: none;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 0;
- width: 2rem;
- cursor: pointer;
- &:before {
- content: '';
- position: absolute;
- bottom: 50%;
- left: .75rem;
- width: .75rem;
- height: 1px;
- background: rgba($selectionText, .9);
- box-shadow: 0 -3px rgba($selectionText, .9), // top line
- 0 3px rgba($selectionText, .9); // bottom line
- }
- }
- //
- // List note
- //
- ._list-note {
- padding: .5rem .75rem;
- line-height: 1.25rem;
- font-size: .8125rem;
- color: $textColorLight;
- & + & { padding-top: 0; }
- }
- ._list-note-link { cursor: pointer; }
- //
- // List hover clone
- //
- ._list-hover.clone {
- position: fixed;
- overflow: visible;
- z-index: $hoverZ;
- left: 0;
- min-width: $sidebarWidth;
- padding: .25rem .75rem;
- pointer-events: none;
- -webkit-font-smoothing: subpixel-antialiased;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- @extend %border-box;
- @media #{$mediumScreen} { min-width: $sidebarMediumWidth; }
- > ._list-text { display: inline; }
- &:not(._list-result) {
- padding-left: 2.75rem;
- &:before { content: none; }
- }
- ._list-reveal, ._list-enable { display: none; }
- }
- //
- // List picker
- //
- ._list-picker {
- > ._list, > ._list-item {
- opacity: 0;
- transition: .2s;
- }
- &._in { > ._list, > ._list-item { opacity: 1; } }
- ._list-item { cursor: pointer; }
- ._list-sub > ._list-item { padding-left: 2.375rem; }
- }
- ._list-checkbox {
- position: absolute;
- top: .5rem;
- right: .75rem;
- width: 1rem;
- height: 1rem;
- transition: .2s;
- }
- ._list-link {
- display: block;
- margin-top: .75rem;
- font-size: .8125rem;
- text-align: center;
- @extend %external-link;
- &:after { visibility: hidden; }
- &:hover:after { visibility: visible; }
- }
- //
- // Footer
- //
- ._sidebar-footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: $sidebarWidth;
- background: $sidebarBackground;
- box-shadow: inset -1px 0 $sidebarBorder;
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- @media #{$mediumScreen} { width: $sidebarMediumWidth; }
- ._max-width & {
- left: calc(50% - #{$maxWidth} / 2);
- @media (max-width: #{$maxWidth}) { left: 0; }
- }
- &:before {
- content: '';
- position: absolute;
- bottom: 100%;
- left: 0;
- right: 1px;
- height: 1em;
- background-image: -webkit-linear-gradient(top, rgba($sidebarBackground, 0), rgba($sidebarBackground, .95));
- background-image: linear-gradient(to bottom, rgba($sidebarBackground, 0), rgba($sidebarBackground, .95));
- pointer-events: none;
- }
- }
- ._sidebar-footer-link {
- position: relative;
- display: block;
- overflow: hidden;
- height: 2.5rem;
- line-height: 1rem;
- padding: .75rem .25rem .75rem .75rem;
- font-size: .875em;
- cursor: pointer;
- @extend %border-box;
- &, &:hover {
- color: inherit;
- text-decoration: none;
- }
- &:before {
- float: left;
- margin-right: .625rem;
- @extend %icon;
- }
- }
- ._sidebar-footer-edit {
- display: inline-block;
- @if $style == 'dark' {
- &:before { @extend %icon-settings-white; }
- } @else {
- &:before { @extend %icon-settings; }
- }
- }
- ._sidebar-footer-light {
- float: right;
- width: 2rem;
- padding: 0;
- opacity: .65;
- @extend %hide-text;
- &:before {
- float: none;
- position: absolute;
- top: .75rem;
- left: .25rem;
- @if $style == 'dark' {
- @extend %icon-light-white;
- } @else {
- @extend %icon-light;
- }
- }
- }
- ._sidebar-footer-layout {
- float: right;
- width: 2rem;
- padding: 0;
- opacity: .65;
- @extend %hide-text;
- &:before {
- float: none;
- position: absolute;
- top: .75rem;
- left: .375rem;
- @if $style == 'dark' {
- @extend %icon-expand-white;
- } @else {
- @extend %icon-expand;
- }
- ._max-width & {
- @if $style == 'dark' {
- @extend %icon-contract-white;
- } @else {
- @extend %icon-contract;
- }
- }
- }
- @media (max-width: #{$maxWidth + .1rem}) { display: none; }
- }
- ._sidebar-footer-save {
- margin-right: 1px;
- font-weight: $boldFontWeight;
- background: $noteGreenBackground;
- box-shadow: inset 0 1px $noteGreenBorder,
- 1px 0 $noteGreenBorder;
- @if $style == 'dark' {
- &:before { @extend %icon-check-white; }
- } @else {
- &:before { @extend %icon-check; }
- }
- }
|