architwin 1.14.5 → 1.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -38,23 +38,23 @@ export function renderTagListPane() {
|
|
|
38
38
|
<span>${i18n.t('Tags')}</span>
|
|
39
39
|
</div>
|
|
40
40
|
<div class="at_form_container at_h-min-65 at_tag_list_pane">
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
<
|
|
53
|
-
<
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
41
|
+
<div class="at_tags_filter_section">
|
|
42
|
+
<input class="at_field_search_input" type="text" name="search_name" id="at-tag-name-search" data-cy="at-tag-name-search" placeholder=${i18n.t('Search...')}>
|
|
43
|
+
<span class="mdi mdi-close at_button_search_tag" id="at-clear-search-tag-name" style="display:none"></span>
|
|
44
|
+
<button class="at_search_button" id="at-search-tag-button">
|
|
45
|
+
<span class="mdi mdi-magnify"></span>
|
|
46
|
+
</button>
|
|
47
|
+
<div class="at_sort_btn_container">
|
|
48
|
+
<div id="at-tag-sort-icon" class="mdi mdi-filter mdi-24px at_icon_hover">
|
|
49
|
+
<span id="at-tag-sort-options-tooltip" class="at_custom_tooltip">
|
|
50
|
+
<p class="at_tag_sort_option at_sort_option_selected" data-sort="Ascending">${i18n.t('Ascending')}</p>
|
|
51
|
+
<p class="at_tag_sort_option" data-sort="Descending">${i18n.t('Descending')}</p>
|
|
52
|
+
<p class="at_tag_sort_option" data-sort="Newest">${i18n.t('Newest')}</p>
|
|
53
|
+
<p class="at_tag_sort_option" data-sort="Oldest">${i18n.t('Oldest')}</p>
|
|
54
|
+
</span>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
58
|
<div class="at_field at_flex_column" style="${_tagCategories ? '' : 'display: none;'}">
|
|
59
59
|
<label for="">${i18n.t('Category')}</label>
|
|
60
60
|
<div id="at-custom-category-filter-dropdown" data-cy="at-custom-category-filter-dropdown">
|
package/package.json
CHANGED
package/static/atwinui.css
CHANGED
|
@@ -734,8 +734,11 @@
|
|
|
734
734
|
color: var(--text-color-light);
|
|
735
735
|
font: 3em;
|
|
736
736
|
padding: 10px 8px;
|
|
737
|
-
margin-top:
|
|
738
|
-
|
|
737
|
+
margin-top: 1px;
|
|
738
|
+
margin-left: 4px;
|
|
739
|
+
height: 2.45rem;
|
|
740
|
+
width: 9rem;
|
|
741
|
+
/* width: 11.75rem */
|
|
739
742
|
}
|
|
740
743
|
|
|
741
744
|
.at_field_search_input:focus {
|
|
@@ -2317,6 +2320,7 @@ dialog#at-screen-share-request-modal::backdrop {
|
|
|
2317
2320
|
display: flex;
|
|
2318
2321
|
flex-direction: column;
|
|
2319
2322
|
align-items: end;
|
|
2323
|
+
margin-top: 1px;
|
|
2320
2324
|
}
|
|
2321
2325
|
|
|
2322
2326
|
#at-tag-sort-icon {
|
|
@@ -2332,3 +2336,11 @@ dialog#at-screen-share-request-modal::backdrop {
|
|
|
2332
2336
|
.at_sort_option_selected {
|
|
2333
2337
|
background-color: var(--bg-accent) !important;
|
|
2334
2338
|
}
|
|
2339
|
+
|
|
2340
|
+
.at_tags_filter_section {
|
|
2341
|
+
display: flex;
|
|
2342
|
+
flex-direction: row;
|
|
2343
|
+
gap: 2px !important;
|
|
2344
|
+
height: max-content;
|
|
2345
|
+
height: 3rem;
|
|
2346
|
+
}
|