Add clear button to searchable domain selector (#7984)

* Add clear button to searchable domain selector

* Update css.php
This commit is contained in:
Alex
2026-05-22 14:37:55 -07:00
committed by GitHub
parent 1f680c90de
commit b6c8e893a8
2 changed files with 41 additions and 3 deletions
+18 -1
View File
@@ -4189,7 +4189,24 @@ else { //default: white
.domain-search-empty {
padding: 8px 10px;
color: <?=$input_text_placeholder_color?>;
};
}
.domain-search-clear {
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
font-size: 14px;
color: #333;
opacity: 0.6;
padding: 0;
line-height: 1;
pointer-events: auto;
z-index: 2;
}
<?php