mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-12 03:54:16 +00:00
312 lines
6.3 KiB
Plaintext
Executable File
312 lines
6.3 KiB
Plaintext
Executable File
.postCreator {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
padding: 15px;
|
|
background-color: var(--background-color-accent);
|
|
|
|
max-width: 600px;
|
|
border-radius: 7px;
|
|
|
|
.actions {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
|
|
height: 40px;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
color: var(--text-color) !important;
|
|
|
|
>div {
|
|
margin-left: 10px;
|
|
font-size: 1rem;
|
|
|
|
svg {
|
|
margin: 0 !important;
|
|
color: var(--text-color) !important;
|
|
}
|
|
}
|
|
|
|
&.hided {
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
.uploader {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
border: 1px solid var(--border-color);
|
|
padding: 10px;
|
|
|
|
opacity: 1;
|
|
|
|
>div {
|
|
margin-left: 10px;
|
|
font-size: 1rem;
|
|
|
|
svg {
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
|
|
&.hided {
|
|
height: 0px;
|
|
opacity: 0;
|
|
}
|
|
|
|
|
|
.ant-upload {
|
|
span {
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
svg {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
|
|
.ant-upload-select-picture-card {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|
|
|
|
.ant-upload.ant-upload-select-picture-card {
|
|
display: flex;
|
|
align-self: center;
|
|
justify-content: center;
|
|
|
|
width: 10vw;
|
|
height: 10vw;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-color: var(--border-color);
|
|
background-color: transparent !important;
|
|
|
|
}
|
|
|
|
.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.ant-upload-list-item-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.ant-upload-list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.ant-upload-list-picture-card-container {
|
|
width: 10vw;
|
|
height: 10vw;
|
|
}
|
|
|
|
.hint {
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
align-self: center;
|
|
|
|
width: 10vw;
|
|
height: 10vw;
|
|
|
|
text-align: center;
|
|
|
|
background-color: transparent;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
padding: 10px;
|
|
|
|
svg {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 6px;
|
|
margin-right: 0 !important;
|
|
}
|
|
}
|
|
|
|
.file {
|
|
position: relative;
|
|
|
|
width: 10vw;
|
|
height: 10vw;
|
|
|
|
font-size: 2rem;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
border-radius: 10px;
|
|
|
|
&.uploading {
|
|
img {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.actions {
|
|
backdrop-filter: blur(5px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.actions {
|
|
opacity: 1;
|
|
backdrop-filter: blur(2px);
|
|
}
|
|
|
|
.preview {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.preview {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
transition: all 150ms ease-in-out;
|
|
|
|
backdrop-filter: blur(0);
|
|
|
|
opacity: 0;
|
|
|
|
svg {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.textInput {
|
|
display: flex;
|
|
width: 100%;
|
|
transition: height 150ms ease-in-out;
|
|
background-color: var(--background-color-accent);
|
|
|
|
svg {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.avatar {
|
|
width: fit-content;
|
|
height: 45px;
|
|
|
|
display: flex;
|
|
|
|
img {
|
|
width: 45px;
|
|
height: 45px;
|
|
border-radius: 12px;
|
|
}
|
|
}
|
|
|
|
.ant-input {
|
|
color: var(--background-color-contrast);
|
|
}
|
|
|
|
.textArea {
|
|
border-radius: 8px !important;
|
|
transition: all 150ms ease-in-out !important;
|
|
|
|
&.active {
|
|
background-color: var(--background-color-primary);
|
|
}
|
|
}
|
|
|
|
.ant-btn-primary {
|
|
z-index: 10;
|
|
position: relative;
|
|
border-radius: 0 10px 10px 0;
|
|
height: 100%;
|
|
vertical-align: bottom;
|
|
border: none;
|
|
box-shadow: none;
|
|
|
|
svg {
|
|
color: var(--text-color) !important;
|
|
}
|
|
}
|
|
|
|
.ant-input {
|
|
background-color: var(--background-color-accent);
|
|
|
|
z-index: 10;
|
|
position: relative;
|
|
border-color: transparent !important;
|
|
box-shadow: none;
|
|
border-radius: 3px 0 0;
|
|
height: 100%;
|
|
padding: 5px 10px;
|
|
transition: height 150ms linear;
|
|
width: 100%;
|
|
}
|
|
|
|
.ant-btn-primary[disabled] {
|
|
background-color: var(--background-color-accent);
|
|
}
|
|
|
|
.ant-input:hover {
|
|
border-color: #1890ff;
|
|
}
|
|
|
|
.ant-input-affix-wrapper {
|
|
height: 100%;
|
|
}
|
|
}
|
|
} |