2022-05-26 11:17:55 +03:00
|
|
|
html {
|
2023-02-21 03:13:29 +03:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
|
2022-05-26 11:17:55 +03:00
|
|
|
line-height: 1.5;
|
|
|
|
color: #24292e;
|
|
|
|
}
|
|
|
|
|
2022-06-20 06:25:09 +03:00
|
|
|
body {
|
|
|
|
/* prevent premature breadcrumb wrapping on mobile */
|
|
|
|
min-width: 500px;
|
2023-02-20 12:23:31 +03:00
|
|
|
margin: 0;
|
2022-06-20 06:25:09 +03:00
|
|
|
}
|
|
|
|
|
2022-05-30 09:22:35 +03:00
|
|
|
.hidden {
|
2022-06-21 02:23:20 +03:00
|
|
|
display: none !important;
|
2022-05-30 09:22:35 +03:00
|
|
|
}
|
|
|
|
|
2022-05-26 11:17:55 +03:00
|
|
|
.head {
|
|
|
|
display: flex;
|
2022-05-29 07:43:40 +03:00
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
2023-02-20 12:23:31 +03:00
|
|
|
padding: 0.6em 1em;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
background-color: white;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
font-size: 1.25em;
|
2022-06-19 16:23:19 +03:00
|
|
|
padding-right: 0.6em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2023-02-21 03:13:29 +03:00
|
|
|
.breadcrumb>a {
|
2022-05-26 11:17:55 +03:00
|
|
|
color: #0366d6;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2023-02-21 03:13:29 +03:00
|
|
|
.breadcrumb>a:hover {
|
2022-05-26 11:17:55 +03:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* final breadcrumb */
|
2023-02-21 03:13:29 +03:00
|
|
|
.breadcrumb>b {
|
2022-05-26 11:17:55 +03:00
|
|
|
color: #24292e;
|
|
|
|
}
|
|
|
|
|
2023-02-21 03:13:29 +03:00
|
|
|
.breadcrumb>.separator {
|
2022-05-26 11:17:55 +03:00
|
|
|
color: #586069;
|
|
|
|
padding: 0 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb svg {
|
|
|
|
height: 100%;
|
2023-02-21 03:13:29 +03:00
|
|
|
fill: rgba(3, 47, 98, 0.5);
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2022-05-29 07:43:40 +03:00
|
|
|
.toolbox {
|
|
|
|
display: flex;
|
2022-06-19 17:16:43 +03:00
|
|
|
margin-right: 10px;
|
2022-05-29 07:43:40 +03:00
|
|
|
}
|
|
|
|
|
2023-02-24 03:21:57 +03:00
|
|
|
.toolbox>a,
|
|
|
|
.toolbox>div {
|
2022-06-20 06:25:09 +03:00
|
|
|
/* vertically align with breadcrumb text */
|
|
|
|
height: 1.1rem;
|
|
|
|
}
|
|
|
|
|
2022-07-04 15:12:35 +03:00
|
|
|
.toolbox .control {
|
|
|
|
cursor: pointer;
|
|
|
|
padding-left: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-file input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:24:59 +03:00
|
|
|
.upload-file label {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-05-29 07:43:40 +03:00
|
|
|
.searchbar {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 246px;
|
|
|
|
height: 22px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
transition: all .15s;
|
|
|
|
border: 1px #ddd solid;
|
|
|
|
border-radius: 15px;
|
2022-06-19 17:16:43 +03:00
|
|
|
margin-bottom: 2px;
|
2022-05-29 07:43:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar #search {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 16px;
|
|
|
|
padding: 1px;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar .icon {
|
|
|
|
color: #9a9a9a;
|
|
|
|
padding: 3px 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-05-26 11:17:55 +03:00
|
|
|
.main {
|
2023-02-20 17:50:24 +03:00
|
|
|
padding: 3.3em 1em 0;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2022-06-10 02:41:09 +03:00
|
|
|
.empty-folder {
|
2022-06-11 03:51:17 +03:00
|
|
|
font-style: italic;
|
2022-06-10 02:41:09 +03:00
|
|
|
}
|
|
|
|
|
2022-06-03 01:49:55 +03:00
|
|
|
.uploaders-table th,
|
|
|
|
.paths-table th {
|
2022-05-26 11:17:55 +03:00
|
|
|
text-align: left;
|
|
|
|
font-weight: unset;
|
|
|
|
color: #5c5c5c;
|
2022-05-26 16:28:30 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-06-03 01:49:55 +03:00
|
|
|
.uploaders-table td,
|
|
|
|
.paths-table td {
|
2022-05-26 16:28:30 +03:00
|
|
|
white-space: nowrap;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2022-06-03 01:49:55 +03:00
|
|
|
.uploaders-table .cell-status {
|
|
|
|
width: 80px;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding-left: 0.6em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2023-11-26 05:23:37 +03:00
|
|
|
.cell-status span {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2022-08-23 09:24:42 +03:00
|
|
|
.paths-table thead a {
|
|
|
|
color: unset;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2023-02-21 03:13:29 +03:00
|
|
|
.paths-table thead a>span {
|
2022-08-23 09:24:42 +03:00
|
|
|
padding-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paths-table tbody tr:hover {
|
2022-07-30 03:04:31 +03:00
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
|
2022-06-03 01:49:55 +03:00
|
|
|
.paths-table .cell-actions {
|
2023-06-01 15:33:21 +03:00
|
|
|
width: 90px;
|
2022-06-03 01:49:55 +03:00
|
|
|
display: flex;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding-left: 0.6em;
|
2022-05-26 14:52:54 +03:00
|
|
|
}
|
|
|
|
|
2022-06-03 01:49:55 +03:00
|
|
|
.paths-table .cell-mtime {
|
|
|
|
width: 120px;
|
|
|
|
padding-left: 0.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paths-table .cell-size {
|
|
|
|
text-align: right;
|
|
|
|
width: 70px;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding-left: 0.6em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.path svg {
|
2022-06-30 05:00:42 +03:00
|
|
|
height: 16px;
|
2023-02-21 03:13:29 +03:00
|
|
|
fill: rgba(3, 47, 98, 0.5);
|
2022-05-26 11:17:55 +03:00
|
|
|
padding-right: 0.5em;
|
2022-06-19 17:04:59 +03:00
|
|
|
vertical-align: text-top;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.path {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.path a {
|
|
|
|
color: #0366d6;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2022-06-19 17:04:59 +03:00
|
|
|
max-width: calc(100vw - 375px);
|
2022-06-20 06:25:09 +03:00
|
|
|
min-width: 200px;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.path a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2022-05-28 13:58:43 +03:00
|
|
|
.action-btn {
|
2022-07-04 16:20:00 +03:00
|
|
|
padding-right: 0.3em;
|
2023-02-22 05:04:40 +03:00
|
|
|
cursor: pointer;
|
2022-05-28 13:58:43 +03:00
|
|
|
}
|
|
|
|
|
2022-06-03 01:49:55 +03:00
|
|
|
.uploaders-table {
|
2022-05-26 11:17:55 +03:00
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploader {
|
2022-05-26 14:52:54 +03:00
|
|
|
padding-right: 1em;
|
|
|
|
}
|
2022-06-09 17:16:43 +03:00
|
|
|
|
2023-02-20 17:50:24 +03:00
|
|
|
.editor {
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100vh - 5rem);
|
|
|
|
border: 1px solid #ced4da;
|
|
|
|
outline: none;
|
2023-11-28 02:14:53 +03:00
|
|
|
padding: 5px;
|
2023-02-20 17:50:24 +03:00
|
|
|
}
|
|
|
|
|
2023-11-03 09:55:07 +03:00
|
|
|
.toolbox-right {
|
2023-02-20 17:50:24 +03:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 2em;
|
2023-02-21 07:42:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.save-btn {
|
2023-02-20 17:50:24 +03:00
|
|
|
cursor: pointer;
|
2023-11-15 14:44:44 +03:00
|
|
|
-webkit-user-select: none;
|
2023-02-20 17:50:24 +03:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2023-11-03 09:55:07 +03:00
|
|
|
.user-btn {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-name {
|
|
|
|
padding-left: 3px;
|
|
|
|
}
|
|
|
|
|
2023-02-20 17:50:24 +03:00
|
|
|
.not-editable {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2024-01-11 09:56:30 +03:00
|
|
|
.retry-btn {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-06-20 10:11:39 +03:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.path a {
|
|
|
|
min-width: 400px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-09 17:16:43 +03:00
|
|
|
/* dark theme */
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
.breadcrumb>b,
|
|
|
|
.searchbar #search {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploaders-table th,
|
|
|
|
.paths-table th {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg,
|
2022-06-20 06:25:09 +03:00
|
|
|
.path svg,
|
|
|
|
.breadcrumb svg {
|
2022-06-19 17:04:59 +03:00
|
|
|
fill: #fff;
|
2022-06-09 17:16:43 +03:00
|
|
|
}
|
|
|
|
|
2023-02-24 03:21:57 +03:00
|
|
|
.head {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
2022-06-09 17:16:43 +03:00
|
|
|
.searchbar {
|
|
|
|
background-color: #111;
|
|
|
|
border-color: #fff6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar svg {
|
|
|
|
fill: #fff6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.path a {
|
|
|
|
color: #3191ff;
|
|
|
|
}
|
2022-08-03 02:02:58 +03:00
|
|
|
|
2022-08-23 09:24:42 +03:00
|
|
|
.paths-table tbody tr:hover {
|
2022-08-03 02:02:58 +03:00
|
|
|
background-color: #1a1a1a;
|
|
|
|
}
|
2023-02-24 03:21:57 +03:00
|
|
|
|
|
|
|
.editor {
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
}
|
2023-02-21 03:13:29 +03:00
|
|
|
}
|