2022-05-26 11:17:55 +03:00
|
|
|
html {
|
|
|
|
font-family: -apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
|
|
|
|
line-height: 1.5;
|
|
|
|
color: #24292e;
|
|
|
|
}
|
|
|
|
|
2022-05-29 07:43:40 +03:00
|
|
|
body {
|
|
|
|
width: 700px;
|
|
|
|
}
|
|
|
|
|
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;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding: 1em 1em 0;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
font-size: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb > a {
|
|
|
|
color: #0366d6;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb > a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* final breadcrumb */
|
|
|
|
.breadcrumb > b {
|
|
|
|
color: #24292e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb > .separator {
|
|
|
|
color: #586069;
|
|
|
|
padding: 0 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb svg {
|
|
|
|
height: 100%;
|
|
|
|
fill: rgba(3,47,98,0.5);
|
|
|
|
padding-right: 0.5em;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
2022-05-29 07:43:40 +03:00
|
|
|
.toolbox {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 246px;
|
|
|
|
height: 22px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
transition: all .15s;
|
|
|
|
border: 1px #ddd solid;
|
|
|
|
border-radius: 15px;
|
|
|
|
margin: 0 0 2px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar #search {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 16px;
|
|
|
|
padding: 1px;
|
|
|
|
font-family: helvetica neue,luxi sans,Tahoma,hiragino sans gb,STHeiti,sans-serif;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar .icon {
|
|
|
|
color: #9a9a9a;
|
|
|
|
padding: 3px 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-05-26 13:06:52 +03:00
|
|
|
.upload-control {
|
2022-05-26 11:17:55 +03:00
|
|
|
cursor: pointer;
|
2022-05-28 13:58:43 +03:00
|
|
|
padding-left: 0.25em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2022-05-29 07:43:40 +03:00
|
|
|
.upload-control input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-05-26 11:17:55 +03:00
|
|
|
.main {
|
2022-05-26 16:28:30 +03:00
|
|
|
padding: 0 1em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.main th {
|
|
|
|
text-align: left;
|
|
|
|
font-weight: unset;
|
|
|
|
color: #5c5c5c;
|
2022-05-26 16:28:30 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main td {
|
|
|
|
white-space: nowrap;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.main .cell-name {
|
2022-05-29 06:38:54 +03:00
|
|
|
width: 400px;
|
2022-05-26 14:52:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.main .cell-mtime {
|
2022-05-29 06:38:54 +03:00
|
|
|
width: 120px;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding-left: 0.6em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.main .cell-size {
|
|
|
|
text-align: right;
|
2022-05-30 06:47:57 +03:00
|
|
|
width: 70px;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding-left: 0.6em;
|
2022-05-26 14:52:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.main .cell-actions {
|
2022-05-29 06:38:54 +03:00
|
|
|
width: 60px;
|
2022-05-28 13:58:43 +03:00
|
|
|
display: flex;
|
2022-05-26 16:28:30 +03:00
|
|
|
padding-left: 0.6em;
|
2022-05-26 11:17:55 +03:00
|
|
|
}
|
|
|
|
|
2022-05-26 14:52:54 +03:00
|
|
|
|
2022-05-26 11:17:55 +03:00
|
|
|
.path svg {
|
|
|
|
height: 100%;
|
|
|
|
fill: rgba(3,47,98,0.5);
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.path {
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.path a {
|
|
|
|
color: #0366d6;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.path a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2022-05-28 13:58:43 +03:00
|
|
|
.action-btn {
|
|
|
|
padding-left: 0.4em;
|
|
|
|
}
|
|
|
|
|
2022-05-26 11:17:55 +03:00
|
|
|
.uploaders {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploader {
|
2022-05-26 14:52:54 +03:00
|
|
|
padding-right: 1em;
|
|
|
|
}
|