mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-25 10:10:05 +08:00
refactor: restructure directories to improve module organization Foxel.Models.Request.Picture - Foxel.Models.Request.Tag - Foxel.Models.Request.Auth - Foxel.Models.Request.Picture
This commit is contained in:
72
Web/src/components/image/ShareImageDialog.css
Normal file
72
Web/src/components/image/ShareImageDialog.css
Normal file
@@ -0,0 +1,72 @@
|
||||
.share-image-dialog .ant-modal-body {
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.share-image-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.share-image-preview {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 16px;
|
||||
background-color: #f0f0f0;
|
||||
border-radius: 8px;
|
||||
padding: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.share-preview-img {
|
||||
max-width: 100%;
|
||||
max-height: 200px;
|
||||
object-fit: contain;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.share-image-controls {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.share-type-switch {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.share-tabs {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.share-tab-content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.share-input-group {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.share-input {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.share-copy-btn {
|
||||
width: 40px;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.share-copy-btn.copied {
|
||||
background-color: #52c41a;
|
||||
border-color: #52c41a;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* 响应式调整 */
|
||||
@media (max-width: 576px) {
|
||||
.share-image-dialog {
|
||||
max-width: 90%;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user