mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
removed list manager window
This commit is contained in:
@@ -366,8 +366,14 @@ body {
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
.manage-lists-btn {
|
||||
width: 100%;
|
||||
.list-export-import-row {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.list-export-import-btn {
|
||||
flex: 1;
|
||||
height: 28px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -383,11 +389,11 @@ body {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.manage-lists-btn:hover {
|
||||
.list-export-import-btn:hover {
|
||||
background: var(--section-bg);
|
||||
}
|
||||
|
||||
.manage-lists-btn i {
|
||||
.list-export-import-btn i {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -752,6 +758,14 @@ body {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.word-item-menu-item.danger {
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
.word-item-menu-item.danger:hover:not(.disabled) {
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
}
|
||||
|
||||
.word-item-menu-item i {
|
||||
font-size: 12px;
|
||||
opacity: 0.8;
|
||||
|
||||
@@ -85,11 +85,18 @@
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Manage Lists Button -->
|
||||
<button class="manage-lists-btn" id="manageListsBtn">
|
||||
<i class="fa-solid fa-layer-group"></i>
|
||||
<span data-i18n="manage_lists">Manage Lists</span>
|
||||
</button>
|
||||
<!-- Export / Import (Lists tab) -->
|
||||
<div class="list-export-import-row">
|
||||
<button class="list-export-import-btn" id="exportListBtn">
|
||||
<i class="fa-solid fa-download"></i>
|
||||
<span data-i18n="export_list">Export</span>
|
||||
</button>
|
||||
<button class="list-export-import-btn" id="importListBtn">
|
||||
<i class="fa-solid fa-upload"></i>
|
||||
<span data-i18n="import_list">Import</span>
|
||||
</button>
|
||||
<input type="file" id="importListInput" accept="application/json" hidden />
|
||||
</div>
|
||||
|
||||
<!-- Color Pickers -->
|
||||
<div class="color-pickers-row">
|
||||
@@ -169,25 +176,6 @@
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<div class="word-actions-row">
|
||||
<button class="word-action-btn" id="selectAllBtn">
|
||||
<span data-i18n="select_all">Select</span>
|
||||
</button>
|
||||
<button class="word-action-btn" id="deselectAllBtn">
|
||||
<span data-i18n="deselect_all">Deselect</span>
|
||||
</button>
|
||||
<button class="word-action-btn" id="enableSelectedBtn">
|
||||
<span data-i18n="enable_selected">Enable</span>
|
||||
</button>
|
||||
<button class="word-action-btn" id="disableSelectedBtn">
|
||||
<span data-i18n="disable_selected">Disable</span>
|
||||
</button>
|
||||
<button class="word-action-btn danger" id="deleteSelectedBtn">
|
||||
<span data-i18n="delete_selected">Delete</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Search -->
|
||||
<div class="word-search-wrapper">
|
||||
<input type="text" id="wordSearch" class="word-search-input" data-i18n="search_placeholder" placeholder="Search..." />
|
||||
@@ -288,17 +276,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="options-buttons">
|
||||
<button class="option-button" id="importBtn">
|
||||
<i class="fa-solid fa-upload"></i>
|
||||
<span data-i18n="import_list">Import</span>
|
||||
</button>
|
||||
<input type="file" id="importInput" accept="application/json" hidden />
|
||||
<button class="option-button" id="exportBtn">
|
||||
<i class="fa-solid fa-download"></i>
|
||||
<span data-i18n="export_list">Export</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user