﻿.detailsView { table-layout: fixed; }

/* cabeçalho da view */
.detailsView caption { color: black; background-color: deepskyblue; font-weight: bold; font-size: 16px; }

/* títulos dos campos */
.detailsView td:first-child { vertical-align: top;  font-weight: bold; background-color: #efefef; padding: 2px 8px; font-size: 11px; }

/* dados dos campos */
.detailsView td:last-child { width: 500px; font-weight: normal; background-color: white; padding: 2px; font-size: 12px; }

/* paginação */
.detailsView .pager-button { background-color: #2196F3; color: white; border-radius:4px; cursor: pointer; }
    .detailsView .pager-button:hover:enabled { background-color: #d0d0d0; color: #000; }
    .detailsView .pager-button:disabled { background-color: #f0f0f0; color: #999; cursor: default; }
.detailsView tr.pager-row { background-color: #f8f8f8; }

/* campos de edição */
.detailsView input[type=text],
.detailsView select,
.detailsView textarea,
/*.detailsView input[type=checkbox],*/
.detailsView input[type=password] {
    border: 1px solid LightGray;
    background: #fff8ee;
    color: black;
    padding: 1px;
    font-size: 10px;
    width: 100%;
}
    .detailsView .textarea-readonly { font-size: 12px; background: white; border: 0px; }
