2025-07-09 15:50:15 +00:00
|
|
|
|
/* 網格視圖容器 Grid View Container */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-grid-view-container {
|
2025-02-07 15:45:42 +00:00
|
|
|
|
padding: 0px;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
height: 100%;
|
2025-11-11 07:30:36 +00:00
|
|
|
|
container-type: inline-size;
|
|
|
|
|
|
container-name: grid-view;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
2025-06-18 15:29:27 +00:00
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 網格容器 Grid Container */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-grid-container {
|
2025-02-07 15:45:42 +00:00
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(var(--grid-item-width, 300px), 1fr));
|
2025-08-11 15:55:07 +00:00
|
|
|
|
gap: 10px;
|
|
|
|
|
|
padding: 10px !important;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
align-items: start;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
align-content: start;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
background: var(--background-secondary) !important;
|
2025-02-22 09:01:37 +00:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
overflow-y: auto;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 行動裝置隱藏滾動條 Mobile hidden Scrollbar */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.is-mobile .ge-grid-container::-webkit-scrollbar {
|
2025-02-18 08:06:58 +00:00
|
|
|
|
display: none !important;
|
|
|
|
|
|
width: 0 !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 網格項目 Grid Item */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-grid-item {
|
2025-02-07 15:45:42 +00:00
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
2026-01-13 07:46:35 +00:00
|
|
|
|
border-radius: var(--radius-m);
|
2025-04-11 16:08:46 +00:00
|
|
|
|
padding: 10px;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
|
|
|
|
display: flex;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
gap: 14px;
|
2025-03-09 16:36:27 +00:00
|
|
|
|
height: var(--grid-item-height);
|
2026-05-17 18:01:43 +00:00
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-21 11:25:57 +00:00
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
|
.ge-grid-item:hover {
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
background-color: var(--text-selection) !important;
|
|
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item:hover p {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-15 09:52:33 +00:00
|
|
|
|
.ge-grid-item-full-height {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-07 17:56:16 +00:00
|
|
|
|
/* 右上角懸浮開啟筆記按鈕 Hover Open-in-Grid Button
|
|
|
|
|
|
.ge-grid-item { position: relative; }
|
2025-08-21 16:26:57 +00:00
|
|
|
|
.ge-hover-open-note {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 6px;
|
|
|
|
|
|
right: 6px;
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
2026-06-07 17:56:16 +00:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
background: transparent;
|
2025-08-21 16:26:57 +00:00
|
|
|
|
border: 0;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2026-06-07 17:56:16 +00:00
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
|
color: var(--text-muted);
|
2025-08-21 16:26:57 +00:00
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item:hover .ge-hover-open-note {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-hover-open-note:hover {
|
2026-06-07 17:56:16 +00:00
|
|
|
|
background: var(--background-modifier-hover);
|
|
|
|
|
|
color: var(--text-normal);
|
2025-08-21 16:26:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-hover-open-note svg {
|
|
|
|
|
|
width: 14px;
|
|
|
|
|
|
height: 14px;
|
|
|
|
|
|
} */
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 摘要區域 Content Area */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-content-area {
|
2025-02-07 15:45:42 +00:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: flex-start;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標題容器 Title Container */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-title-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標題圖示 Icon Container */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-icon-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 圖片圖示 Image Icon */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-icon-container.ge-img {
|
|
|
|
|
|
color: var(--color-blue);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 影片圖示 Video Icon */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-icon-container.ge-video {
|
|
|
|
|
|
color: var(--color-red);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 音樂圖示 Audio Icon */
|
2025-03-28 16:35:47 +00:00
|
|
|
|
.ge-icon-container.ge-audio {
|
|
|
|
|
|
color: var(--color-purple);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* PDF圖示 PDF Icon */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-icon-container.ge-pdf {
|
|
|
|
|
|
color: var(--color-orange);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* Canvas圖示 Canvas Icon */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-icon-container.ge-canvas {
|
|
|
|
|
|
color: var(--color-green);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 基礎圖示 Base Icon */
|
2025-06-12 17:12:30 +00:00
|
|
|
|
.ge-icon-container.ge-base {
|
|
|
|
|
|
color: var(--color-cyan);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標題 Title */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-title {
|
|
|
|
|
|
margin: 0 0 0 3px;
|
2025-03-09 16:36:27 +00:00
|
|
|
|
font-size: var(--title-font-size);
|
2025-02-07 15:45:42 +00:00
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
2025-02-24 09:35:51 +00:00
|
|
|
|
display: block;
|
|
|
|
|
|
width: 100%;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 多行標題支援 Multiline Title */
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-title-container:has(.ge-multiline-title) {
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-title-container:has(.ge-multiline-title) .ge-icon-container {
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-title-container:has(.ge-multiline-title) .ge-icon-container svg {
|
|
|
|
|
|
width: 14px;
|
|
|
|
|
|
height: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-multiline-title {
|
|
|
|
|
|
white-space: normal !important;
|
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
|
line-clamp: 2;
|
|
|
|
|
|
-webkit-box-orient: vertical;
|
2026-05-24 14:44:55 +00:00
|
|
|
|
line-height: 1.3;
|
2025-07-08 13:40:52 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 摘要p Content Area p */
|
2025-02-24 09:35:51 +00:00
|
|
|
|
.ge-content-area p {
|
2025-04-11 16:08:46 +00:00
|
|
|
|
margin: 5px 0 0 0;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
color: var(--text-faint);
|
2025-02-09 16:46:29 +00:00
|
|
|
|
font-size: 0.85em;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: -webkit-box;
|
2025-07-11 09:39:33 +00:00
|
|
|
|
height: 100%;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
-webkit-line-clamp: 3;
|
2025-06-11 08:49:47 +00:00
|
|
|
|
line-clamp: 3;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
-webkit-box-orient: vertical;
|
2025-04-13 08:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-24 09:35:51 +00:00
|
|
|
|
.ge-content-area p:empty {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
.ge-content-area-p-field,
|
|
|
|
|
|
.ge-content-area .ge-content-area-p-field {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
-webkit-line-clamp: unset !important;
|
|
|
|
|
|
line-clamp: unset !important;
|
|
|
|
|
|
-webkit-box-orient: unset !important;
|
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
|
overflow: visible;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 圖片區域 Image Area */
|
2025-02-24 09:35:51 +00:00
|
|
|
|
.ge-image-area {
|
|
|
|
|
|
width: var(--image-area-width);
|
|
|
|
|
|
height: var(--image-area-height);
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-image-area img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-image-area video {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 直向卡片容器 Vertical Card Container */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-vertical-card .ge-grid-container {
|
|
|
|
|
|
/* 使用既有的欄寬變數,僅改 gap 與 padding 以符合卡片視覺 */
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
padding: 16px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 直向卡片 Vertical Card Item */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-vertical-card .ge-grid-item {
|
|
|
|
|
|
/* 垂直排列 */
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: stretch;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
height: var(--grid-item-height);
|
|
|
|
|
|
/* 與一般網格一致,保持同排等高 */
|
2025-07-11 09:39:33 +00:00
|
|
|
|
gap: 0px;
|
|
|
|
|
|
padding: 0px !important;
|
2025-07-08 13:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 摘要文字 Content Area */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-vertical-card .ge-content-area {
|
|
|
|
|
|
order: 1;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
/* 使摘要區撐開,標籤可貼底 */
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
/* Add this line */
|
2025-07-11 09:39:33 +00:00
|
|
|
|
padding: 10px !important;
|
2025-07-08 13:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 圖片置中,滿版顯示 Image Area */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-vertical-card .ge-image-area {
|
|
|
|
|
|
order: 3;
|
|
|
|
|
|
width: 100%;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
height: var(--image-area-height);
|
2025-07-08 13:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標籤列置底 Tags Container */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-vertical-card .ge-tags-container {
|
|
|
|
|
|
order: 4;
|
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 按設定切換直向卡片圖片位置 */
|
|
|
|
|
|
.ge-vertical-card.ge-image-top .ge-image-area {
|
|
|
|
|
|
order: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-vertical-card.ge-image-top .ge-content-area {
|
|
|
|
|
|
order: 3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
.ge-vertical-card.ge-image-top .ge-image-area img,
|
|
|
|
|
|
.ge-vertical-card.ge-image-top .ge-image-area video {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
border-radius: calc(var(--radius-m) - var(--border-width)) calc(var(--radius-m) - var(--border-width)) 0px 0px !important;
|
|
|
|
|
|
}
|
2025-07-11 09:39:33 +00:00
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 預設 bottom 可維持原有順序,以下為明確設置 */
|
|
|
|
|
|
.ge-vertical-card.ge-image-bottom .ge-image-area {
|
|
|
|
|
|
order: 3;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-vertical-card.ge-image-bottom .ge-content-area {
|
|
|
|
|
|
order: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
.ge-vertical-card.ge-image-bottom .ge-image-area img,
|
|
|
|
|
|
.ge-vertical-card.ge-image-bottom .ge-image-area video {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
border-radius: 0px 0px calc(var(--radius-m) - var(--border-width)) calc(var(--radius-m) - var(--border-width)) !important;
|
|
|
|
|
|
}
|
2025-07-11 09:39:33 +00:00
|
|
|
|
|
2025-07-08 13:40:52 +00:00
|
|
|
|
/* 鼠標懸停效果:整張卡片微抬升 */
|
2026-02-21 11:25:57 +00:00
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
|
.ge-vertical-card .ge-grid-item:hover {
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
}
|
2025-07-08 13:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 僅圖片/影片的直向卡片 Media Card */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-vertical-card .ge-media-card {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding: 0;
|
|
|
|
|
|
/* 移除內距,讓媒體填滿 */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
border: none;
|
|
|
|
|
|
gap: 0;
|
|
|
|
|
|
height: var(--grid-item-height);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-vertical-card .ge-media-card .ge-image-area {
|
|
|
|
|
|
order: 1;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: var(--image-area-height);
|
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-vertical-card .ge-media-card .ge-image-area img,
|
|
|
|
|
|
.ge-vertical-card .ge-media-card .ge-image-area video {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
border-radius: var(--radius-m) !important;
|
2025-07-08 13:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-vertical-card .ge-media-card .ge-content-area,
|
|
|
|
|
|
.ge-vertical-card .ge-media-card .ge-tags-container {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
display: none !important;
|
|
|
|
|
|
/* 隱藏標題、摘要、標籤 */
|
2025-07-08 13:40:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標籤容器 Tags Container */
|
2025-04-13 08:08:46 +00:00
|
|
|
|
.ge-tags-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標籤樣式 Tag Style */
|
2025-04-13 08:08:46 +00:00
|
|
|
|
.ge-tag {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 0 6px;
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
background-color: var(--background-secondary-alt);
|
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 影片縮圖樣式 */
|
|
|
|
|
|
.ge-video-thumbnail {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
border-radius: 4px;
|
2025-07-11 09:39:33 +00:00
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-video-thumbnail svg {
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 選中項目的樣式 Selected Item */
|
|
|
|
|
|
.ge-selected-item {
|
2026-06-07 17:56:16 +00:00
|
|
|
|
outline: 1px solid var(--interactive-accent) !important;
|
2025-07-09 15:50:15 +00:00
|
|
|
|
outline-offset: -1px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 拖曳相關樣式 Dragging */
|
|
|
|
|
|
.ge-grid-item.ge-dragging {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
transform: scale(0.95);
|
|
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-folder-item.ge-dragover {
|
|
|
|
|
|
border: 2px dashed var(--interactive-accent);
|
|
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 資料夾項目 Folder Item */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item {
|
2025-02-07 15:45:42 +00:00
|
|
|
|
background-color: var(--background-primary-alt);
|
2025-02-11 13:38:42 +00:00
|
|
|
|
border: 2px solid var(--background-modifier-border);
|
2025-03-05 15:00:01 +00:00
|
|
|
|
padding: 7px;
|
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
|
|
|
|
transition: all 0.2s ease;
|
2025-03-09 16:36:27 +00:00
|
|
|
|
height: 100%;
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-21 11:25:57 +00:00
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
|
.ge-grid-item.ge-folder-item:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
}
|
2025-02-07 15:45:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-16 16:41:13 +00:00
|
|
|
|
/* 直向卡片模式下的資料夾項目補正 */
|
|
|
|
|
|
.ge-vertical-card .ge-folder-item .ge-content-area {
|
|
|
|
|
|
padding: 7px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item .ge-icon-container {
|
|
|
|
|
|
color: var(--interactive-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item.ge-folder-item .ge-title {
|
2025-02-07 15:45:42 +00:00
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item .ge-content-area {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
min-height: 0px;
|
|
|
|
|
|
/* 設定最小高度 */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item.ge-folder-item .ge-title-container {
|
|
|
|
|
|
align-items: center;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
/* 資料夾和筆記顏色 Folder & Note Colors */
|
|
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-red,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-red {
|
|
|
|
|
|
background-color: rgba(var(--color-red-rgb), 0.2);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
border-color: rgba(var(--color-red-rgb), 0.5);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-orange,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-orange {
|
|
|
|
|
|
background-color: rgba(var(--color-orange-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-orange-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-yellow,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-yellow {
|
|
|
|
|
|
background-color: rgba(var(--color-yellow-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-yellow-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-green,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-green {
|
|
|
|
|
|
background-color: rgba(var(--color-green-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-green-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-cyan,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-cyan {
|
|
|
|
|
|
background-color: rgba(var(--color-cyan-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-cyan-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-blue,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-blue {
|
|
|
|
|
|
background-color: rgba(var(--color-blue-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-blue-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-purple,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-purple {
|
|
|
|
|
|
background-color: rgba(var(--color-purple-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-purple-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-pink,
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-grid-item.ge-note-color-pink {
|
|
|
|
|
|
background-color: rgba(var(--color-pink-rgb), 0.2);
|
|
|
|
|
|
border-color: rgba(var(--color-pink-rgb), 0.5);
|
2025-07-09 15:50:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-14 16:10:42 +00:00
|
|
|
|
/* 筆記文字顏色 Note Text Color */
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-red-text {
|
|
|
|
|
|
color: rgba(var(--color-red-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-orange-text {
|
|
|
|
|
|
color: rgba(var(--color-orange-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-yellow-text {
|
|
|
|
|
|
color: rgba(var(--color-yellow-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-green-text {
|
|
|
|
|
|
color: rgba(var(--color-green-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-cyan-text {
|
|
|
|
|
|
color: rgba(var(--color-cyan-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-blue-text {
|
|
|
|
|
|
color: rgba(var(--color-blue-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-purple-text {
|
|
|
|
|
|
color: rgba(var(--color-purple-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-pink-text {
|
|
|
|
|
|
color: rgba(var(--color-pink-rgb), 0.7);
|
2025-07-14 16:10:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
|
2025-11-04 13:14:26 +00:00
|
|
|
|
/* 自訂 HEX 色值 Custom HEX Color */
|
|
|
|
|
|
.ge-grid-item.ge-note-color-custom {
|
|
|
|
|
|
background-color: var(--ge-note-color-bg);
|
|
|
|
|
|
border-color: var(--ge-note-color-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
.ge-content-area p.ge-note-color-custom-text {
|
|
|
|
|
|
color: var(--ge-note-color-text);
|
2025-11-04 13:14:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-color-custom {
|
|
|
|
|
|
background-color: var(--ge-folder-color-bg);
|
|
|
|
|
|
border-color: var(--ge-folder-color-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-28 18:49:27 +00:00
|
|
|
|
/* 被忽略的資料夾樣式 Ignored Folder Style (顯示忽略時淡色) */
|
|
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-ignored {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
border-style: dashed;
|
|
|
|
|
|
border-width: 2px;
|
|
|
|
|
|
background-color: var(--background-modifier-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-ignored:hover {
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item.ge-folder-item.ge-folder-ignored .ge-title {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-24 10:03:00 +00:00
|
|
|
|
/* 隱藏的筆記樣式 Hidden Note Style */
|
|
|
|
|
|
.ge-grid-item.ge-note-hidden {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
border-style: dashed;
|
|
|
|
|
|
border-width: 2px;
|
|
|
|
|
|
background-color: var(--background-modifier-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-21 11:25:57 +00:00
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
|
.ge-grid-item.ge-note-hidden:hover {
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item.ge-note-hidden .ge-title {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-grid-item.ge-note-hidden .ge-content-area p {
|
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 資料夾上的資料夾筆記按鈕 Folder Note Button */
|
|
|
|
|
|
.ge-foldernote-button {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-foldernote-button:hover {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-foldernote-button svg {
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* 分隔線 Break */
|
|
|
|
|
|
.ge-break {
|
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-bottom: 1px solid var(--background-primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-13 08:08:46 +00:00
|
|
|
|
/* 日期分隔器樣式 */
|
|
|
|
|
|
.ge-date-divider {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
user-select: none;
|
2025-07-08 13:40:52 +00:00
|
|
|
|
margin-top: 4px;
|
2025-06-12 18:12:12 +00:00
|
|
|
|
margin-bottom: -2px;
|
2025-06-12 17:12:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 15:51:53 +00:00
|
|
|
|
/* 日期分隔器圖示
|
2025-07-08 13:40:52 +00:00
|
|
|
|
.ge-date-divider::before {
|
|
|
|
|
|
content: "📆";
|
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
|
} */
|
|
|
|
|
|
|
2025-06-12 17:12:30 +00:00
|
|
|
|
/* Pin分隔器樣式 */
|
|
|
|
|
|
.ge-pin-divider {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
user-select: none;
|
2025-06-12 18:12:12 +00:00
|
|
|
|
margin-top: -1px;
|
|
|
|
|
|
margin-bottom: -2px;
|
2025-04-13 08:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-15 09:52:33 +00:00
|
|
|
|
.ge-ios-divider {
|
|
|
|
|
|
width: calc(100% - 16px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-load-more-sentinel {
|
|
|
|
|
|
height: 1px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-08 13:40:52 +00:00
|
|
|
|
/* 置頂分隔器圖示 */
|
|
|
|
|
|
.ge-pin-divider::before {
|
|
|
|
|
|
content: "📌";
|
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋載入中 Loading Indicator */
|
|
|
|
|
|
.ge-loading-indicator {
|
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
height: 100px;
|
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 沒有找到文件 No Files Found */
|
|
|
|
|
|
.ge-no-files {
|
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 2em;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* 頂部按鈕區域樣式 Header Buttons */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-header-buttons {
|
2025-02-09 16:46:29 +00:00
|
|
|
|
display: flex;
|
2025-08-07 16:00:17 +00:00
|
|
|
|
gap: 7px;
|
2025-07-22 16:11:01 +00:00
|
|
|
|
padding: 9px;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
justify-content: center;
|
2025-10-02 16:13:57 +00:00
|
|
|
|
flex-wrap: wrap;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-header-buttons button {
|
2025-02-09 16:46:29 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 4px;
|
2025-08-07 16:00:17 +00:00
|
|
|
|
padding: 6px 11px;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
background-color: var(--interactive-normal);
|
2025-02-11 13:38:42 +00:00
|
|
|
|
border-radius: var(--button-radius);
|
2025-02-09 16:46:29 +00:00
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s, transform 0.1s;
|
2025-10-02 16:13:57 +00:00
|
|
|
|
flex: 0 0 auto;
|
2025-02-09 16:46:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-07 16:00:17 +00:00
|
|
|
|
.ge-header-buttons button:disabled {
|
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
|
cursor: default;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.is-tablet .ge-header-buttons button:not(.clickable-icon) {
|
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-header-buttons button:hover {
|
2025-02-09 16:46:29 +00:00
|
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-header-buttons button:active {
|
2025-02-09 16:46:29 +00:00
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-header-buttons .sort-button,
|
|
|
|
|
|
.ge-header-buttons .reselect-button,
|
|
|
|
|
|
.ge-header-buttons .refresh-button,
|
|
|
|
|
|
.ge-header-buttons .up-button {
|
2025-02-09 16:46:29 +00:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 15:51:53 +00:00
|
|
|
|
.ge-file-filter-container {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-input-wrapper {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-input {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
min-height: 30px;
|
|
|
|
|
|
padding-right: 60px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-search,
|
|
|
|
|
|
.ge-file-filter-clear {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
padding: 4px;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-search {
|
|
|
|
|
|
right: 30px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-clear {
|
|
|
|
|
|
right: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-search.is-visible,
|
|
|
|
|
|
.ge-file-filter-clear.is-visible {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-file-filter-search:hover,
|
|
|
|
|
|
.ge-file-filter-clear:hover {
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-11 07:30:36 +00:00
|
|
|
|
/* 針對非常窄的側邊欄(寬度小於 350px)進一步優化 */
|
|
|
|
|
|
@container (max-width: 350px) {
|
|
|
|
|
|
.ge-header-buttons {
|
|
|
|
|
|
gap: 7px;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding: 9px 7px;
|
|
|
|
|
|
/* 保持上下 padding 9px,減少左右 padding 到 6px */
|
2025-11-11 07:30:36 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-11-11 07:30:36 +00:00
|
|
|
|
.ge-header-buttons button {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding: 6px 9px;
|
|
|
|
|
|
/* 保持上下 padding 6px,減少左右 padding 到 8px */
|
2025-11-11 07:30:36 +00:00
|
|
|
|
gap: 3px;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
2025-07-16 16:41:13 +00:00
|
|
|
|
/* 模式名稱容器 */
|
|
|
|
|
|
.ge-mode-header-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
2025-06-18 15:29:27 +00:00
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
2025-07-16 16:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 模式名稱區域 */
|
|
|
|
|
|
.ge-modename-content {
|
|
|
|
|
|
flex: 1;
|
2025-08-11 15:55:07 +00:00
|
|
|
|
padding: 7px 10px;
|
2025-06-19 16:46:03 +00:00
|
|
|
|
font-size: var(--font-ui-medium);
|
2025-07-12 16:19:49 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
overflow: hidden;
|
2025-04-08 16:22:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-16 16:41:13 +00:00
|
|
|
|
/* 右側操作按鈕區域 */
|
|
|
|
|
|
.ge-right-actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 15:51:53 +00:00
|
|
|
|
/* 模式列操作按鈕樣式 */
|
|
|
|
|
|
.ge-sort-button,
|
|
|
|
|
|
.ge-filter-button {
|
2025-07-16 16:41:13 +00:00
|
|
|
|
background: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
transition: opacity 0.2s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
|
2025-07-16 16:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 15:51:53 +00:00
|
|
|
|
.ge-sort-button:hover,
|
|
|
|
|
|
.ge-filter-button:hover,
|
|
|
|
|
|
.ge-filter-button.is-active {
|
2025-07-16 16:41:13 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-12-24 10:03:00 +00:00
|
|
|
|
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset;
|
2025-07-16 16:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 15:51:53 +00:00
|
|
|
|
.ge-filter-button.is-active {
|
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-sort-button svg,
|
|
|
|
|
|
.ge-filter-button svg {
|
2025-07-16 16:41:13 +00:00
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-12 16:19:49 +00:00
|
|
|
|
.ge-mode-title {
|
|
|
|
|
|
text-decoration: none;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
padding: 3px 8px;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
color: var(--text-normal);
|
2026-05-24 14:44:55 +00:00
|
|
|
|
border: 1px solid transparent;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
font-size: var(--font-ui-small);
|
2025-04-08 16:22:38 +00:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
|
2025-06-19 16:46:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-12 16:19:49 +00:00
|
|
|
|
a.ge-mode-title {
|
2026-05-24 14:44:55 +00:00
|
|
|
|
border-color: var(--background-modifier-border);
|
2025-07-12 16:19:49 +00:00
|
|
|
|
cursor: pointer;
|
2025-12-24 10:03:00 +00:00
|
|
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
background: var(--background-primary);
|
2025-06-17 16:24:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-12 16:19:49 +00:00
|
|
|
|
a.ge-mode-title:hover {
|
|
|
|
|
|
text-decoration: none;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-color: var(--background-modifier-border);
|
|
|
|
|
|
box-shadow: 0 0 0 1px var(--background-modifier-border) inset;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Root span mode title should look plain: no chip background/border */
|
|
|
|
|
|
span.ge-mode-title {
|
2026-05-24 14:44:55 +00:00
|
|
|
|
background: transparent;
|
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
|
box-shadow: none;
|
2025-06-17 16:24:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-24 14:44:55 +00:00
|
|
|
|
|
2025-07-12 16:19:49 +00:00
|
|
|
|
.ge-sub-option {
|
|
|
|
|
|
text-decoration: none;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
padding: 3px 8px;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: var(--font-ui-small);
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-radius: 6px;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
border: 1px solid var(--background-modifier-hover);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
background: var(--background-primary);
|
2025-07-12 16:19:49 +00:00
|
|
|
|
cursor: pointer;
|
2025-08-01 17:44:27 +00:00
|
|
|
|
margin-right: 4px;
|
2025-09-01 16:54:05 +00:00
|
|
|
|
margin-left: 6px;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
gap: 6px;
|
|
|
|
|
|
transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-sub-option:hover {
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-radius: 6px;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-01 17:44:27 +00:00
|
|
|
|
.ge-settings-gear {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 3px 5px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
cursor: pointer;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
transition: background-color 0.15s ease, opacity 0.15s ease;
|
2025-08-01 17:44:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-settings-gear:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-24 10:03:00 +00:00
|
|
|
|
/* 設定分區樣式 Settings Sections */
|
|
|
|
|
|
.ge-settings-section {
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
background-color: var(--background-primary-alt);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-settings-section-summary {
|
|
|
|
|
|
padding: 10px 15px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-settings-section-summary h3 {
|
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-settings-section-summary::before {
|
|
|
|
|
|
content: "▶";
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
transition: transform 0.2s ease;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-settings-section[open] .ge-settings-section-summary::before {
|
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-settings-section-content {
|
|
|
|
|
|
padding: 10px 20px 20px 20px;
|
|
|
|
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 行動版調整 Mobile adjustments */
|
|
|
|
|
|
.is-mobile .ge-settings-section-content {
|
|
|
|
|
|
padding: 10px 10px 15px 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-12 16:19:49 +00:00
|
|
|
|
/* 路徑容器樣式 */
|
|
|
|
|
|
.ge-path-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
flex-wrap: nowrap;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
mask-image: linear-gradient(to right, black calc(100% - 20px), transparent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-path-container::-webkit-scrollbar {
|
|
|
|
|
|
display: none;
|
2025-06-17 16:24:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 上層資料夾連結樣式 Parent Folder Link */
|
2025-06-17 16:24:14 +00:00
|
|
|
|
.ge-parent-folder-link {
|
|
|
|
|
|
text-decoration: none;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
padding: 3px 8px;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
max-width: 200px;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
flex-shrink: 0;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-radius: 6px;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
border: 1px solid var(--background-modifier-hover);
|
2025-07-12 16:19:49 +00:00
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: var(--font-ui-small);
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
margin-right: 6px;
|
2025-08-28 16:23:48 +00:00
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
|
2025-06-17 16:24:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-parent-folder-link:hover {
|
|
|
|
|
|
text-decoration: none;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-color: var(--background-modifier-border);
|
2025-06-17 16:24:14 +00:00
|
|
|
|
}
|
2025-04-08 16:22:38 +00:00
|
|
|
|
|
2025-06-18 15:29:27 +00:00
|
|
|
|
.ge-parent-folder-link.ge-dragover {
|
2025-07-12 16:19:49 +00:00
|
|
|
|
border: 1px dashed var(--interactive-accent);
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-07-07 15:15:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-12 16:19:49 +00:00
|
|
|
|
/* 當前資料夾樣式 */
|
|
|
|
|
|
.ge-current-folder {
|
|
|
|
|
|
font-size: var(--font-ui-small);
|
2025-07-15 18:45:19 +00:00
|
|
|
|
padding: 4px 9px 4px 0px;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
overflow: hidden;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
flex-shrink: 0;
|
2025-07-12 16:19:49 +00:00
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
2025-07-07 15:15:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-15 18:45:19 +00:00
|
|
|
|
a.ge-current-folder {
|
2025-07-16 16:41:13 +00:00
|
|
|
|
text-decoration: none;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
padding: 3px 8px !important;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-hover);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
|
2025-07-15 18:45:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
a.ge-current-folder:hover {
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
border-color: var(--background-modifier-border);
|
2025-07-15 18:45:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
/* 搜尋 popup 容器結構 */
|
|
|
|
|
|
.ge-popup-content .ge-search-container {
|
|
|
|
|
|
margin-top: 0;
|
2025-03-09 16:36:27 +00:00
|
|
|
|
margin-bottom: 8px;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
gap: 8px;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-input-wrapper {
|
|
|
|
|
|
position: relative;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
min-width: 0; /* 防止 flex 項目溢出 */
|
2025-06-24 16:13:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-20 08:43:30 +00:00
|
|
|
|
/* 合併式搜尋欄容器 */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-bar {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
display: flex;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
flex-wrap: wrap;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
align-items: center;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
gap: 6px;
|
|
|
|
|
|
padding: 6px 36px 6px 10px;
|
|
|
|
|
|
min-height: 38px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: var(--input-radius, 4px);
|
|
|
|
|
|
background-color: var(--background-modifier-form-field);
|
|
|
|
|
|
cursor: text;
|
|
|
|
|
|
transition: box-shadow 0.15s, border-color 0.15s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-bar:focus-within {
|
2026-02-20 08:43:30 +00:00
|
|
|
|
box-shadow: 0 0 0 1px var(--background-modifier-border-focus);
|
|
|
|
|
|
border-color: var(--background-modifier-border-focus);
|
2025-06-24 16:13:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-input {
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: var(--font-ui-medium);
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content .ge-search-input:hover,
|
|
|
|
|
|
.ge-popup-content .ge-search-input:focus {
|
|
|
|
|
|
font-size: var(--font-ui-medium);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content .ge-search-bar .ge-search-input {
|
|
|
|
|
|
flex: 1 0 40px;
|
|
|
|
|
|
width: 0;
|
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content .ge-search-clear-button {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 8px;
|
|
|
|
|
|
top: 50%;
|
|
|
|
|
|
transform: translateY(-50%);
|
2026-05-17 18:01:43 +00:00
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
cursor: pointer;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2026-05-17 18:01:43 +00:00
|
|
|
|
border-radius: 2px;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-clear-button:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
color: var(--text-normal);
|
2025-06-24 16:13:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-clear-button svg {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-20 08:43:30 +00:00
|
|
|
|
/* 標籤顯示區域 Search Tag Buttons */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-button {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
padding: 3px 6px;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
background-color: var(--background-modifier-active-hover);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
position: relative;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
padding-right: 22px;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
height: 24px;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
font-size: var(--font-ui-small);
|
2026-02-20 08:43:30 +00:00
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-button:hover {
|
2026-02-20 08:43:30 +00:00
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-button.is-tag {
|
2026-02-20 08:43:30 +00:00
|
|
|
|
color: var(--interactive-accent);
|
2025-06-24 16:13:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-delete-button {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 2px;
|
|
|
|
|
|
top: 50%;
|
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s;
|
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-delete-button:hover {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-delete-button svg {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
width: 22px;
|
|
|
|
|
|
height: 22px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 標籤自動完成下拉選單 Search Tag Suggestions */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-suggestions {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
position: relative;
|
2026-05-17 18:01:43 +00:00
|
|
|
|
margin-top: 8px;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 4px;
|
2026-05-17 18:01:43 +00:00
|
|
|
|
max-height: 200px;
|
2025-06-24 16:13:51 +00:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
z-index: 1000;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
font-size: var(--font-ui-small);
|
2025-06-24 16:13:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-suggestion-item {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-tag-suggestion-item:hover,
|
|
|
|
|
|
.ge-popup-content .ge-search-tag-suggestion-item.is-selected {
|
2025-06-24 16:13:51 +00:00
|
|
|
|
background-color: var(--interactive-accent);
|
|
|
|
|
|
color: var(--text-on-accent, white);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋選項容器 Search Options Container */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-options-container {
|
2025-04-09 16:24:22 +00:00
|
|
|
|
display: flex;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 2px;
|
|
|
|
|
|
margin: 4px 0;
|
2025-04-09 16:24:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋範圍設定樣式 Search Scope Container */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-scope-container {
|
2025-03-09 16:36:27 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-scope-checkbox {
|
2025-03-09 16:36:27 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-scope-label {
|
2025-03-09 16:36:27 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
color: var(--text-normal);
|
2025-07-17 18:06:44 +00:00
|
|
|
|
font-size: var(--font-ui-small);
|
2025-03-09 16:36:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-31 15:27:04 +00:00
|
|
|
|
/* 只搜尋檔案名稱設定樣式 Search Name Container */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-name-container {
|
2025-07-31 15:27:04 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-name-checkbox {
|
2025-07-31 15:27:04 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-name-label {
|
2025-07-31 15:27:04 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: var(--font-ui-small);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋媒體檔案設定樣式 Search Media Files Container */
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-media-files-container {
|
2025-04-09 16:24:22 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-media-files-checkbox {
|
2025-04-09 16:24:22 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-scope-container:focus-visible,
|
|
|
|
|
|
.ge-popup-content .ge-search-name-container:focus-visible,
|
|
|
|
|
|
.ge-popup-content .ge-search-media-files-container:focus-visible {
|
2026-02-20 08:43:30 +00:00
|
|
|
|
outline: 2px solid var(--interactive-accent);
|
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
.ge-popup-content .ge-search-media-files-label {
|
2025-04-09 16:24:22 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
color: var(--text-normal);
|
2025-07-17 18:06:44 +00:00
|
|
|
|
font-size: var(--font-ui-small);
|
2025-04-09 16:24:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-17 18:01:43 +00:00
|
|
|
|
/* Modal 按鈕容器 Modal Button Container */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s, transform 0.1s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button:first-child {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
background-color: var(--interactive-accent);
|
|
|
|
|
|
color: var(--text-on-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button:last-child {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
background-color: var(--interactive-normal);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button:hover {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button:first-child:hover {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
background-color: var(--interactive-accent-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button:last-child:hover {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-button-container button:active {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 頂部欄搜尋按鈕容器 Header Search Button Container */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-search-button-container {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
border-radius: 4px;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
padding: 0;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋按鈕啟用狀態 Header Search Button Active */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-search-button-container button.active {
|
2025-02-11 13:38:42 +00:00
|
|
|
|
background-color: var(--interactive-accent);
|
|
|
|
|
|
color: var(--text-on-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋文字容器 Header Search Text Container */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-search-text-container {
|
2025-02-18 08:06:58 +00:00
|
|
|
|
position: relative;
|
2025-03-14 16:55:51 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: flex-start;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
background-color: var(--background-modifier-active-hover);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
transition: border-color 0.15s ease;
|
2025-08-19 15:48:50 +00:00
|
|
|
|
padding: 2px 0;
|
2025-09-01 16:54:05 +00:00
|
|
|
|
margin-left: 5px;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-search-text-container:hover {
|
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 搜尋文字 Header Search Text */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-search-text {
|
2025-02-18 08:06:58 +00:00
|
|
|
|
font-size: 14px;
|
2025-03-14 16:55:51 +00:00
|
|
|
|
color: var(--text-normal);
|
2026-05-15 09:52:33 +00:00
|
|
|
|
cursor: pointer;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
/* 讓文字填滿剩餘空間 */
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
/* 防止内容溢出 */
|
2025-03-14 16:55:51 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
margin-left: 8px;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 取消按鈕 Header Search Clear Button */
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-clear-button {
|
2025-02-18 08:06:58 +00:00
|
|
|
|
width: 22px;
|
|
|
|
|
|
height: 22px;
|
2025-02-11 13:38:42 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-size: 14px;
|
2025-12-24 10:03:00 +00:00
|
|
|
|
margin-right: 4px;
|
2025-07-09 15:50:15 +00:00
|
|
|
|
flex-shrink: 0;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-clear-button:hover {
|
2026-05-17 18:01:43 +00:00
|
|
|
|
color: #FFFFFF;
|
2025-02-18 08:06:58 +00:00
|
|
|
|
background-color: var(--background-modifier-error-hover);
|
2025-02-11 13:38:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-22 09:01:37 +00:00
|
|
|
|
.ge-clear-button svg {
|
2025-02-18 08:06:58 +00:00
|
|
|
|
width: 18px;
|
|
|
|
|
|
height: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
2025-02-26 15:11:51 +00:00
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 資料夾選擇器的搜尋輸入框容器 */
|
2025-02-28 19:02:28 +00:00
|
|
|
|
.ge-folder-search-container {
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 資料夾選擇器的搜尋輸入框 */
|
2025-02-28 19:02:28 +00:00
|
|
|
|
.ge-folder-search-input {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: var(--font-ui-small);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-folder-search-input:focus {
|
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
|
box-shadow: 0 0 0 2px rgba(var(--interactive-accent-rgb), 0.2);
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 資料夾選擇器的項目容器 */
|
2025-02-28 19:02:28 +00:00
|
|
|
|
.ge-folder-options-container {
|
|
|
|
|
|
max-height: 70vh;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding-right: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 資料夾選擇器的項目樣式 */
|
|
|
|
|
|
.ge-grid-view-folder-option {
|
|
|
|
|
|
cursor: pointer;
|
2025-02-26 15:11:51 +00:00
|
|
|
|
padding: 8px;
|
2025-07-09 15:50:15 +00:00
|
|
|
|
margin-bottom: 8px;
|
2025-02-26 15:11:51 +00:00
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-grid-view-folder-option:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-02-26 15:11:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* ascii tree prefix */
|
|
|
|
|
|
.ge-folder-tree-prefix {
|
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
|
white-space: pre;
|
|
|
|
|
|
color: var(--text-muted);
|
2025-02-26 15:11:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 鍵盤導航選中項的樣式 */
|
|
|
|
|
|
.ge-selected-option {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
border-left: 3px solid var(--interactive-accent) !important;
|
|
|
|
|
|
padding-left: 5px !important;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
2025-03-06 16:45:12 +00:00
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* Media Modal */
|
|
|
|
|
|
.ge-media-modal {
|
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.9) !important;
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
border-radius: 0 !important;
|
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
|
max-width: 100% !important;
|
|
|
|
|
|
max-height: 100% !important;
|
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
|
height: 100% !important;
|
|
|
|
|
|
margin: 0 !important;
|
2025-03-06 16:45:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-media-modal .modal-header {
|
|
|
|
|
|
margin: 0 !important;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-media-modal .modal-close-button {
|
|
|
|
|
|
display: none !important;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-media-modal-content {
|
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
margin: 0 !important;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
2025-07-09 15:50:15 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* Media View */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-media-view {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-media-container {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-fullscreen-image {
|
|
|
|
|
|
max-width: 100vw;
|
|
|
|
|
|
max-height: 100vh;
|
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-fullscreen-video {
|
|
|
|
|
|
max-width: 100vw;
|
|
|
|
|
|
max-height: 100vh;
|
2026-02-14 11:37:14 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1006;
|
|
|
|
|
|
/* 高於 .ge-media-prev-area 的 1005 */
|
2025-03-05 15:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-23 17:31:27 +00:00
|
|
|
|
.ge-media-container video {
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-28 16:35:47 +00:00
|
|
|
|
.ge-fullscreen-file-name {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 15px;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
z-index: 1007;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-media-close-button {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 15px;
|
|
|
|
|
|
right: 15px;
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
z-index: 1010;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-media-close-button:hover {
|
|
|
|
|
|
background-color: rgba(255, 0, 0, 0.7);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 左右切換區域 */
|
|
|
|
|
|
.ge-media-prev-area,
|
|
|
|
|
|
.ge-media-next-area {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 15%;
|
|
|
|
|
|
height: 70%;
|
2025-07-22 16:11:01 +00:00
|
|
|
|
width: 7%;
|
2025-03-05 15:00:01 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
z-index: 1005;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 11:37:14 +00:00
|
|
|
|
.is-phone .ge-media-prev-area,
|
|
|
|
|
|
.is-phone .ge-media-next-area {
|
|
|
|
|
|
width: 20%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-tablet .ge-media-prev-area,
|
|
|
|
|
|
.is-tablet .ge-media-next-area {
|
|
|
|
|
|
width: 15%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 縮放時停用側邊區域,避免干擾捲動 */
|
|
|
|
|
|
.ge-media-modal-content.is-zoomed .ge-media-prev-area,
|
|
|
|
|
|
.ge-media-modal-content.is-zoomed .ge-media-next-area {
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-05 15:00:01 +00:00
|
|
|
|
.ge-media-prev-area {
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-media-next-area {
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
2025-03-28 16:35:47 +00:00
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* 音樂播放器 Floating Audio Player */
|
2025-03-28 16:35:47 +00:00
|
|
|
|
.ge-floating-audio-player {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
width: 300px;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
z-index: 1100;
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
transition: box-shadow 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-floating-audio-player:hover {
|
|
|
|
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-15 09:52:33 +00:00
|
|
|
|
.ge-floating-audio-player.ge-audio-focus-highlight {
|
|
|
|
|
|
box-shadow: 0 0 10px 2px var(--interactive-accent);
|
|
|
|
|
|
transition: box-shadow 0.1s ease-in-out;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-28 16:35:47 +00:00
|
|
|
|
.ge-audio-title {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
padding-right: 24px;
|
|
|
|
|
|
cursor: default;
|
2025-12-24 10:03:00 +00:00
|
|
|
|
margin: 2px;
|
2025-03-28 16:35:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-floating-audio-player audio {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-audio-close-button {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 8px;
|
|
|
|
|
|
right: 8px;
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
transition: background-color 0.2s ease, color 0.2s ease;
|
2025-12-24 10:03:00 +00:00
|
|
|
|
z-index: 1102;
|
2025-03-28 16:35:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-audio-close-button:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-error-hover);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-audio-handle {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
cursor: move;
|
|
|
|
|
|
border-radius: 8px 8px 0 0;
|
2025-12-24 10:03:00 +00:00
|
|
|
|
z-index: 1101;
|
2025-03-28 16:35:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-audio-dragging {
|
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
2025-06-17 16:24:14 +00:00
|
|
|
|
|
2025-07-09 15:50:15 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* 設定描述區域樣式 Setting Description */
|
2025-06-17 16:24:14 +00:00
|
|
|
|
.ge-setting-desc {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-setting-number-input {
|
|
|
|
|
|
width: 60px;
|
2025-06-22 17:03:38 +00:00
|
|
|
|
}
|
2025-07-09 15:50:15 +00:00
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾設定 Ignored Folders Setting */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-ignored-folders-container {
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾列表 Ignored Folders List */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-ignored-folders-list {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾項目 Ignored Folder Item */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-ignored-folder-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾路徑 Ignored Folder Path */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-ignored-folder-path {
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾刪除按鈕 Ignored Folder Remove */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-ignored-folder-remove {
|
|
|
|
|
|
background-color: var(--interactive-normal);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-ignored-folder-remove:hover {
|
|
|
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾模式的容器 Ignored Folder Patterns Container */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ignored-folder-patterns-container {
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-11 09:39:33 +00:00
|
|
|
|
/* 忽略資料夾模式列表 Ignored Folder Patterns List */
|
2025-07-09 15:50:15 +00:00
|
|
|
|
.ge-ignored-folder-patterns-list {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
2025-07-11 09:39:33 +00:00
|
|
|
|
|
|
|
|
|
|
/* 拖曳預覽 Drag Preview */
|
|
|
|
|
|
.ge-custom-drag-preview {
|
|
|
|
|
|
position: absolute;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
top: -1000px;
|
|
|
|
|
|
/* 隱藏在視窗外 */
|
2025-07-11 09:39:33 +00:00
|
|
|
|
left: -1000px;
|
|
|
|
|
|
font-size: var(--font-ui-small);
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
color: rgba(var(--mono-rgb-0), 0.9);
|
|
|
|
|
|
background: rgba(var(--mono-rgb-100), 0.9);
|
|
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
max-width: 150px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-16 16:41:13 +00:00
|
|
|
|
/* Custom Mode Options */
|
2026-05-15 09:52:33 +00:00
|
|
|
|
.ge-hidden {
|
|
|
|
|
|
display: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-icon-input {
|
|
|
|
|
|
width: 3em;
|
|
|
|
|
|
min-width: 3em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-dataview-setting {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-dataview-controls {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-code-input {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-16 16:41:13 +00:00
|
|
|
|
.ge-custommode-option-container {
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 6px;
|
2025-08-23 14:32:13 +00:00
|
|
|
|
margin-bottom: 0.5rem;
|
2025-07-16 16:41:13 +00:00
|
|
|
|
background-color: var(--background-secondary);
|
2025-08-23 14:32:13 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-container.dragging {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-container.drag-over {
|
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 摺疊狀態的標題列 */
|
|
|
|
|
|
.ge-custommode-option-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
min-height: 44px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-header:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-drag-handle {
|
|
|
|
|
|
cursor: grab;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-name {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-toggle {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
transition: transform 0.2s ease;
|
2025-07-16 16:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-23 14:32:13 +00:00
|
|
|
|
.ge-custommode-option-container.expanded .ge-custommode-option-toggle {
|
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-delete {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 4px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-delete:hover {
|
|
|
|
|
|
color: var(--text-error);
|
|
|
|
|
|
background-color: var(--background-modifier-error-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-drag-handle,
|
|
|
|
|
|
.ge-custommode-option-toggle,
|
|
|
|
|
|
.ge-custommode-option-delete {
|
2025-12-24 10:03:00 +00:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
/* 如果需要撐滿標題列高度,可加上 */
|
|
|
|
|
|
/* height: 100%; */
|
2025-08-23 14:32:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 展開狀態的內容區域 */
|
|
|
|
|
|
.ge-custommode-option-content {
|
|
|
|
|
|
padding: 0 12px 12px 12px;
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-container.expanded .ge-custommode-option-content {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-option-container.expanded .setting-item {
|
2025-07-16 16:41:13 +00:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
|
width: 100%;
|
2025-08-23 14:32:13 +00:00
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin: 0;
|
2025-07-16 16:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-23 14:32:13 +00:00
|
|
|
|
.ge-custommode-option-container.expanded .setting-item-control {
|
2025-07-16 16:41:13 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
gap: 0.5rem;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-23 14:32:13 +00:00
|
|
|
|
/* 拖曳指示線 */
|
|
|
|
|
|
.ge-custommode-drop-indicator {
|
|
|
|
|
|
height: 2px;
|
|
|
|
|
|
background-color: var(--interactive-accent);
|
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-drop-indicator.show {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-custommode-options-container {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-31 15:27:04 +00:00
|
|
|
|
/* Save Footer */
|
|
|
|
|
|
.ge-save-footer {
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.setting-item .ge-save-footer {
|
|
|
|
|
|
border-top: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-save-footer .setting-item-control button {
|
|
|
|
|
|
box-shadow: 0 5px 8px rgba(0, 0, 0, 0.4);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-17 18:06:44 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* Popup Modal Styles */
|
|
|
|
|
|
.ge-popup-modal {
|
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-modal-reset {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: auto;
|
|
|
|
|
|
left: auto;
|
|
|
|
|
|
right: auto;
|
|
|
|
|
|
bottom: auto;
|
|
|
|
|
|
transform: none;
|
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-modal-reset .modal-close-button {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-modal-reset .modal-header {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-phone .ge-popup-modal-reset.modal {
|
2026-02-20 08:43:30 +00:00
|
|
|
|
max-width: calc(100vw - 32px);
|
|
|
|
|
|
width: calc(100vw - 32px) !important;
|
|
|
|
|
|
left: 16px !important;
|
|
|
|
|
|
margin: 0 auto;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content {
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
padding: 10px 8px;
|
|
|
|
|
|
position: relative;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
max-height: 80vh;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
overflow-y: auto;
|
2026-02-20 08:43:30 +00:00
|
|
|
|
min-width: 280px;
|
|
|
|
|
|
max-width: 450px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-phone .ge-popup-content {
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
max-height: 85vh;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Popup modal 中的資料夾選項樣式 */
|
|
|
|
|
|
.ge-popup-content .ge-grid-view-folder-option {
|
|
|
|
|
|
margin: 2px 0;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s;
|
|
|
|
|
|
font-size: var(--font-ui-medium);
|
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content .ge-grid-view-folder-option:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content .ge-grid-view-folder-option.selected {
|
|
|
|
|
|
background-color: var(--background-modifier-active);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Popup modal 中的搜尋框樣式 */
|
|
|
|
|
|
.ge-popup-content .ge-folder-search-container {
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-popup-content .ge-folder-options-container {
|
2025-08-08 18:10:22 +00:00
|
|
|
|
max-height: 350px;
|
2025-07-17 18:06:44 +00:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 17:00:41 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* 筆記檢視容器 Note View Container */
|
|
|
|
|
|
.ge-note-view-container {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
z-index: 100;
|
2025-07-21 16:05:49 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
/* 筆記頂部按鈕列 */
|
|
|
|
|
|
.ge-note-top-bar {
|
2025-07-20 17:00:41 +00:00
|
|
|
|
display: flex;
|
2025-07-21 16:05:49 +00:00
|
|
|
|
justify-content: space-between;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
align-items: center;
|
2025-07-22 16:11:01 +00:00
|
|
|
|
padding: 9px 0;
|
2025-07-21 16:05:49 +00:00
|
|
|
|
gap: 10px;
|
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
.ge-note-top-left {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-top-right {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding-right: 15px;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
/* 捲動區域 */
|
|
|
|
|
|
.ge-note-scroll-container {
|
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
overflow: auto;
|
2025-07-27 16:58:55 +00:00
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
font-size: var(--font-text-size);
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-15 09:52:33 +00:00
|
|
|
|
.ge-note-sidebar-scroll-container {
|
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-sidebar-content-container {
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
.ge-note-close-button,
|
2026-02-12 14:49:45 +00:00
|
|
|
|
.ge-note-edit-button,
|
|
|
|
|
|
.ge-note-info-button {
|
2025-07-21 09:34:48 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-07-21 16:05:49 +00:00
|
|
|
|
gap: 4px;
|
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
background-color: var(--interactive-normal);
|
|
|
|
|
|
border-radius: var(--button-radius);
|
2025-07-21 09:34:48 +00:00
|
|
|
|
color: var(--text-normal);
|
2025-07-21 16:05:49 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s, transform 0.1s;
|
2025-07-21 09:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
.is-tablet .ge-note-close-button:not(.clickable-icon),
|
2026-02-12 14:49:45 +00:00
|
|
|
|
.is-tablet .ge-note-edit-button:not(.clickable-icon),
|
|
|
|
|
|
.is-tablet .ge-note-info-button:not(.clickable-icon) {
|
2025-07-21 16:05:49 +00:00
|
|
|
|
padding: 6px 12px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-close-button:hover,
|
2026-02-12 14:49:45 +00:00
|
|
|
|
.ge-note-edit-button:hover,
|
|
|
|
|
|
.ge-note-info-button:hover {
|
2025-07-21 16:05:49 +00:00
|
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
|
transform: translateY(-1px);
|
2025-07-21 09:34:48 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
.ge-note-close-button:active,
|
2026-02-12 14:49:45 +00:00
|
|
|
|
.ge-note-edit-button:active,
|
|
|
|
|
|
.ge-note-info-button:active {
|
2025-07-21 16:05:49 +00:00
|
|
|
|
transform: translateY(0);
|
2025-07-21 09:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-12 14:49:45 +00:00
|
|
|
|
.is-mobile .ge-note-info-button:focus,
|
|
|
|
|
|
.is-mobile .ge-note-info-button:focus-visible {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
background-color: var(--interactive-normal) !important;
|
|
|
|
|
|
transform: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 17:00:41 +00:00
|
|
|
|
.ge-note-content-container {
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
margin: 0 auto;
|
2025-07-22 16:11:01 +00:00
|
|
|
|
padding: 20px;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
min-height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-title {
|
2025-07-22 16:11:01 +00:00
|
|
|
|
font-size: 1em;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
font-weight: var(--inline-title-weight);
|
|
|
|
|
|
line-height: var(--inline-title-line-height);
|
|
|
|
|
|
font-style: var(--inline-title-style);
|
|
|
|
|
|
font-variant: var(--inline-title-variant);
|
|
|
|
|
|
font-family: var(--inline-title-font);
|
|
|
|
|
|
letter-spacing: -0.015em;
|
|
|
|
|
|
color: var(--inline-title-color);
|
2025-07-21 16:05:49 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-11 13:53:42 +00:00
|
|
|
|
.is-mobile .ge-note-title {
|
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
text-overflow: clip;
|
|
|
|
|
|
/* 或者 unset */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 隱藏行動裝置上的捲軸,保持簡潔 */
|
|
|
|
|
|
.is-mobile .ge-note-title::-webkit-scrollbar {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 17:00:41 +00:00
|
|
|
|
.ge-note-content {
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
user-select: text;
|
|
|
|
|
|
-webkit-user-select: text;
|
|
|
|
|
|
-moz-user-select: text;
|
|
|
|
|
|
-ms-user-select: text;
|
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content h1,
|
|
|
|
|
|
.ge-note-content h2,
|
|
|
|
|
|
.ge-note-content h3,
|
|
|
|
|
|
.ge-note-content h4,
|
|
|
|
|
|
.ge-note-content h5,
|
|
|
|
|
|
.ge-note-content h6 {
|
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
2026-02-11 13:53:42 +00:00
|
|
|
|
/* 筆記 Metadata 區塊 */
|
|
|
|
|
|
.ge-note-metadata-container {
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
background-color: var(--background-secondary-alt);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
/* 預設隱藏 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-metadata-container.is-visible {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-metadata-content {
|
|
|
|
|
|
padding: 10px 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-metadata-item {
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-metadata-key {
|
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-metadata-value {
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-note-content>p:nth-child(2) {
|
2025-07-22 16:11:01 +00:00
|
|
|
|
margin-block-start: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 17:00:41 +00:00
|
|
|
|
.ge-note-content pre {
|
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
padding: 1em;
|
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content code {
|
2025-07-21 09:34:48 +00:00
|
|
|
|
background: var(--background-code);
|
2025-07-20 17:00:41 +00:00
|
|
|
|
padding: 0.2em 0.4em;
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
font-family: var(--font-monospace);
|
2025-07-21 09:34:48 +00:00
|
|
|
|
font-size: 90%;
|
|
|
|
|
|
color: var(--text-code);
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-07-20 17:00:41 +00:00
|
|
|
|
.ge-note-content a {
|
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content a:hover {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content blockquote {
|
|
|
|
|
|
border-left: 3px solid var(--text-accent);
|
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
|
padding-left: 1em;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
|
border-radius: 0 var(--radius-s) var(--radius-s) 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-29 10:12:02 +00:00
|
|
|
|
/* 隱藏複製按鈕 */
|
|
|
|
|
|
.ge-note-content .copy-code-button {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-20 17:00:41 +00:00
|
|
|
|
.ge-note-content ul,
|
|
|
|
|
|
.ge-note-content ol {
|
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
|
padding-left: 2em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content table {
|
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content th,
|
|
|
|
|
|
.ge-note-content td {
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-note-content th {
|
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 09:34:48 +00:00
|
|
|
|
.ge-note-content hr {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-top: 1px solid;
|
|
|
|
|
|
border-color: var(--horizontal-line);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-21 16:26:57 +00:00
|
|
|
|
/* 隱藏網格內容(跳過隱藏時的樣式/排版/繪製成本) */
|
2025-07-20 17:00:41 +00:00
|
|
|
|
.ge-grid-container.ge-hidden {
|
2025-08-21 16:26:57 +00:00
|
|
|
|
content-visibility: hidden;
|
|
|
|
|
|
pointer-events: none;
|
2025-07-20 17:00:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-21 16:05:49 +00:00
|
|
|
|
/* 行動裝置隱藏滾動條 Mobile hidden Scrollbar */
|
|
|
|
|
|
.is-mobile .ge-note-view-container::-webkit-scrollbar {
|
|
|
|
|
|
display: none !important;
|
|
|
|
|
|
width: 0 !important;
|
2025-07-26 17:50:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* 捷徑選擇 Modal Shortcut Selection Modal */
|
|
|
|
|
|
.shortcut-section {
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shortcut-section h3 {
|
|
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shortcut-option-button {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
|
margin: 2px 0;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: var(--button-radius);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s, transform 0.1s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shortcut-option-button:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shortcut-option-button:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shortcut-option-icon {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.shortcut-option-icon svg {
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
2025-07-31 15:27:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-05 15:39:53 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* 通用輸入框樣式 Universal Input Field Styles */
|
|
|
|
|
|
.ge-input-field {
|
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
|
padding: 8px 12px !important;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border) !important;
|
|
|
|
|
|
border-radius: var(--input-radius) !important;
|
|
|
|
|
|
background-color: var(--background-primary) !important;
|
|
|
|
|
|
color: var(--text-normal) !important;
|
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
|
font-family: var(--font-interface) !important;
|
|
|
|
|
|
transition: border-color 0.2s ease !important;
|
|
|
|
|
|
box-sizing: border-box !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-input-field:focus {
|
|
|
|
|
|
outline: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-input-field::placeholder {
|
|
|
|
|
|
color: var(--text-muted) !important;
|
|
|
|
|
|
opacity: 1 !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 確保不同 input type 有一致的外觀 */
|
|
|
|
|
|
.ge-input-field[type="text"],
|
|
|
|
|
|
.ge-input-field[type="url"],
|
|
|
|
|
|
.ge-input-field[type="search"],
|
|
|
|
|
|
.ge-input-field[type="email"] {
|
|
|
|
|
|
-webkit-appearance: none !important;
|
|
|
|
|
|
-moz-appearance: none !important;
|
|
|
|
|
|
appearance: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 輸入框容器樣式 */
|
|
|
|
|
|
.ge-input-field-container {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Modal 中的輸入框容器 */
|
|
|
|
|
|
.modal .ge-input-field-container {
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
display: block;
|
2025-08-11 15:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
/* Explorer View */
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-view-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-node {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
padding: 4px 6px;
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
margin-bottom: 3px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-header:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-dragover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-08-11 15:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-header.is-active,
|
|
|
|
|
|
.ge-explorer-mode-item.is-active {
|
|
|
|
|
|
background-color: var(--background-modifier-hover) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-header.is-active .ge-explorer-folder-name,
|
|
|
|
|
|
.ge-explorer-mode-item.is-active .ge-explorer-folder-name {
|
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-mode-item {
|
|
|
|
|
|
/* 讓模式/自訂模式的子項在樹狀中看起來是深度 1 */
|
|
|
|
|
|
padding-left: 28px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-toggle {
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 無可見子資料夾:隱藏切換圖示但保留佔位,避免跳位;同時停用點擊 */
|
|
|
|
|
|
.ge-explorer-folder-toggle.ge-explorer-toggle-empty {
|
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-icon {
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 若未插入任何 SVG(例如使用前綴文字 icon),隱藏佔位避免多餘空白 */
|
|
|
|
|
|
.ge-explorer-folder-icon:empty {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-name {
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
2025-08-26 16:17:36 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
padding: 2px 4px 2px 0;
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
transition: background-color 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 只有有子目錄的資料夾名稱才顯示懸停效果 */
|
|
|
|
|
|
.ge-explorer-folder-header:not(.ge-no-children) .ge-explorer-folder-name:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
2025-08-28 16:23:48 +00:00
|
|
|
|
/* color: var(--text-accent); */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 有子目錄的資料夾整個 header 懸停時不顯示效果 */
|
|
|
|
|
|
.ge-explorer-folder-header:not(.ge-no-children):not(.ge-explorer-mode-item):not(.ge-explorer-stash-item):hover {
|
|
|
|
|
|
background-color: transparent !important;
|
2025-08-26 16:17:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 沒有子目錄的資料夾名稱不顯示特殊游標和懸停效果 */
|
|
|
|
|
|
.ge-explorer-folder-header.ge-no-children .ge-explorer-folder-name {
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-header.ge-no-children .ge-explorer-folder-name:hover {
|
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
|
color: var(--text-normal) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 模式項目和暫存區項目的名稱也不顯示特殊懸停效果 */
|
|
|
|
|
|
.ge-explorer-mode-item .ge-explorer-folder-name,
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-name {
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-mode-item .ge-explorer-folder-name:hover,
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-name:hover {
|
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
|
color: var(--text-normal) !important;
|
2025-08-11 15:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-children {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
/* 由 header paddingLeft 控制縮排 */
|
2025-08-11 15:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-folder-children.is-collapsed {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-15 16:36:35 +00:00
|
|
|
|
/* ExplorerView - Mobile spacing & touch targets */
|
|
|
|
|
|
.is-mobile .ge-explorer-folder-header,
|
|
|
|
|
|
.is-mobile .ge-explorer-mode-item {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
|
/* ↑ from 4px 6px */
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
/* ↑ from 6px */
|
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
|
/* 提升最小點擊高度,可視需要調整到 40–44px */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
border-radius: var(--radius-s);
|
2026-05-17 18:01:43 +00:00
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 頂層根節點 header 的外距在手機放大一點,避免項目太擠 */
|
2026-01-13 07:46:35 +00:00
|
|
|
|
.is-mobile .ge-explorer-view-container>.ge-explorer-folder-node>.ge-explorer-folder-header {
|
|
|
|
|
|
margin: 8px 10px;
|
|
|
|
|
|
/* ↑ from 6px 8px */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 讓切換箭頭與圖示在手機更好點 */
|
|
|
|
|
|
.is-mobile .ge-explorer-folder-toggle,
|
|
|
|
|
|
.is-mobile .ge-explorer-folder-icon {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
width: 20px;
|
|
|
|
|
|
/* ↑ from 16px */
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
/* ↑ from 16px */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 模式子項的縮排在手機視覺可略加(可選) */
|
|
|
|
|
|
.is-mobile .ge-explorer-mode-item {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding-left: 32px;
|
|
|
|
|
|
/* ↑ from 28px */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 列與列之間多一點空隙(可選,避免過度擁擠) */
|
|
|
|
|
|
.is-mobile .ge-explorer-folder-header {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
/* ↑ from 3px */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
/* 統一三個根節點(自訂模式/模式/Folder)的上下間距與外觀 */
|
|
|
|
|
|
/* 頂層根節點 header:統一外距與圓角(自訂模式/模式/Folder) */
|
2026-01-13 07:46:35 +00:00
|
|
|
|
.ge-explorer-view-container>.ge-explorer-folder-node>.ge-explorer-folder-header {
|
|
|
|
|
|
margin: 6px 8px;
|
|
|
|
|
|
/* 一致的左右/上下間距 */
|
2025-08-11 15:55:07 +00:00
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Folder Tree View 顏色:與 grid 色票一致(使用 header 作為著色目標) */
|
|
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-red {
|
|
|
|
|
|
background-color: rgba(var(--color-red-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-orange {
|
|
|
|
|
|
background-color: rgba(var(--color-orange-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-yellow {
|
|
|
|
|
|
background-color: rgba(var(--color-yellow-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-green {
|
|
|
|
|
|
background-color: rgba(var(--color-green-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-cyan {
|
|
|
|
|
|
background-color: rgba(var(--color-cyan-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-blue {
|
|
|
|
|
|
background-color: rgba(var(--color-blue-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-purple {
|
|
|
|
|
|
background-color: rgba(var(--color-purple-rgb), 0.2);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-pink {
|
|
|
|
|
|
background-color: rgba(var(--color-pink-rgb), 0.2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Hover 狀態下,提升有色標頭的可見度 */
|
|
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-red:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-red-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-orange:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-orange-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-yellow:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-yellow-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-green:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-green-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-cyan:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-cyan-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-blue:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-blue-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-purple:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-purple-rgb), 0.3);
|
|
|
|
|
|
}
|
2025-12-24 10:03:00 +00:00
|
|
|
|
|
2025-08-11 15:55:07 +00:00
|
|
|
|
.ge-explorer-folder-header.ge-folder-color-pink:hover {
|
|
|
|
|
|
background-color: rgba(var(--color-pink-rgb), 0.3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
/* ExplorerView Search Input */
|
|
|
|
|
|
.ge-explorer-search-container {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
padding: 1px 1px 10px;
|
|
|
|
|
|
border-radius: var(--input-radius);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-search-input {
|
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
height: 28px;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding: 4px 28px 4px 8px;
|
|
|
|
|
|
/* 右側預留清除鍵空間 */
|
2025-08-11 15:55:07 +00:00
|
|
|
|
background: transparent;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: var(--font-ui-smaller);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-search-input::placeholder {
|
|
|
|
|
|
color: var(--text-faint);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-search-clear {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 5px;
|
|
|
|
|
|
width: 28px;
|
|
|
|
|
|
height: 28px;
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-search-clear.show {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-search-clear:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 搜尋選項聚焦態(由鍵盤 ArrowDown 導覽時的可見回饋) */
|
|
|
|
|
|
.ge-explorer-search-option:focus,
|
|
|
|
|
|
.ge-explorer-search-option:focus-visible {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
box-shadow: 0 0 0 2px var(--interactive-accent);
|
|
|
|
|
|
}
|
2025-08-15 16:36:35 +00:00
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
/* ExplorerView Stash Group */
|
|
|
|
|
|
.ge-explorer-stash-dropzone {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding-left: 28px;
|
|
|
|
|
|
/* 與 .ge-explorer-mode-item 一致的縮排 */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
border: 1px dashed var(--background-modifier-border);
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
margin: 4px 0px 4px -1px;
|
|
|
|
|
|
color: var(--text-muted);
|
2026-05-17 18:01:43 +00:00
|
|
|
|
pointer-events: none;
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-18 16:18:35 +00:00
|
|
|
|
.ge-explorer-stash-dropzone:hover {
|
2025-08-15 16:36:35 +00:00
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 整個暫存區作為拖曳區塊時的高亮(避免版面位移,使用 inset box-shadow) */
|
|
|
|
|
|
.ge-explorer-stash-node.ge-dragover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
box-shadow: inset 0 0 0 1px var(--interactive-accent);
|
|
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 在整區拖曳高亮時,隱藏空暫存 dropzone 的邊框/背景,避免覆蓋底部邊線效果 */
|
|
|
|
|
|
.ge-explorer-stash-node.ge-dragover .ge-explorer-stash-dropzone {
|
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
|
border: none !important;
|
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-15 09:52:33 +00:00
|
|
|
|
.ge-explorer-stash-dropzone-clickable {
|
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-15 16:36:35 +00:00
|
|
|
|
.ge-explorer-stash-item {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding-left: 28px;
|
|
|
|
|
|
/* 與 .ge-explorer-mode-item 一致的縮排 */
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
/* 供插入指示線定位 */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 暫存區拖曳排序:插入指示線(上方) */
|
|
|
|
|
|
.ge-explorer-stash-item.ge-stash-insert-before::before {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
left: 20px;
|
|
|
|
|
|
/* 與內容縮排對齊,略小於 28px 以避開圖示 */
|
2025-08-15 16:36:35 +00:00
|
|
|
|
right: 8px;
|
|
|
|
|
|
top: -1px;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
border-top: 2px solid var(--interactive-accent);
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 暫存區拖曳排序:插入指示線(下方) */
|
|
|
|
|
|
.ge-explorer-stash-item.ge-stash-insert-after::after {
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 20px;
|
|
|
|
|
|
right: 8px;
|
|
|
|
|
|
bottom: -1px;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
border-bottom: 2px solid var(--interactive-accent);
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 讓 stash item 的圖示可沿用 grid 的色票類別 */
|
2025-12-24 10:03:00 +00:00
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-img {
|
|
|
|
|
|
color: var(--color-blue);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-video {
|
|
|
|
|
|
color: var(--color-red);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-audio {
|
|
|
|
|
|
color: var(--color-purple);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-pdf {
|
|
|
|
|
|
color: var(--color-orange);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-canvas {
|
|
|
|
|
|
color: var(--color-green);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-base {
|
|
|
|
|
|
color: var(--color-cyan);
|
|
|
|
|
|
}
|
2025-11-04 13:14:26 +00:00
|
|
|
|
|
|
|
|
|
|
/* 輸入錯誤樣式 Input Error Style */
|
|
|
|
|
|
.ge-input-error {
|
|
|
|
|
|
border-color: var(--color-red) !important;
|
|
|
|
|
|
background-color: rgba(var(--color-red-rgb), 0.1) !important;
|
2026-01-13 07:46:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------- */
|
|
|
|
|
|
/* 手機版頂部邊距適配 (針對 Obsidian 更新後的介面調整) */
|
|
|
|
|
|
|
|
|
|
|
|
.is-phone .ge-grid-view-container,
|
|
|
|
|
|
.is-phone .ge-note-view-container {
|
|
|
|
|
|
/* 讓整個插件容器避開頂部安全區域 (狀態列/瀏海) */
|
|
|
|
|
|
/* Obsidian 更新後將此變數用於處理頂部間距 */
|
|
|
|
|
|
padding-top: var(--safe-area-inset-top);
|
|
|
|
|
|
padding-left: var(--safe-area-inset-left);
|
|
|
|
|
|
padding-right: var(--safe-area-inset-right);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 移除 Obsidian 預設為 .view-content 添加的 margin-top,
|
2026-06-07 17:56:16 +00:00
|
|
|
|
因為 GridExplorer 的 header buttons 位在 view-content 之外,
|
|
|
|
|
|
這會導致 buttons 與 grid 之間出現多餘的空隙。 */
|
2026-01-13 07:46:35 +00:00
|
|
|
|
.is-phone .ge-grid-view-container .view-content {
|
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
|
padding-bottom: calc(var(--view-bottom-spacing) + var(--size-4-3)) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-22 17:32:31 +00:00
|
|
|
|
.is-tablet .ge-grid-view-container .view-content {
|
|
|
|
|
|
padding-bottom: calc(var(--safe-area-inset-bottom) + var(--size-4-3)) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-29 10:12:02 +00:00
|
|
|
|
.is-phone .ge-note-content {
|
2026-01-13 07:46:35 +00:00
|
|
|
|
padding-bottom: var(--view-bottom-spacing) !important;
|
2026-02-22 17:32:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-tablet .ge-note-content {
|
|
|
|
|
|
padding-bottom: var(--safe-area-inset-bottom) !important;
|
2026-04-30 15:51:53 +00:00
|
|
|
|
}
|
2026-06-07 17:56:16 +00:00
|
|
|
|
|
|
|
|
|
|
/* =========================================================================== */
|
|
|
|
|
|
/* Zip 圖片檢視視圖樣式 Zip Image Viewer Styles */
|
|
|
|
|
|
/* =========================================================================== */
|
|
|
|
|
|
|
|
|
|
|
|
/* 移除 view-content 的內距,使 zip viewer 滿版 */
|
|
|
|
|
|
.workspace-leaf:has(.zip-viewer-container) .view-content {
|
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 1. Grid 畫面下不用顯示上方工具列 */
|
|
|
|
|
|
.zip-viewer-container.is-grid-mode .zip-viewer-header {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-title {
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
max-width: 70%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-header-right {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-btn {
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
padding: 6px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
transition: background-color 0.2s, color 0.2s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-btn:hover {
|
|
|
|
|
|
background-color: var(--background-modifier-hover);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-counter {
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-main {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-loading {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 50%;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
|
z-index: 5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-loading.active {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-container {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-container.is-grid-mode .zip-viewer-grid-container {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item:hover {
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item.current {
|
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
|
box-shadow: 0 0 0 2px var(--interactive-accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item-img-wrapper {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
aspect-ratio: 1;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item-img-wrapper img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item-img-wrapper img.lazy-loaded {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.zip-viewer-grid-item-label {
|
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================================================================== */
|
|
|
|
|
|
/* Zip 檔案類型在 GridView 與 Explorer 中的圖示顏色 */
|
|
|
|
|
|
/* =========================================================================== */
|
|
|
|
|
|
.ge-icon-container.ge-zip {
|
|
|
|
|
|
color: var(--color-yellow);
|
|
|
|
|
|
}
|
|
|
|
|
|
.ge-explorer-stash-item .ge-explorer-folder-icon.ge-zip {
|
|
|
|
|
|
color: var(--color-yellow);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 網格預覽安全區域適配,確保橫屏不遮擋圖片,底部不遮擋 Home indicator */
|
|
|
|
|
|
|
|
|
|
|
|
.is-phone .zip-viewer-container {
|
|
|
|
|
|
padding-left: var(--safe-area-inset-left);
|
|
|
|
|
|
padding-right: var(--safe-area-inset-right);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 確保網格滾動最底部時不被底部 Home Indicator 遮擋 */
|
|
|
|
|
|
.is-phone .zip-viewer-grid-container {
|
|
|
|
|
|
padding-bottom: calc(var(--view-bottom-spacing) + var(--size-4-3)) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-tablet .zip-viewer-grid-container {
|
|
|
|
|
|
padding-bottom: calc(var(--safe-area-inset-bottom) + var(--size-4-3)) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================================================================== */
|
|
|
|
|
|
/* GridView 直接顯示 ZIP 圖片網格樣式 */
|
|
|
|
|
|
/* =========================================================================== */
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-view-container {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
z-index: 100;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-phone .ge-zip-view-container {
|
|
|
|
|
|
padding-top: var(--safe-area-inset-top);
|
|
|
|
|
|
padding-left: var(--safe-area-inset-left);
|
|
|
|
|
|
padding-right: var(--safe-area-inset-right);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-top-bar {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 9px 0;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-top-left {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-top-right {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding-right: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-title {
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-close-button,
|
|
|
|
|
|
.ge-zip-open-button {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
background-color: var(--interactive-normal);
|
|
|
|
|
|
border-radius: var(--button-radius);
|
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: background-color 0.2s, transform 0.1s;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-close-button:hover,
|
|
|
|
|
|
.ge-zip-open-button:hover {
|
|
|
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-scroll-container {
|
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-sidebar-scroll-container {
|
|
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-content-container {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-phone .ge-zip-content-container {
|
|
|
|
|
|
padding-bottom: var(--view-bottom-spacing) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-tablet .ge-zip-content-container {
|
|
|
|
|
|
padding-bottom: var(--safe-area-inset-bottom) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-sidebar-content-container {
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ge-zip-loading,
|
|
|
|
|
|
.ge-zip-empty {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 40px;
|
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.is-mobile .ge-zip-view-container::-webkit-scrollbar {
|
|
|
|
|
|
display: none !important;
|
|
|
|
|
|
width: 0 !important;
|
|
|
|
|
|
}
|