/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.wp-list-table .column-wp_ott_id { width: 5%; }
.wp-list-table .column-wp_ott_title { width: 40%; }
.wp-list-table .column-wp_ott_shortcode { width: 40%; }

.wp-ott-scroll-fieldset {
	background-color: #fdfdfd;
	border: 1px solid #0d0d0d;
	display: inline-block;
	padding: 1ex 5ex 1ex 1ex;
	line-height: 2.5ex;
	max-height: 15ex;
	overflow-y: auto;
}

.wp-ott-scroll-fieldset::-webkit-scrollbar {
	-webkit-appearance: none;
}

/**
 * Fix MacOS Chrome scrollbar behavior
 */

.wp-ott-scroll-fieldset::-webkit-scrollbar:vertical {
	width: 11px;
}

.wp-ott-scroll-fieldset::-webkit-scrollbar:horizontal {
	height: 11px;
}

.wp-ott-scroll-fieldset::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 2px solid white; /* should match background, can't be transparent */
	background-color: rgba(0, 0, 0, .5);
}

.wp-ott-scroll-fieldset::-webkit-scrollbar-track { 
	background-color: #fff; 
	border-radius: 8px; 
} 