/**
 * High Contrast Admin Color Scheme by Robert Chapin
 *
 * Tested and working on 4.4, 4.7, and 4.8.  Should be compatible with 4.2.
 * Modifies the styles found in:
 *  wp-admin/css/common.css
 *  wp-admin/css/edit.css
 *  wp-admin/css/forms.css
 *  wp-admin/css/list-tables.css
 *  wp-admin/css/themes.css
 */

/* Background Color */
html,
body {
	background: #FFF;
}
#wp-content-editor-tools,
#post-status-info {
	background-color: #FFF;
}

/* Input Border Color */
input[type="checkbox"],
input[type="radio"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea,
.widget-top {
    border-color: #000 !important;
}

/* Table Border Color */
.wp-editor-container {
    border: #000 1px solid !important;
}
.has-dfw .wp-editor-container {
    border-top-width: 2px !important;
}
table.widefat {
	border: 1px solid #000;
}
.widefat th,
.widefat td,
.plugins .inactive td,
.plugins .inactive th,
.plugins .active td,
.plugins .active th,
.plugin-install #the-list td,
.upgrade .plugins td,
.upgrade .plugins th,
#the-comment-list th,
#the-comment-list td {
	-webkit-box-shadow: inset 0 -1px 0 #000;
	box-shadow: inset 0 -1px 0 #000;
}
.widefat tfoot th,
.widefat tfoot td {
	border-top: 1px solid #000;
	border-bottom: none;
	-webkit-box-shadow: none;
	box-shadow: inset none;
}

/* Alternating Row Color */
.striped > tbody > :nth-child(odd),
.alternate,
.community-events ul {
    background-color: #FFF;
}
.plugins .active td,
.plugins .active th,
tr.active + tr.plugin-update-tr .plugin-update {
    background-color: #FFF;
}
.plugins .inactive td,
.plugins .inactive th,
.plugins .inactive p {
	color: #FFF;
    background-color: #000;
}
.plugins .inactive a {
	color: #01afff
}

/* Highlighted Row Color */
.plugins .active.update td,
.plugins .active.update th,
tr.active.update + tr.plugin-update-tr .plugin-update,
#activity-widget #the-comment-list .unapproved,
#the-comment-list .unapproved th,
#the-comment-list .unapproved td,
.theme-overlay .theme-update-message {
    background-color: #fbe7e1;
}

/* Tabbed Pages */
.nav-tab-active,
.contextual-help-tabs .active,
.contextual-help-tabs .active a,
.contextual-help-tabs .active a:hover,
.theme-overlay .parent-theme,
#plugin-information-tabs a.current {
	color: #FFF;
    background-color: #000;
}

kbd,
code,
#plugin-information pre,
#plugin-information code {
    background-color: #000;
	color: #FFF;
}