mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
small fixes
This commit is contained in:
@@ -101,6 +101,7 @@
|
||||
margin: 0 3px;
|
||||
vertical-align: middle;
|
||||
transform: translateY(-2px);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.spoilerButton td {
|
||||
@@ -113,6 +114,10 @@
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.spoilerButton label {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.postFormDesktop {
|
||||
display: none;
|
||||
|
||||
@@ -84,10 +84,9 @@
|
||||
.spoilerButton {
|
||||
display: inline-block;
|
||||
padding-top: 2px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.spoilerButton label {
|
||||
.spoilerButton label, .spoilerButton input[type="checkbox"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
@@ -257,7 +257,7 @@ const ReplyModal = ({ closeModal, showReplyModal, parentCid, postCid, scrollY, s
|
||||
<div className={styles.footer}>
|
||||
{url && !isAndroid && (
|
||||
<>
|
||||
{t('link_type')}: <LinkTypePreviewer link={url} />{' '}
|
||||
{t('link_type')}: <LinkTypePreviewer link={url} />
|
||||
</>
|
||||
)}
|
||||
{isAndroid && (
|
||||
@@ -267,7 +267,9 @@ const ReplyModal = ({ closeModal, showReplyModal, parentCid, postCid, scrollY, s
|
||||
{isUploading ? t('uploading') : t('choose_file')}
|
||||
</button>
|
||||
</span>
|
||||
<span className={styles.uploadFileName}>{uploadedFileName ? uploadedFileName : t('no_file_chosen')}</span>
|
||||
<span className={styles.uploadFileName} title={uploadedFileName ? uploadedFileName : t('no_file_chosen')}>
|
||||
{uploadedFileName ? uploadedFileName : t('no_file_chosen')}
|
||||
</span>
|
||||
</span>
|
||||
)}
|
||||
<span className={styles.spoilerButton}>
|
||||
|
||||
Reference in New Issue
Block a user