@import "fuelux-core.less";
.fuelux {

	.repeater {
		border: 1px solid @gray87;
		border-radius: 4px;

		&-canvas {
			&.scrolling{
				bottom: 0;
				left: 0;
				overflow-y: auto;
				position: absolute;
				right: 0;
				top: 0;
			}
		}

		&-header,
		&-footer
		{
			background: @gray98;
			min-height: 50px;
			padding: 8px;
			.clearfix;

			&-left {
				float: left;
			}

			&-right {
				float: right;
			}

			@media (max-width: 625px) {
				&-left,
				&-right {
					float: none;
					.clearfix;
				}

				&-left {
					margin-bottom: 8px;
				}
			}
		}

		&-header {
			border-bottom: 1px solid @gray87;
			#fuelux > .border-top-radius(4px);
		}

		&-footer {
			border-top: 1px solid @gray87;
			#fuelux > .border-bottom-radius(4px);
		}

		&-loader {
			display: none;
			left: 50%;
			position: absolute;
			margin: -32px 0 0 -32px;
			top: 50%;
		}

		&-viewport {
			min-height: 80px;
			position: relative;
		}

		&-pagination {

			label {
				font-weight: normal;
			}

			.repeater-primaryPaging {
				display: none;
				vertical-align: middle;
				width: 116px;

				&.active {
					display: inline-block;
				}

				ul.dropdown-menu {
					min-width: 116px;
				}
			}

			.repeater-secondaryPaging {
				display: none;
				width: 82px;

				&.active {
					display: inline-block;
				}
			}
		}

		&-search {
			float: left;
			width: 200px;
		}

		&-title {
			display: block;
			float: left;
			line-height: 34px;
			margin-right: 10px;
		}

		/*
		 * reinforce spacing around control buttons
		 */
		&-itemization .selectlist, // TODO add specfic class for page size dropdown
		&-filters,
		&-secondaryPaging,
		&-primaryPaging,
		&-next,
		&-prev
		{
			margin: auto 0.3em;
		}
	}

}