/*!
 Eloquence WEBDLG v2 Plugin Example: Editgrid
 CSS colors theme template
 (C) Copyright Marxmeier Software AG, 2023
 $Id: webdlg-editgrid-theme-colors.css,v 29.1 2023/10/19 07:54:10 rhg Exp $
*/

/* Background, foreground */
html.theme .eq-plugin.editgrid {
   background-color: white;
   color: black;
}
/* Header background */
html.theme .eq-plugin.editgrid > .hdr .cell,
html.theme .eq-plugin.editgrid > .row > .r {
   background-color: rgba(0, 0, 0, .125);
}

/* Header/cell border color */
html.theme .eq-plugin.editgrid .cell {
   border-color: silver;
}
/* Header border style */
html.theme .eq-plugin.editgrid > .hdr .cell {
   border-style: solid;
}
/* Cell border style */
html.theme .eq-plugin.editgrid > .row .cell {
   border-style: dotted;
}

/* Focus border/outline */
html.theme .eq-plugin.editgrid.eq-focused {
   border-color: #0085cc;
   outline: #0085cc solid 1px;
}
/* Focused cell outline */
html.theme .eq-plugin.editgrid.eq-focused .cell > input:focus {
   outline: #0085cc dotted 2px;
}

/* Disabled */
html.theme .eq-plugin.editgrid.eq-disabled {
   background-color: #f0f0f0 !important;
   color: gray !important;
}
