-
Notifications
You must be signed in to change notification settings - Fork 552
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
49 changed files
with
1,090 additions
and
921 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,150 +1,150 @@ | ||
/*! | ||
* jQuery QueryBuilder 2.4.3 | ||
* jQuery QueryBuilder 2.4.4 | ||
* Copyright 2014-2017 Damien "Mistic" Sorel (http://www.strangeplanet.fr) | ||
* Licensed under MIT (http://opensource.org/licenses/MIT) | ||
*/ | ||
.query-builder .rules-group-container, .query-builder .rule-container, .query-builder .rule-placeholder { | ||
position: relative; | ||
margin: 4px 0; | ||
border-radius: 5px; | ||
padding: 5px; | ||
border: 1px solid #111; | ||
background: rgba(40, 40, 40, 0.9); | ||
} | ||
|
||
.query-builder .rule-container .rule-filter-container, | ||
.query-builder .rule-container .rule-operator-container, | ||
.query-builder .rule-container .rule-value-container, .query-builder .error-container, .query-builder .drag-handle { | ||
display: inline-block; | ||
margin: 0 5px 0 0; | ||
vertical-align: middle; | ||
} | ||
|
||
.query-builder .rules-group-container { | ||
padding: 10px; | ||
padding-bottom: 6px; | ||
border: 1px solid #00164A; | ||
background: rgba(50, 70, 80, 0.5); | ||
} | ||
.query-builder .rules-group-header { | ||
margin-bottom: 10px; | ||
} | ||
.query-builder .rules-group-header .group-conditions .btn.readonly:not(.active), | ||
.query-builder .rules-group-header .group-conditions input[name$=_cond] { | ||
border: 0; | ||
clip: rect(0 0 0 0); | ||
height: 1px; | ||
margin: -1px; | ||
overflow: hidden; | ||
padding: 0; | ||
position: absolute; | ||
width: 1px; | ||
white-space: nowrap; | ||
} | ||
.query-builder .rules-group-header .group-conditions .btn.readonly { | ||
border-radius: 3px; | ||
} | ||
.query-builder .rules-list { | ||
list-style: none; | ||
padding: 0 0 0 15px; | ||
margin: 0; | ||
} | ||
.query-builder .rule-value-container { | ||
border-left: 1px solid #DDD; | ||
padding-left: 5px; | ||
} | ||
.query-builder .rule-value-container label { | ||
margin-bottom: 0; | ||
font-weight: normal; | ||
} | ||
.query-builder .rule-value-container label.block { | ||
display: block; | ||
} | ||
.query-builder .rule-value-container select, .query-builder .rule-value-container input[type=text], .query-builder .rule-value-container input[type=number] { | ||
padding: 1px; | ||
} | ||
.query-builder .error-container { | ||
display: none; | ||
cursor: help; | ||
color: #F00; | ||
} | ||
.query-builder .has-error { | ||
background-color: #322; | ||
border-color: #800; | ||
} | ||
.query-builder .has-error .error-container { | ||
display: inline-block !important; | ||
} | ||
.query-builder .rules-list > *::before, .query-builder .rules-list > *::after { | ||
content: ''; | ||
position: absolute; | ||
left: -10px; | ||
width: 10px; | ||
height: calc(50% + 4px); | ||
border-color: #222; | ||
border-style: solid; | ||
} | ||
.query-builder .rules-list > *::before { | ||
top: -4px; | ||
border-width: 0 0 2px 2px; | ||
} | ||
.query-builder .rules-list > *::after { | ||
top: 50%; | ||
border-width: 0 0 0 2px; | ||
} | ||
.query-builder .rules-list > *:first-child::before { | ||
top: -12px; | ||
height: calc(50% + 14px); | ||
} | ||
.query-builder .rules-list > *:last-child::before { | ||
border-radius: 0 0 0 4px; | ||
} | ||
.query-builder .rules-list > *:last-child::after { | ||
display: none; | ||
} | ||
|
||
.query-builder.bt-checkbox-glyphicons .checkbox input[type=checkbox]:checked + label::after { | ||
font-family: 'Glyphicons Halflings'; | ||
content: '\e013'; | ||
} | ||
.query-builder.bt-checkbox-glyphicons .checkbox label::after { | ||
padding-left: 4px; | ||
padding-top: 2px; | ||
font-size: 9px; | ||
} | ||
|
||
.query-builder .error-container + .tooltip .tooltip-inner { | ||
color: #F22 !important; | ||
} | ||
|
||
.query-builder p.filter-description { | ||
margin: 5px 0 0 0; | ||
background: rgba(0, 170, 255, 0.2); | ||
border: 1px solid #346F7B; | ||
color: #AAD1E4; | ||
border-radius: 5px; | ||
padding: 2.5px 5px; | ||
font-size: .8em; | ||
} | ||
|
||
.query-builder .rules-group-header [data-invert] { | ||
margin-left: 5px; | ||
} | ||
|
||
.query-builder .drag-handle { | ||
cursor: move; | ||
vertical-align: middle; | ||
margin-left: 5px; | ||
} | ||
.query-builder .dragging { | ||
position: fixed; | ||
opacity: .5; | ||
z-index: 100; | ||
} | ||
.query-builder .dragging::before, .query-builder .dragging::after { | ||
display: none; | ||
} | ||
.query-builder .rule-placeholder { | ||
border: 1px dashed #BBB; | ||
opacity: .7; | ||
} | ||
.query-builder .rules-group-container, .query-builder .rule-container, .query-builder .rule-placeholder { | ||
position: relative; | ||
margin: 4px 0; | ||
border-radius: 5px; | ||
padding: 5px; | ||
border: 1px solid #111; | ||
background: rgba(40, 40, 40, 0.9); | ||
} | ||
|
||
.query-builder .rule-container .rule-filter-container, | ||
.query-builder .rule-container .rule-operator-container, | ||
.query-builder .rule-container .rule-value-container, .query-builder .error-container, .query-builder .drag-handle { | ||
display: inline-block; | ||
margin: 0 5px 0 0; | ||
vertical-align: middle; | ||
} | ||
|
||
.query-builder .rules-group-container { | ||
padding: 10px; | ||
padding-bottom: 6px; | ||
border: 1px solid #00164A; | ||
background: rgba(50, 70, 80, 0.5); | ||
} | ||
.query-builder .rules-group-header { | ||
margin-bottom: 10px; | ||
} | ||
.query-builder .rules-group-header .group-conditions .btn.readonly:not(.active), | ||
.query-builder .rules-group-header .group-conditions input[name$=_cond] { | ||
border: 0; | ||
clip: rect(0 0 0 0); | ||
height: 1px; | ||
margin: -1px; | ||
overflow: hidden; | ||
padding: 0; | ||
position: absolute; | ||
width: 1px; | ||
white-space: nowrap; | ||
} | ||
.query-builder .rules-group-header .group-conditions .btn.readonly { | ||
border-radius: 3px; | ||
} | ||
.query-builder .rules-list { | ||
list-style: none; | ||
padding: 0 0 0 15px; | ||
margin: 0; | ||
} | ||
.query-builder .rule-value-container { | ||
border-left: 1px solid #DDD; | ||
padding-left: 5px; | ||
} | ||
.query-builder .rule-value-container label { | ||
margin-bottom: 0; | ||
font-weight: normal; | ||
} | ||
.query-builder .rule-value-container label.block { | ||
display: block; | ||
} | ||
.query-builder .rule-value-container select, .query-builder .rule-value-container input[type=text], .query-builder .rule-value-container input[type=number] { | ||
padding: 1px; | ||
} | ||
.query-builder .error-container { | ||
display: none; | ||
cursor: help; | ||
color: #F00; | ||
} | ||
.query-builder .has-error { | ||
background-color: #322; | ||
border-color: #800; | ||
} | ||
.query-builder .has-error .error-container { | ||
display: inline-block !important; | ||
} | ||
.query-builder .rules-list > *::before, .query-builder .rules-list > *::after { | ||
content: ''; | ||
position: absolute; | ||
left: -10px; | ||
width: 10px; | ||
height: calc(50% + 4px); | ||
border-color: #222; | ||
border-style: solid; | ||
} | ||
.query-builder .rules-list > *::before { | ||
top: -4px; | ||
border-width: 0 0 2px 2px; | ||
} | ||
.query-builder .rules-list > *::after { | ||
top: 50%; | ||
border-width: 0 0 0 2px; | ||
} | ||
.query-builder .rules-list > *:first-child::before { | ||
top: -12px; | ||
height: calc(50% + 14px); | ||
} | ||
.query-builder .rules-list > *:last-child::before { | ||
border-radius: 0 0 0 4px; | ||
} | ||
.query-builder .rules-list > *:last-child::after { | ||
display: none; | ||
} | ||
|
||
.query-builder.bt-checkbox-glyphicons .checkbox input[type=checkbox]:checked + label::after { | ||
font-family: 'Glyphicons Halflings'; | ||
content: '\e013'; | ||
} | ||
.query-builder.bt-checkbox-glyphicons .checkbox label::after { | ||
padding-left: 4px; | ||
padding-top: 2px; | ||
font-size: 9px; | ||
} | ||
|
||
.query-builder .error-container + .tooltip .tooltip-inner { | ||
color: #F22 !important; | ||
} | ||
|
||
.query-builder p.filter-description { | ||
margin: 5px 0 0 0; | ||
background: rgba(0, 170, 255, 0.2); | ||
border: 1px solid #346F7B; | ||
color: #AAD1E4; | ||
border-radius: 5px; | ||
padding: 2.5px 5px; | ||
font-size: .8em; | ||
} | ||
|
||
.query-builder .rules-group-header [data-invert] { | ||
margin-left: 5px; | ||
} | ||
|
||
.query-builder .drag-handle { | ||
cursor: move; | ||
vertical-align: middle; | ||
margin-left: 5px; | ||
} | ||
.query-builder .dragging { | ||
position: fixed; | ||
opacity: .5; | ||
z-index: 100; | ||
} | ||
.query-builder .dragging::before, .query-builder .dragging::after { | ||
display: none; | ||
} | ||
.query-builder .rule-placeholder { | ||
border: 1px dashed #BBB; | ||
opacity: .7; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.