| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .jetpack-search-filters-widget__filter {
- background: #f9f9f9;
- border: 1px solid #dfdfdf;
- padding: 0 12px;
- margin-bottom: 12px;
- cursor: move;
- }
- .jetpack-search-filters-widget__controls {
- text-align: right;
- }
- .jetpack-search-filters-widget .jetpack-search-filters-widget__sort-controls-enabled {
- margin-left: 24px;
- }
- .jetpack-search-filters-widget__controls .delete {
- color: #a00;
- }
- .jetpack-search-filters-widget.hide-filters .jetpack-search-filters-widget__filter {
- display: none;
- }
- .button.jetpack-search-filters-widget__add-filter {
- margin-bottom: 10px;
- }
- /* Assume that taxonomy select is the default selected. Other controls should be hidden here. */
- .jetpack-search-filters-widget__post-type-select {
- display: none;
- }
- .jetpack-search-filters-widget__date-histogram-select {
- display: none;
- }
- .jetpack-search-filters-widget__filter-placeholder {
- border: 1px #555 dashed;
- background-color: #eee;
- height: 286px;
- margin-bottom: 12px;
- }
- /* When post type is selected, remove the other controls */
- .jetpack-search-filters-widget__filter.is-post_type .jetpack-search-filters-widget__taxonomy-select {
- display: none;
- }
- /* When date is selected, remove the other controls */
- .jetpack-search-filters-widget__filter.is-date_histogram .jetpack-search-filters-widget__date-histogram-select {
- display: inline;
- }
- .jetpack-search-filters-widget__filter.is-date_histogram .jetpack-search-filters-widget__taxonomy-select {
- display: none;
- }
- .jetpack-search-filters-widget.hide-post-types .jetpack-search-filters-widget__post-types-select {
- display: none;
- }
- .jetpack-search-filters-help:before {
- display: inline-block;
- position: relative;
- font-family: dashicons;
- font-size: 20px;
- top: 5px;
- line-height: 1px;
- content:"\f223";
- }
- .jetpack-search-filters-help {
- padding: 5px 5px 15px 0;
- }
- .jetpack-search-filters-widget__post-types-select label {
- display: block;
- margin-bottom: 4px;
- }
- .jetpack-search-filters-widget__post-types-select input[type="checkbox"] {
- margin-left: 24px;
- }
- body.no-js .jetpack-search-filters-widget__add-filter-wrapper {
- display: none;
- }
|