Skip to content

Commit 5076926

Browse files
committed
now the face search modal style is refactored to be in the more minimalist aesthetic. this completes the style ui refactoring
1 parent 6fdef7c commit 5076926

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

AppCode/taga-CSS/tagging-CSS/tagging-facesearch-modal.css

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#modal-facesearch-top-grid-div-id {
22
width: 100%;
33
display: grid;
4-
grid-template-rows: 3fr 24fr;
4+
grid-template-rows: 2fr 22fr;
55
height: 100%;
66
/* box-sizing: border-box; */
77
padding: 0%;
@@ -12,7 +12,7 @@
1212

1313
/* SEARCH BUTTON START */
1414
#modal-facesearch-main-button-container-div-id {
15-
background-color: var(--primary-300);
15+
/* background-color: var(--primary-300); */
1616
grid-area: modal-facesearch-main-button-container-div-id;
1717
display: flex;
1818
justify-content: space-evenly;
@@ -64,25 +64,25 @@
6464

6565
/* IMAGE SEARCH RESULTS START */
6666
#modal-facesearch-images-results-display-id {
67-
background-color: var(--primary-300);
67+
/* background-color: var(--primary-300); */
6868
grid-area: modal-facesearch-images-results-display-id;
69-
border-top: 6px solid var(--primary);
69+
border-top: 5px solid var(--primary);
70+
7071
display: grid;
7172
grid-template-columns: 1fr;
72-
grid-template-rows: 1fr 11fr;
73+
grid-template-rows: 11fr;
7374
/* height: 100%; */
7475
min-height: 1px;
7576
/* max-width: 100%; */
7677
/* overflow-y: scroll; */
7778
box-sizing: border-box;
78-
grid-template-areas:
79-
'modal-facesearch-images-results-button-div-id'
80-
'modal-facesearch-images-results-grid-div-area-id';
79+
grid-template-areas: 'modal-facesearch-images-results-grid-div-area-id';
8180
}
8281

8382
#modal-facesearch-images-results-grid-div-area-id {
84-
background-color: var(--primary);
85-
overflow-y: scroll;
83+
background-color: var(--primary-300);
84+
overflow-y: auto;
85+
overflow-x: hidden;
8686
border-top: 3px solid var(--primary);
8787
/* max-height: 100%; */
8888
/* overflow-y: scroll; */
@@ -95,6 +95,7 @@
9595
.modal-image-facesearch-result-single-image-img-obj-class {
9696
max-height: 25vh;
9797
max-width: 50vw;
98+
margin-top: 3px;
9899
cursor: pointer;
99100
}
100101
#modal-facesearch-meme-tag-label-id {

AppCode/tagging.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@
527527
<div id="modal-facesearch-top-grid-div-id">
528528
<!-- search button -->
529529
<div id="modal-facesearch-main-button-container-div-id">
530-
<h2>Search Similar Face</h2>
530+
<h2>Select Face</h2>
531531
<!-- <button type="button" class="fun-button-blue" id="modal-facesearch-main-button-id">SEARCH FACE</button> -->
532532
</div>
533533

@@ -536,10 +536,9 @@ <h2>Search Similar Face</h2>
536536

537537
<!-- IMAGE SEARCH RESULTS START -->
538538
<div id="modal-facesearch-images-results-display-id">
539-
<div id="modal-facesearch-images-results-button-div-id">
539+
<!-- <div id="modal-facesearch-images-results-button-div-id">
540540
<label id="modal-facesearch-meme-tag-label-id">Select Image</label>
541-
<!-- <button type="button" class="fun-button-blue" id="modal-search-images-results-select-images-order-button-id">Select Image</button> -->
542-
</div>
541+
</div> -->
543542

544543
<!-- for the image annotation matches -->
545544
<div id="modal-facesearch-images-results-grid-div-area-id">

0 commit comments

Comments
 (0)