Ghost/ghost/admin/app/styles/components/uploader.css

184 lines
3.4 KiB
CSS
Raw Normal View History

/* gh-file-input
/* ---------------------------------------------------------- */
/* Hide the original input */
.x-file--input {
width: 1px;
height: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
z-index: -1;
}
.x-file--input + label {
display: inline-block;
cursor: pointer;
}
.x-file--input:focus + label {
outline: 1px dotted #000;
outline: -webkit-focus-ring-color auto 5px;
}
.x-file--input + label * {
pointer-events: none;
}
2015-05-14 16:45:37 +03:00
/* Image Uploader
/* ---------------------------------------------------------- */
.gh-image-uploader {
2015-05-14 16:45:37 +03:00
position: relative;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
min-height: 140px;
2015-05-14 16:45:37 +03:00
overflow: hidden;
2015-05-16 14:43:12 +03:00
margin: 1.6em 0;
2022-02-08 16:56:19 +03:00
color: var(--middarkgrey);
2015-05-16 14:43:12 +03:00
text-align: center;
border-radius: 3px;
2015-05-14 16:45:37 +03:00
}
.gh-image-uploader.-drag-over {
2021-07-15 18:26:01 +03:00
border: 2px solid var(--green);
}
.gh-image-uploader.-with-image {
2021-02-09 19:22:58 +03:00
background: transparent !important;
border: none !important;
}
.gh-image-uploader img {
display: block;
min-width: 200px;
max-width: 100%;
margin: 0 auto;
line-height: 0;
}
.image-delete {
position: absolute;
top: 10px;
right: 10px;
z-index: 300;
display: block;
display: flex;
align-items: center;
padding: 8px;
color: #fff;
font-size: 13px;
line-height: 10px;
text-decoration: none;
background: rgba(0, 0, 0, 0.6);
border-radius: var(--border-radius);
box-shadow: rgba(255, 255, 255, 0.2) 0 0 0 1px;
}
.image-delete svg {
width: 13px;
height: 13px;
margin: 0 !important;
2015-05-14 16:45:37 +03:00
}
.image-delete:hover {
color: #fff;
cursor: pointer;
background: var(--red);
}
.gh-image-uploader .upload-form {
flex-grow: 1;
display: flex;
flex-direction: row;
width: 100%;
2015-05-14 16:45:37 +03:00
}
.gh-image-uploader .x-file-input {
flex-grow: 1;
display: flex;
2022-02-08 16:56:19 +03:00
width: 100%;
}
.gh-image-uploader .x-file-input label {
flex-grow: 1;
display: flex;
2017-03-16 17:39:57 +03:00
justify-content: center;
align-items: center;
outline: none;
}
.gh-image-uploader .description {
width: 100%;
font-size: 1.6rem;
text-align: center;
}
.gh-image-uploader .failed {
margin: 1em 2em;
font-size: 16px;
color: color-mod(var(--midgrey));
}
/* TODO: remove the gh-image-uploader classes once it's using gh-progrss-bar */
.gh-image-uploader .progress-container,
.gh-progress-container {
flex-grow: 1;
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
}
.gh-image-uploader .progress,
.gh-progress-container-progress {
width: 60%;
2015-05-14 16:45:37 +03:00
overflow: hidden;
margin: 0 auto;
2015-05-14 16:45:37 +03:00
background: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
border-radius: 12px;
}
.gh-image-uploader .bar,
.gh-progress-bar {
2021-06-21 13:03:35 +03:00
height: 8px;
background: var(--green);
2015-05-14 16:45:37 +03:00
}
.gh-image-uploader .bar.fail,
.gh-progress-bar.-error {
width: 100% !important;
2015-05-14 16:45:37 +03:00
background: var(--red);
}
.gh-image-uploader .bar.hidden {
display: none;
2015-05-14 16:45:37 +03:00
}
/* Unsplash Button
/* ---------------------------------------------------------- */
.gh-image-uploader-unsplash {
position: absolute;
bottom: 0;
left: 0;
width: 36px;
height: 36px;
padding: 10px;
opacity: 0.33;
transition: opacity 0.3s ease;
}
.gh-image-uploader-unsplash:hover {
cursor: pointer;
opacity: 1.0;
transition: opacity 0.3s ease;
}
.gh-image-uploader-unsplash svg {
2019-01-23 11:05:28 +03:00
width: 14px;
}