mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
86352c58be
Override find & replace results count text to black GitOrigin-RevId: 754b37b266bde32abc705bd2ca61836d03dea828
70 lines
1.2 KiB
Text
70 lines
1.2 KiB
Text
.ace_search {
|
|
background-color: @gray-lightest;
|
|
border: 1px solid @editor-border-color;
|
|
border-top: 0 none;
|
|
width: 350px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0px;
|
|
z-index: 99;
|
|
white-space: normal;
|
|
padding: @line-height-computed / 4;
|
|
|
|
font-family: @font-family-sans-serif;
|
|
|
|
a,
|
|
button {
|
|
i {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.ace_searchbtn_close {
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 12px;
|
|
color: @gray;
|
|
&:hover {
|
|
color: @gray-dark;
|
|
}
|
|
}
|
|
|
|
.ace_search_form,
|
|
.ace_replace_form {
|
|
margin-bottom: @line-height-computed / 4;
|
|
input {
|
|
width: 210px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
.btn-group {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.ace_nomatch {
|
|
input {
|
|
border-color: @red;
|
|
}
|
|
}
|
|
|
|
.ace_search_options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.ace_search_counter {
|
|
color: @editor-search-count-color;
|
|
margin: auto 0;
|
|
}
|
|
}
|
|
.ace_search.left {
|
|
border-left: 0 none;
|
|
border-radius: 0px 0px @border-radius-base 0px;
|
|
left: 0;
|
|
}
|
|
.ace_search.right {
|
|
border-radius: 0px 0px 0px @border-radius-base;
|
|
border-right: 0 none;
|
|
right: 0;
|
|
}
|