mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-09 03:32:56 +00:00

Former-commit-id: 4aab1964b9462d1fdee92999dd5a7d03f17b4457 [formerly 22352202547980b191886cf29f68ce8e9cc4c39b] [formerly 1a66bae34022092936c2912ea3a323a6984fe7e4 [formerly 1e7c4e6468b07dbb2b2726df4ff345371e2ec714]] Former-commit-id: 94170b15369b05e8f4985e88242ba453b5545116 [formerly 2a0b57bebcd48c0189974f4f9e72679b5c67f37b] Former-commit-id: 635be5ad2826c1659670997900122d024a46de24
140 lines
2.2 KiB
CSS
140 lines
2.2 KiB
CSS
.prompt {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.075);
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
padding: 2em;
|
|
max-width: 25em;
|
|
width: 90%;
|
|
max-height: 95%;
|
|
z-index: 99999;
|
|
}
|
|
|
|
.overlay {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.overlay.active,
|
|
.prompt.active,
|
|
.help.active {
|
|
animation: .1s show forwards;
|
|
}
|
|
|
|
.prompt h3 {
|
|
margin: 0;
|
|
font-weight: 500;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.prompt p {
|
|
font-size: .9em;
|
|
color: rgba(0, 0, 0, 0.8);
|
|
margin: .5em 0 1em;
|
|
}
|
|
|
|
.prompt input {
|
|
width: 100%;
|
|
border: 1px solid #dadada;
|
|
line-height: 1;
|
|
padding: .3em;
|
|
}
|
|
|
|
.prompt code {
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.prompt div {
|
|
margin-top: 1em;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.prompt .cancel {
|
|
background-color: #ECEFF1;
|
|
color: #37474F;
|
|
}
|
|
|
|
.prompt .cancel:hover {
|
|
background-color: #e9eaeb;
|
|
}
|
|
|
|
/* * * * * * * * * * * * * * * *
|
|
* PROMPT - MOVE *
|
|
* * * * * * * * * * * * * * * */
|
|
|
|
.file-list {
|
|
max-height: 50vh;
|
|
overflow: auto;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.file-list li {
|
|
width: 100%;
|
|
user-select: none;
|
|
border-radius: .2em;
|
|
padding: .3em;
|
|
}
|
|
|
|
.file-list li[aria-selected=true] {
|
|
background: #2196f3 !important;
|
|
color: #fff !important;
|
|
transition: .1s ease all;
|
|
}
|
|
|
|
.file-list li:hover {
|
|
background-color: #e9eaeb;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.file-list li:before {
|
|
content: "folder";
|
|
color: #6f6f6f;
|
|
vertical-align: middle;
|
|
line-height: 1.4;
|
|
font-family: 'Material Icons';
|
|
font-size: 1.75em;
|
|
margin-right: .25em;
|
|
}
|
|
|
|
.file-list li[aria-selected=true]:before {
|
|
color: white;
|
|
}
|
|
|
|
.help {
|
|
max-width: 24em;
|
|
}
|
|
|
|
.help ul {
|
|
padding: 0;
|
|
margin: 1em 0;
|
|
list-style: none;
|
|
}
|
|
|
|
@keyframes show {
|
|
0% {
|
|
display: none;
|
|
opacity: 0;
|
|
}
|
|
1% {
|
|
display: block;
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
}
|