Commit 34d2540d authored by Alexander Yuzhin's avatar Alexander Yuzhin

[DE mobile] Fix search and replace.

parent df055f1f
......@@ -18,7 +18,7 @@
<i class="icon icon-search"></i>
</div>
<div class="item-inner">
<div class="item-title">Search</div>
<div class="item-title">Find</div>
</div>
</div>
</a>
......
......@@ -102,6 +102,7 @@ define([
if (isEdit) {
$layour.find('#settings-edit-document').hide();
$layour.find('#settings-readermode').hide();
$layour.find('#settings-search .item-title').text('Find and Replace')
} else {
$layour.find('#settings-readermode input:checkbox')
.attr('checked', Common.SharedSettings.get('readerMode'))
......
......@@ -5842,6 +5842,9 @@ html.pixel-ratio-3 .color-palette a {
.tablet .searchbar.document.replace .right .replace {
display: flex;
}
.tablet .searchbar.document.replace .link.replace {
font-size: 16px;
}
.tablet .searchbar.document .center {
width: 100%;
display: flex;
......@@ -5863,6 +5866,9 @@ html.pixel-ratio-3 .color-palette a {
.phone .searchbar.document.replace {
height: 96px;
}
.phone .searchbar.document.replace .link.replace {
font-size: 16px;
}
.phone .searchbar.document.replace .left {
margin-top: -48px;
}
......
......@@ -14,6 +14,10 @@
display: flex;
}
}
.link.replace {
font-size: 16px;
}
}
// Search mode
......@@ -52,6 +56,10 @@
.searchbar.document.replace {
height: @phoneSearchHeight * 2;
.link.replace {
font-size: 16px;
}
.left {
margin-top: -@phoneSearchHeight;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment