/* damit diese admin.css verarbeitet wird, muss im Modul UIKit diese als custom css file eingetragen sein*/
/* weitere Beispiel unter: https://github.com/processwire/processwire/tree/dev/wire/modules/AdminTheme/AdminThemeUikit/themes/default/examples */

:root {
	--pw-main-background: #F7F7F7;
	--pw-button-background: var(--pw-main-color);
}

.PageList .PageListItem {
	border-color: #DBBFB3 !important;
	border-bottom: 1px solid;
}

.PageList .PageListItem:hover {
	background-color:#B7FA64;
}


.pw .ui-button.ui-state-hover {
	/* highlight button when hovered */
	background: var(--pw-main-color) !important;
	filter: brightness(1.3) !important;
}

.PageList .PageListItem .PageListActions > li > a {
	/* make PageList items use action links that look like buttons */
	display: inline-block;
	line-height: 1.3;
	background-color: var(--pw-main-color);
	color: #fff;
	padding: 2px 6px;
	font-weight: bold;
	text-transform: lowercase;
	position: relative;
	top: -1px;
}
.PageList .PageListItem .PageListActions > li > a:hover {
	/* highlight selected action when hovered */
	filter: brightness(1.3);
}
#pw-content-body .PageList ul.uk-pagination > li.uk-active > a {
	/* optional: update active pagination to use main color */
	--blocks-background: #fff;
	--text-color: var(--pw-main-color);
}

/* Das Datei Eingabefeld im TinyMCE verstecken ...

#wrap_link_page_file{
	display:none;
}
*/

/* --- PageTabeNext Besonderheiten ----------------------------------------------------*/

.ptn_actions a:hover, .InputfieldPageTableNext .InputfieldPageTableButtonsColumn .ui-button:hover
 {
    background: var(--pw-main-color) !important;
}


