-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
styling, changed default window size
- Loading branch information
1 parent
80df2b4
commit f65eb5f
Showing
10 changed files
with
68 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.refine-view-container: .row: .col-md-12 | ||
form: .input-group(data-hook='refine-input-group') | ||
.refine-view-container | ||
.query-input-container: .row: .col-md-12: form: .input-group(data-hook='refine-input-group') | ||
input.form-control.input-sm(type='text', data-hook='refine-input') | ||
span.input-group-btn | ||
button.btn.btn-info.btn-sm(type='button', data-hook='refine-button') Apply | ||
button.btn.btn-default.btn-sm(type='button', data-hook='reset-button') Reset | ||
.sampling-message | ||
span Query returned 9867 documents. This report is based on a sample of 1000 documents (10.13%). |
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,19 +1,28 @@ | ||
.refine-view-container { | ||
background: @gray8; | ||
padding: 12px 25px; | ||
position: relative; | ||
z-index: 1; | ||
|
||
input[type='text'] { | ||
font-family: @font-family-monospace; | ||
background: @pw; | ||
height: 28px; | ||
& + .input-group-btn { | ||
padding-left: 10px; | ||
.query-input-container { | ||
padding: 12px 25px; | ||
background: @gray8; | ||
|
||
&:last-child > .btn { | ||
margin-left: 2px; | ||
input[type='text'] { | ||
font-family: @font-family-monospace; | ||
background: @pw; | ||
height: 28px; | ||
& + .input-group-btn { | ||
padding-left: 10px; | ||
|
||
&:last-child > .btn { | ||
margin-left: 2px; | ||
} | ||
} | ||
} | ||
} | ||
.sampling-message { | ||
font-size: 14px; | ||
font-weight: 200; | ||
padding: 5px 25px; | ||
border-bottom: 2px solid @gray7 | ||
} | ||
} |
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