Commit c91aff8a authored by dmMaze's avatar dmMaze
Browse files

add floating search widget

parent b9754116
Loading
Loading
Loading
Loading
+64 −1
Original line number Diff line number Diff line
@@ -763,3 +763,66 @@ TextEditListScrollArea {
PresetListWidget {
    min-height: 280px;
}

ClickableLabel#PrevMatchBtn {
    image: url(data/icons/arrow-up.svg);
    min-width: 24px;
}

ClickableLabel#NextMatchBtn {
    image: url(data/icons/arrow-down.svg);
    min-width: 24px;
}


ClickableLabel#SearchCloseBtn {
    image: url(data/icons/chrome-close.svg);
    min-width: 24px;
}

QCheckBox#CaseSensitiveToggle::indicator {
    height: 28px;
    width: 28px;
    padding-top: 3px;
    image: url(data/icons/case-sensitive.svg);
}

QCheckBox#CaseSensitiveToggle::indicator:hover {
    background-color: rgba(30, 147, 229, 20%);
}

QCheckBox#CaseSensitiveToggle::indicator:checked {
    image: url(data/icons/case-sensitive_activated.svg);
}

QCheckBox#ReplaceToggle::indicator {
    height: 24px;
    width: 24px;
    image: url(data/icons/chevron-right.svg)
}

QCheckBox#ReplaceToggle::indicator:hover {
    background-color: rgba(30, 147, 229, 20%);
}

QCheckBox#ReplaceToggle::indicator:checked {
    image: url(data/icons/chevron-down.svg)
}

SearchEditor {
    height: 32px;
}

ClickableLabel#ReplaceBtn {
    image: url(data/icons/replace.svg);
    min-width: 24px;
    min-height: 24px;
}

ClickableLabel#ReplaceAllBtn {
    image: url(data/icons/replace-all.svg);
    min-width: 24px;
    min-height: 24px;
}

+3 −0
Original line number Diff line number Diff line
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.14667 9.00001L8.14665 14L8.85376 14L13.8538 9.00001L13.1467 8.2929L9.00021 12.4393L9.00022 2.00001L8.00022 2.00001L8.00022 12.4393L3.85378 8.2929L3.14667 9.00001Z" fill="#424242"/>
</svg>
+3 −0
Original line number Diff line number Diff line
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7002 8.64L8.20024 11.14H7.50024L5.00024 8.64L5.70024 7.93L7.35024 9.57V4H8.35024V9.57L10.0002 7.92L10.7002 8.64Z" fill="#424242"/>
</svg>
+3 −0
Original line number Diff line number Diff line
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.00019 6.50002L7.50019 4.00002L8.20019 4.00002L10.7002 6.50001L10.0002 7.21001L8.35019 5.57001L8.3502 11.14L7.3502 11.14L7.35019 5.57001L5.7002 7.22001L5.00019 6.50002Z" fill="#424242"/>
</svg>
+3 −0
Original line number Diff line number Diff line
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8538 6.99999L8.85384 2H8.14673L3.14673 6.99999L3.85384 7.7071L8.00027 3.56066V14H9.00027V3.56066L13.1467 7.7071L13.8538 6.99999Z" fill="#424242"/>
</svg>
Loading