# elasticpress/5.3.5/assets/css/ordering.css

ElasticPress, version 5.3.5. 154 lines.

- Page: https://pluginprobe.com/plugins/elasticpress/5.3.5/code/assets/css/ordering.css
- Raw: https://pluginprobe.com/plugins/elasticpress/5.3.5/raw/assets/css/ordering.css
- Modified: 2026-08-27T16:27:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elasticpress/5.3.5/code/assets/css/ordering.css#L10-L20`.

```css
@import "./global/colors.css";

#ep-ordering {
	border-left-width: 0;
	border-right-width: 0;

	& .inside {
		background-color: var(--ep-c-white);
		margin: 0;
		padding: 0;
	}

	& .pointers,
	& .pointer-search,
	& .loading {
		background-color: var(--ep-c-white);
		border-left: 1px solid var(--ep-c-medium-white);
		border-right: 1px solid var(--ep-c-medium-white);
	}

	& .new-post {
		background: var(--ep-c-white);
		padding: 0 1em;
	}

	& .loading {
		padding: 1em;

		& .spinner {
			float: left;
			margin-left: 0;
			margin-top: 0;
		}
	}

	& .pointer-type {
		border: 2px solid var(--ep-c-medium-dark-blue);
		border-radius: 2px;
		color: var(--ep-c-medium-dark-blue);
		display: inline-block;
		font-size: 0.75em;
		font-weight: 700;
		margin-right: 8px;
		padding: 1px 2px;
	}

	& .pointers {

		& .pointer,
		& .post {
			padding: 1em;

			&:nth-child(odd) {
				background-color: var(--ep-c-white);
			}
		}

		& .title {
			color: var(--ep-c-medium-dark-blue);
		}

		& .removed .title {
			color: var(--ep-c-light-gray);
		}

		& .pointer-actions {
			float: right;

			/* stylelint-disable-next-line max-nesting-depth */
			& .handle {
				cursor: move;
			}

			/* stylelint-disable-next-line max-nesting-depth */
			& .delete-pointer {
				margin-right: 10px;
			}
		}

		& .next-page-notice {
			background-color: var(--ep-c-white-yellow);
			padding: 1em 0;
			text-align: center;
		}
	}

	& .legend {
		background: var(--ep-c-white);
		border-bottom: 1px solid var(--ep-c-medium-white);
		padding: 1em 0;
		text-align: center;
	}

	& .legend-item {
		display: inline-block;
		font-size: 0.875em;
		font-style: italic;
		margin: 0 0.5em;
	}

	& .pointer-search {
		margin-top: 2em;

		& .no-results {
			padding: 1em;
		}

		& .section-title {
			border-bottom: 1px solid var(--ep-c-medium-white);
			border-top: 1px solid var(--ep-c-medium-white);
			box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
			font-weight: 700;
		}

		& .search-wrapper {
			padding: 1em 0;
		}

		& .input-wrap {
			padding: 0 1em;
		}

		& .search-pointers {
			font-size: 18px;
			height: 1.7em;
			line-height: 100%;
			padding: 3px 8px;
		}

		& .pointer-results {
			padding: 1em 0 0;
		}

		& .pointer-result {
			padding: 10px 2em;

			/* stylelint-disable-next-line max-nesting-depth */
			& .dashicons {
				float: right;
			}

			&:hover {
				background-color: var(--ep-c-white);
			}
		}
	}

	/* stylelint-disable-next-line no-descending-specificity */
	& .delete-pointer,
	& .add-pointer {
		cursor: pointer;
	}
}

```
