mirror of
https://github.com/woodchen-ink/obsidian-publish-to-discourse.git
synced 2025-07-18 05:42:05 +08:00
- Updated styles for modal and form areas to improve layout and usability. - Added support for selecting and managing tags in the DiscourseSync settings. - Implemented fetching of available tags from the Discourse API. - Enhanced the category selection modal to include tag selection functionality. - Updated settings interface to store selected tags. - Improved error handling and user feedback during tag operations.
339 lines
7.0 KiB
CSS
339 lines
7.0 KiB
CSS
/*
|
||
|
||
This CSS file will be included with your plugin, and
|
||
available in the app when your plugin is enabled.
|
||
|
||
If your plugin does not need CSS, delete this file.
|
||
|
||
*/
|
||
|
||
/* 基础模态框样式覆盖 */
|
||
.modal.mod-discourse-sync {
|
||
max-width: 500px;
|
||
max-height: 90vh;
|
||
background-color: var(--background-primary);
|
||
border-radius: 8px;
|
||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
/* 内容区域样式 */
|
||
.discourse-sync-modal {
|
||
padding: 24px;
|
||
width: 100%;
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
/* 表单区域 */
|
||
.discourse-sync-modal .form-area {
|
||
flex-grow: 1;
|
||
min-height: 0;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
/* 按钮区域固定在底部 */
|
||
.discourse-sync-modal .button-area {
|
||
flex-shrink: 0;
|
||
margin-top: auto;
|
||
}
|
||
|
||
.discourse-sync-modal h1 {
|
||
margin: 0 0 24px 0;
|
||
font-size: 1.5em;
|
||
font-weight: 600;
|
||
color: var(--text-normal);
|
||
}
|
||
|
||
/* 表单容器通用样式 */
|
||
.discourse-sync-modal .select-container,
|
||
.discourse-sync-modal .tag-container {
|
||
margin-bottom: 24px;
|
||
padding: 0; /* 移除内边距 */
|
||
}
|
||
|
||
.discourse-sync-modal .select-container label,
|
||
.discourse-sync-modal .tag-container label {
|
||
display: block;
|
||
margin-bottom: 8px;
|
||
font-weight: 500;
|
||
color: var(--text-normal);
|
||
}
|
||
|
||
/* 输入框和选择器样式 */
|
||
.discourse-sync-modal select,
|
||
.discourse-sync-modal .tag-select-area {
|
||
width: 100%;
|
||
padding: 8px 12px;
|
||
border: 2px solid var(--background-modifier-border);
|
||
border-radius: 4px;
|
||
background-color: var(--background-primary);
|
||
color: var(--text-normal);
|
||
font-size: 14px;
|
||
min-height: 42px;
|
||
}
|
||
|
||
.discourse-sync-modal select {
|
||
height: 42px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.discourse-sync-modal select:focus {
|
||
border-color: var(--interactive-accent);
|
||
outline: none;
|
||
}
|
||
|
||
.discourse-sync-modal .submit-button {
|
||
width: 100%;
|
||
padding: 10px 16px;
|
||
background-color: var(--interactive-accent);
|
||
color: var(--text-on-accent);
|
||
border: none;
|
||
border-radius: 4px;
|
||
cursor: pointer;
|
||
font-weight: 500;
|
||
font-size: 14px;
|
||
transition: background-color 0.2s ease;
|
||
}
|
||
|
||
.discourse-sync-modal .submit-button:hover {
|
||
background-color: var(--interactive-accent-hover);
|
||
}
|
||
|
||
.discourse-sync-modal .submit-button:disabled {
|
||
opacity: 0.7;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
/* 提示信息样式 */
|
||
.discourse-sync-modal .notice {
|
||
margin-top: 16px;
|
||
padding: 16px;
|
||
border-radius: 8px;
|
||
text-align: left;
|
||
font-size: 14px;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||
}
|
||
|
||
.discourse-sync-modal .notice.success {
|
||
background-color: var(--background-modifier-success-hover);
|
||
color: var(--text-success);
|
||
text-align: center;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.discourse-sync-modal .notice.error {
|
||
background: rgb(255, 235, 235);
|
||
border: 1px solid rgba(255, 82, 82, 0.2);
|
||
color: rgb(255, 82, 82);
|
||
}
|
||
|
||
.discourse-sync-modal .error-title {
|
||
font-size: 15px;
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
color: rgb(255, 82, 82);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
|
||
.discourse-sync-modal .error-title::before {
|
||
content: "⚠️";
|
||
font-size: 16px;
|
||
}
|
||
|
||
.discourse-sync-modal .error-message {
|
||
color: rgb(255, 82, 82);
|
||
opacity: 0.8;
|
||
font-size: 13px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.discourse-sync-modal .retry-button {
|
||
margin-top: 12px;
|
||
padding: 6px 16px;
|
||
background-color: transparent;
|
||
color: rgb(255, 82, 82);
|
||
border: 1px solid rgb(255, 82, 82);
|
||
border-radius: 4px;
|
||
cursor: pointer;
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
transition: all 0.2s ease;
|
||
}
|
||
|
||
.discourse-sync-modal .retry-button:hover {
|
||
background-color: rgb(255, 82, 82);
|
||
color: white;
|
||
}
|
||
|
||
/* 标签选择区域样式 */
|
||
.discourse-sync-modal .tag-select-area {
|
||
padding: 8px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
position: relative;
|
||
}
|
||
|
||
.discourse-sync-modal .selected-tags {
|
||
display: none; /* 默认隐藏 */
|
||
flex-wrap: wrap;
|
||
gap: 6px;
|
||
margin-bottom: 8px;
|
||
min-height: 28px;
|
||
}
|
||
|
||
.discourse-sync-modal .selected-tags:not(:empty) {
|
||
display: flex; /* 当有内容时显示 */
|
||
}
|
||
|
||
.discourse-sync-modal .tag {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
padding: 4px 8px;
|
||
background-color: var(--interactive-accent);
|
||
color: var(--text-on-accent);
|
||
border-radius: 4px;
|
||
font-size: 12px;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.discourse-sync-modal .remove-tag {
|
||
cursor: pointer;
|
||
font-size: 14px;
|
||
width: 16px;
|
||
height: 16px;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: 50%;
|
||
background-color: rgba(255, 255, 255, 0.2);
|
||
margin-left: 4px;
|
||
}
|
||
|
||
.discourse-sync-modal .remove-tag:hover {
|
||
background-color: rgba(255, 255, 255, 0.3);
|
||
}
|
||
|
||
.discourse-sync-modal input[type="text"] {
|
||
width: 100%;
|
||
padding: 8px;
|
||
border: none;
|
||
background: transparent;
|
||
color: var(--text-normal);
|
||
font-size: 14px;
|
||
outline: none;
|
||
}
|
||
|
||
.discourse-sync-modal .suggestions-container {
|
||
max-height: 250px;
|
||
overflow-y: auto;
|
||
border-bottom: 1px solid var(--background-modifier-border);
|
||
}
|
||
|
||
/* 标签输入容器 */
|
||
.discourse-sync-modal .tag-input-container {
|
||
position: relative;
|
||
width: 100%;
|
||
}
|
||
|
||
/* 标签建议下拉框 */
|
||
.discourse-sync-modal .tag-suggestions {
|
||
position: fixed;
|
||
background-color: var(--background-primary);
|
||
border: 1px solid var(--background-modifier-border);
|
||
border-radius: 4px;
|
||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||
z-index: 1001;
|
||
max-height: 180px;
|
||
overflow-y: auto;
|
||
margin-top: 4px;
|
||
display: none; /* 默认隐藏 */
|
||
}
|
||
|
||
.discourse-sync-modal .tag-suggestions:not(:empty) {
|
||
display: block; /* 当有内容时显示 */
|
||
}
|
||
|
||
/* 标签建议项 */
|
||
.discourse-sync-modal .tag-suggestion {
|
||
padding: 8px 12px;
|
||
cursor: pointer;
|
||
color: var(--text-normal);
|
||
font-size: 14px;
|
||
display: flex;
|
||
align-items: center;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
background-color: var(--background-primary);
|
||
}
|
||
|
||
.discourse-sync-modal .tag-suggestion:hover {
|
||
background-color: var(--background-modifier-hover);
|
||
}
|
||
|
||
/* 美化滚动条 */
|
||
.discourse-sync-modal .tag-suggestions::-webkit-scrollbar {
|
||
width: 4px;
|
||
}
|
||
|
||
.discourse-sync-modal .tag-suggestions::-webkit-scrollbar-track {
|
||
background: transparent;
|
||
}
|
||
|
||
.discourse-sync-modal .tag-suggestions::-webkit-scrollbar-thumb {
|
||
background-color: var(--background-modifier-border);
|
||
border-radius: 2px;
|
||
}
|
||
|
||
.discourse-sync-modal .tag-suggestions::-webkit-scrollbar-thumb:hover {
|
||
background-color: var(--background-modifier-border-hover);
|
||
}
|
||
|
||
/* 移除 tag-container 的 z-index,避免干扰 */
|
||
.discourse-sync-modal .tag-container {
|
||
position: relative;
|
||
}
|
||
|
||
.discourse-sync-modal .tag-notice {
|
||
position: fixed;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
padding: 12px 20px;
|
||
background-color: rgb(255, 235, 235);
|
||
border: 1px solid rgba(255, 82, 82, 0.2);
|
||
color: rgb(255, 82, 82);
|
||
border-radius: 4px;
|
||
font-size: 13px;
|
||
text-align: center;
|
||
z-index: 1002;
|
||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||
max-width: 80%;
|
||
white-space: nowrap;
|
||
opacity: 0;
|
||
animation: fadeInOut 2s ease-in-out forwards;
|
||
}
|
||
|
||
@keyframes fadeInOut {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
10% {
|
||
opacity: 1;
|
||
}
|
||
90% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|