| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- .fake-full-width-bg(@bg-color) {
- &::before {
- content: '\00a0';
- position: absolute;
- width: 100%;
- right: 100%;
- background-color: @bg-color;
- }
- }
- .file-tree {
- .toolbar.toolbar-filetree {
- .toolbar-small-mixin;
- .toolbar-alt-mixin;
- padding: 0 5px;
- }
-
- .file-tree-inner {
- position: absolute;
- top: 32px;
- bottom: 0;
- left: 0;
- right: 0;
- overflow-y: auto;
- background-color: @file-tree-bg;
- &.no-toolbar {
- top: 0;
- }
- }
- // TODO; Consolidate with "Project files" in Overleaf
- h3 {
- font-size: 1rem;
- border-bottom: 1px solid @gray;
- padding-bottom: (@line-height-computed / 4);
- margin: (@line-height-computed / 2);
- }
- ul.file-tree-list when (@is-overleaf = false) {
- font-size: 0.8rem;
- padding: (@line-height-computed / 4) 0;
- }
- &-history {
- .entity-name {
- padding-left: 6px;
- &.deleted {
- text-decoration: line-through;
- }
- }
- .loading {
- padding-left: 6px;
- color: #FFF;
- i.fa {
- color: #FFF;
- }
- }
- }
- li .entity-name.droppable-hover when (@is-overleaf = true) {
- font-weight: bold;
- background-color: @file-tree-item-hover-bg;
- .fake-full-width-bg(@file-tree-item-hover-bg);
- }
- li .entity-name.droppable-hover when (@is-overleaf-light = true) {
- // color: @file-tree-item-selected-color;
- }
- ul.droppable-hover li div.entity-name:hover when (@is-overleaf = true) {
- background-color: transparent;
- .fake-full-width-bg(transparent);
- &.droppable-hover {
- background-color: @file-tree-item-hover-bg;
- .fake-full-width-bg(@file-tree-item-hover-bg);
- }
- }
- ul.file-tree-list {
- margin: 0;
- overflow-x: hidden;
- height: 100%;
- ul {
- margin-left: (@line-height-computed / 2);
- }
- li {
- line-height: @file-tree-line-height;
- position: relative;
- .entity {
- user-select: none;
- }
- .entity-name {
- color: @file-tree-item-color;
- cursor: pointer;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- &:hover {
- background-color: @file-tree-item-hover-bg;
- }
- &:hover when (@is-overleaf = true) {
- // When the entity is a subfolder, the DOM element is "indented" via margin-left. This makes the
- // element not fill the entire file-tree width (as it's spaced from the left-hand side via margin)
- // and, in consequence, the background gets clipped. The ::before pseudo-selector is used to fill
- // the empty space.
- .fake-full-width-bg(@file-tree-item-hover-bg);
- }
- input {
- line-height: 1.6;
- }
- &.droppable-hover when (@is-overleaf = false) {
- background-color: fade(@file-tree-droppable-bg-color, 60%);
- }
- }
- i.fa {
- color: @file-tree-item-icon-color;
- font-size: 14px;
- &.linked-file-highlight {
- &when (@is-overleaf = true) {
- color: white;
- }
- &when (@is-overleaf = false) {
- color: @blue;
- }
- position: relative;
- top: 4px;
- left: -8px;
- font-size: 12px;
- }
- }
- i.fa-folder-open, i.fa-folder {
- color: @file-tree-item-folder-color;
- font-size: 14px;
- }
- i.toggle {
- width: 24px;
- padding: 6px;
- font-size: 0.7rem;
- color: @file-tree-item-toggle-color;
- }
-
- &.multi-selected {
- > .entity > .entity-name when (@is-overleaf = false) {
- background-color: @file-tree-multiselect-bg;
- &:hover {
- background-color: @file-tree-multiselect-hover-bg;
- }
- }
- > .entity when (@is-overleaf = true) {
- > .entity-name {
- > div > i.fa,
- > i.fa,
- .entity-menu-toggle i.fa {
- color: #FFF;
- }
- > i.fa i.linked-file-highlight {
- color: @blue;
- }
- color: #FFF;
- font-weight: bold;
- background-color: @file-tree-multiselect-bg;
- .fake-full-width-bg(@file-tree-multiselect-bg);
- &:hover {
- background-color: @file-tree-multiselect-hover-bg;
- .fake-full-width-bg(@file-tree-multiselect-hover-bg);
- }
- }
- }
- }
- .dropdown {
- position: absolute;
- right: 0;
- > a {
- padding: 0 12px;
- }
- }
-
- .rename-input {
- display: block;
- position: absolute;
- top: 1px;
- left: 44px;
- right: 32px;
- color: @file-tree-item-input-color;
- input {
- width: 100%;
- }
- }
-
- > .entity > .entity-name {
- .entity-menu-toggle {
- display: none;
- }
- }
- }
- }
-
- &:not(.multi-selected) {
- ul.file-tree-list li.selected {
- > .entity > .entity-name when (@is-overleaf = false) {
- color: @link-color;
- border-right: 4px solid @link-color;
- font-weight: bold;
- padding-right: 32px;
- i.fa-folder-open, i.fa {
- color: @link-color;
- }
- .entity-menu-toggle {
- display: inline;
- }
- }
- > .entity when (@is-overleaf = true) {
- > .entity-name {
- color: @file-tree-item-selected-color;
- > div > i.fa,
- > i.fa,
- .entity-menu-toggle i.fa {
- color: @file-tree-item-selected-color;
- }
- > i.fa i.linked-file-highlight {
- color: @blue;
- }
- background-color: @file-tree-item-selected-bg;
- font-weight: bold;
- padding-right: 32px;
- .fake-full-width-bg(@file-tree-item-selected-bg);
- .entity-menu-toggle {
- display: inline;
- }
- }
- }
- }
- }
- ul.droppable-hover.file-tree-list when (@is-overleaf = false) {
- background-color: fade(@file-tree-droppable-bg-color, 60%);
- }
- .ui-draggable-dragging when (@is-overleaf = true) {
- background-color: fade(@file-tree-item-selected-bg, 60%);
- color: @file-tree-item-selected-color;
- width: 75%;
- padding-left: @line-height-computed;
- }
- }
- // TODO check if the OL Beta theme is OK with darker themes.
- .editor-dark when (@is-overleaf = false) {
- aside#file-tree {
- // background-color: lighten(@editor-dark-background-color, 10%);
-
- ul.file-tree-list {
- .dropdown-toggle {
- color: @editor-dark-highlight-color;
- }
-
- li {
- .entity-name {
- color: #aaaaaa;
- &:hover {
- background-color: black;
- }
- }
- &.selected {
- > .entity > .entity-name {
- color: @editor-dark-highlight-color;
- border-color: @editor-dark-highlight-color;
- i.fa-folder-open, i.fa-folder, i.fa-file, i.fa-image, i.fa-file-pdf-o {
- color: @editor-dark-highlight-color;
- }
- }
- }
- }
- }
- }
- }
- .modal-new-file {
- padding: 0;
- table {
- width: 100%;
- td {
- vertical-align: top;
- }
- }
- .toggle-output-files-button {
- font-size: 80%;
- }
- }
- .modal-new-file--list {
- background-color: @modal-footer-background-color;
- width: 220px;
- ul {
- li {
- a {
- color: @text-color;
- padding: (@line-height-computed / 4);
- display: block;
- text-decoration: none;
- }
- }
- li.active {
- background-color: white;
- a {
- color: @link-color;
- }
- }
- li:hover {
- background-color: white;
- }
- }
- }
- .modal-new-file--body {
- padding: 20px;
- padding-top: (@line-height-computed / 4);
- }
- .modal-new-file--body-upload {
- padding-top: 20px;
- }
|