forked from serphacker/serposcope
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
114 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,10 @@ body { | |
white-space: nowrap; | ||
} | ||
|
||
.displaynone { | ||
display: none; | ||
} | ||
|
||
.inline { | ||
display: inline; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
web/src/main/java/serposcope/views/google/GoogleTargetController/table.ftl.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 21 additions & 13 deletions
34
web/src/main/java/serposcope/views/helpers/search-filter.ftl.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
<div class="search-filter"> | ||
<input id="filter-keyword" class="form-control inline width250 input-sm" placeholder="${i18n("label.keyword")}" /> | ||
<select id="filter-device" class="form-control inline width120 input-sm"> | ||
<option value="">${i18n("label.allDevices")}</option> | ||
<option value="D">${i18n("label.desktop")}</option> | ||
<option value="M">${i18n("label.mobile")}</option> | ||
</select> | ||
<input id="filter-country" class="form-control inline width120 input-sm" placeholder="Country" /> | ||
<input id="filter-local" class="form-control inline width120 input-sm" placeholder="${i18n("label.local")}" /> | ||
<input id="filter-datacenter" class="form-control inline width120 input-sm" placeholder="${i18n("label.datacenter")}" /> | ||
<input id="filter-custom" class="form-control inline width120 input-sm" placeholder="${i18n("label.custom")}" /> | ||
<button id="filter-apply" class="btn btn-primary btn-sm" >${i18n("label.filter")}</button> | ||
<button id="filter-reset" class="btn btn-default btn-sm" >${i18n("label.reset")}</button> | ||
<div> | ||
<div class="search-filter inline-block"> | ||
<input id="filter-keyword" class="form-control inline width250 input-sm" placeholder="${i18n("label.keyword")}" /> | ||
<select id="filter-device" class="form-control inline width120 input-sm"> | ||
<option value="">${i18n("label.allDevices")}</option> | ||
<option value="D">${i18n("label.desktop")}</option> | ||
<option value="M">${i18n("label.mobile")}</option> | ||
</select> | ||
<input id="filter-country" class="form-control inline width120 input-sm" placeholder="Country" /> | ||
<input id="filter-local" class="form-control inline width120 input-sm" placeholder="${i18n("label.local")}" /> | ||
<input id="filter-datacenter" class="form-control inline width120 input-sm" placeholder="${i18n("label.datacenter")}" /> | ||
<input id="filter-custom" class="form-control inline width120 input-sm" placeholder="${i18n("label.custom")}" /> | ||
<button id="filter-apply" class="btn btn-primary btn-sm" >${i18n("label.filter")}</button> | ||
<button id="filter-reset" class="btn btn-default btn-sm" >${i18n("label.reset")}</button> | ||
</div> | ||
|
||
<#if display == "table"> | ||
<div class="display-graphs inline-block"> | ||
<input type="button" onclick="javascript:serposcope.googleTargetControllerGrid.generateRankListGraph ();" value="Display Graphs" class="btn btn-primary btn-sm" /> | ||
</div> | ||
</#if> | ||
</div> |