Merge pull request #9758 from Piccirello/new-search-webui-2

Add Search feature to WebUI
This commit is contained in:
Mike Tzou
2018-12-09 16:01:21 +08:00
committed by GitHub
11 changed files with 1379 additions and 64 deletions

View File

@@ -320,6 +320,9 @@ a.propButton img {
#mochaToolbar {
margin-top: 5px;
position: relative;
height: 29px;
overflow-y: hidden;
}
#mochaToolbar .divider {
@@ -336,6 +339,11 @@ a.propButton img {
padding-right: 5px;
}
#mainWindowTabs {
float: right;
margin: 4px 5px 0 0;
}
/* Tri-state checkbox */
label.tristate {
@@ -530,3 +538,47 @@ td.statusBarSeparator {
.statisticsValue {
text-align: right;
}
/* Search tab */
#SearchPanel, #SearchPanel_wrapper, #SearchPanel_pad {
height: inherit;
}
#searchResults {
padding: 0 20px;
height: 100%;
}
#searchResultsTableContainer {
height: calc(100% - 140px);
-moz-height: calc(100% - 140px);
-webkit-height: calc(100% - 140px);
overflow: auto;
}
#searchResultsTableDiv {
height: calc(100% - 26px) !important;
-moz-height: calc(100% - 26px) !important;
-webkit-height: calc(100% - 26px) !important;
}
#searchResults .dynamicTable {
width: 100%;
}
#searchResults .numSearchResults {
font-style: italic;
}
.red {
color: red;
}
.green {
color: green;
}
.searchPluginsTableRow {
cursor: pointer;
}