mirror of
https://github.com/zadam/trilium.git
synced 2025-01-15 03:27:44 +08:00
electron search is not used anymore
This commit is contained in:
parent
7cdc181b47
commit
1ad406ced5
2 changed files with 0 additions and 79 deletions
|
@ -1,57 +0,0 @@
|
||||||
html, body {
|
|
||||||
margin: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Meiryo", sans-serif;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-body {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
margin: 8px;
|
|
||||||
padding: 10px;
|
|
||||||
border: solid #aaaaaa 1px;
|
|
||||||
border-radius: 10px;
|
|
||||||
background-color: #fafafa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-input {
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-matches {
|
|
||||||
color: #999;
|
|
||||||
font-size: 0.8em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-back {
|
|
||||||
margin-left: 2px;
|
|
||||||
padding-left: 6px;
|
|
||||||
padding-right: 2px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-forward {
|
|
||||||
padding-left: 2px;
|
|
||||||
padding-right: 6px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-close {
|
|
||||||
margin-left: 4px;
|
|
||||||
padding: 0 2px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inpage-search-back:hover,
|
|
||||||
.inpage-search-forward:hover,
|
|
||||||
.inpage-search-close:hover {
|
|
||||||
background-color: #e2e0e2;
|
|
||||||
border-radius: 0.2em;
|
|
||||||
}
|
|
|
@ -1,22 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes" />
|
|
||||||
<link href="/libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="inpage-search-body">
|
|
||||||
<input class="inpage-search-input form-control form-control-sm" type="search" placeholder="Search..." autocomplete="off" autofocus/>
|
|
||||||
|
|
||||||
<div class="inpage-search-matches">0/0</div>
|
|
||||||
|
|
||||||
<div class="inpage-search-back" title="Previous result"><</div>
|
|
||||||
|
|
||||||
<div class="inpage-search-forward" title="Next result">></div>
|
|
||||||
|
|
||||||
<div class="inpage-search-close" title="Close search">✕</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
<script>var exports = {}</script>
|
|
||||||
</html>
|
|
Loading…
Reference in a new issue