123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-FileBrowser {
- min-width: 300px;
- color: #757575;
- background: #FAFAFA;
- font-size: 14px;
- }
- .jp-BreadCrumbs {
- margin: 4px 4px 4px 6px;
- }
- .jp-BreadCrumbs-item {
- margin: 0px 4px;
- cursor: pointer;
- }
- .jp-BreadCrumbs-item:first-child {
- margin-left: 0px;
- }
- .jp-BreadCrumbs-item.jp-mod-dropTarget {
- background: #FEDBC4;
- }
- .jp-FileButtons {
- border-top: 1px solid #E0E0E0;
- border-bottom: 1px solid #E0E0E0;
- padding: 9px 0;
- }
- .jp-FileButtons-button {
- flex: 1 1 auto;
- max-width: 100px;
- padding: 4px 6px;
- color: #757575;
- background: #FAFAFA;
- border: none;
- font-size: 16px;
- outline: 0;
- }
- .jp-FileButtons-button::-moz-focus-inner {
- border: 0;
- }
- .jp-FileButtons-button:hover {
- background: #F5F5F5;
- border-color: #D0D0D0;
- z-index: 1; /* raise overlapping border */
- }
- .jp-FileButtons-button:active,
- .jp-FileButtons-button.jp-id-create.jp-mod-active {
- background: #EEEEEE;
- border-color: #BDBDBD;
- z-index: 1; /* raise overlapping border */
- }
- .jp-FileButtons-button.jp-id-create {
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- }
- .jp-FileButtons-button.jp-id-upload {
- margin-left: -1px; /* overlap borders */
- }
- .jp-FileButtons-button.jp-id-refresh {
- margin-left: -1px; /* overlap borders */
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- .jp-DirListing {
- outline: 0;
- }
- .jp-DirListing-header {
- margin-bottom: 4px;
- border-top: 1px solid #E0E0E0;
- border-bottom: 1px solid #E0E0E0;
- }
- .jp-DirListing-headerItem {
- padding: 4px 6px;
- font-weight: 500;
- }
- .jp-DirListing-headerItem:hover {
- background: #EEEEEE;
- border-radius: 2px;
- }
- .jp-DirListing-headerItem.jp-id-name {
- flex: 1 0 84px;
- }
- .jp-DirListing-headerItem.jp-id-modified {
- flex: 0 0 112px;
- border-left: 1px solid #E0E0E0;
- }
- .jp-DirListing-headerItem.jp-mod-selected {
- font-weight: 600;
- }
- .jp-DirListing-headerItem.jp-mod-selected .jp-DirListing-headerItemIcon:before {
- font-family: FontAwesome;
- content: "\f0d8";
- float: right;
- }
- .jp-DirListing-headerItem.jp-mod-selected.jp-mod-descending .jp-DirListing-headerItemIcon:before {
- font-family: FontAwesome;
- content: "\f0d7";
- float: right;
- }
- /* increase specificity to override bundled default */
- .jp-DirListing > .jp-DirListing-content {
- padding: 0px 8px;
- }
- .jp-DirListing-item {
- padding: 4px;
- }
- .jp-DirListing-item.jp-mod-selected {
- color: white;
- background: #F27624;
- border-radius: 2px;
- }
- .jp-DirListing-item.jp-mod-dropTarget {
- background: #FEDBC4;
- }
- .jp-DirListing-item:hover:not(.jp-mod-selected) {
- background: #EEEEEE;
- }
- .jp-DirListing-itemIcon {
- flex: 0 0 20px;
- font-family: FontAwesome;
- }
- .jp-DirListing-itemText {
- flex: 1 0 64px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .jp-DirListing-itemModified {
- flex: 0 0 108px;
- text-align: right;
- }
- .jp-DirListing-editor {
- flex: 1 0 64px;
- }
- /** TODO
- .jp-DirListing-item.jp-mod-selected.jp-mod-cut {
- background: #F1C40F;
- color: #F5F5F5;
- }
- **/
- .jp-type-folder.jp-DirListing-itemIcon:before {
- content: "\f114";
- }
- .jp-type-file.jp-DirListing-itemIcon:before {
- content: "\f016";
- }
- .jp-type-notebook.jp-DirListing-itemIcon:before {
- content: "\f02d";
- }
- .jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon {
- color: #27AE60;
- }
|