You are on page 1of 3

<!

DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">:root {
--bg-label: #000000;
--bg-ligth-gray: #ededed;
--bg-title: #343541;
--bg-orange: #49ad95;
}

.form-dda {
background: rgb(255, 255, 255);
background: linear-gradient(132deg, rgba(255, 255, 255, 1) 59%, rgba(238,
238, 238, 1) 100%);
}

.form-dda ::-webkit-scrollbar {
width: 10px;
height: 10px;
}

.form-dda ::-webkit-scrollbar-track {
background: var(--bg-ligth-gray);
}

.form-dda ::-webkit-scrollbar-thumb {
background: var(--bg-orange);
}

.form-dda .main-portlet {
background: linear-gradient(135deg, rgba(67, 171, 148, 1) 0%, rgba(255,
255, 255, 1) 100%);
}

.form-dda .portlet-title .caption-subject {


color: white;
padding-left: 10px;
margin-top: 15px;
}

.form-dda .sub-titles {
color: #000000;
}

.form-dda label {
color: #000000;
font-weight: 600;
}

.form-dda input,
.form-dda select,
.form-dda textarea {
background: var(--bg-ligth-gray);
border: 1px solid var(--bg-ligth-gray);
border-radius: 0;
}

.form-dda .fields {
overflow-y: scroll;
height: 655px;
}

.form-dda .attachments-button {
color: white;
}

ul[id*=ui-id] {
z-index: 9999999999999999;
}
</style>
</head>
<body>
<div class="portlet light bordered form-dda">
<div class="portlet-title main-portlet">
<div class="caption font-blue-steel">
<div class="caption-subject bold uppercase" style="text-align:center">&nbsp;</div>
</div>
</div>

<div class="portlet-body form">


<form role="form">
<div class="form-body">
<div class="row">
<div class="col-md-6 fields">
<div class="col-md-12">
<h2 class="sub-titles">Prontuários RH</h2>

<hr /></div>

<div class="col-md-12">
<div class="form-group"><label class="control-label"
for="CAMPO_1">Matrícula</label> <input class="form-control" data-campo-id="@@1@@"
data-nome="Processo" id="CAMPO_1" type="text" /></div>
</div>

<div class="col-md-12">
<div class="form-group"><label class="control-label" for="CAMPO_2">Nome</label>
<input class="form-control" data-campo-id="@@2@@" data-nome="Assunto" id="CAMPO_2"
type="text" /></div>
</div>

<div class="col-md-12">
<div class="form-group"><label class="control-label" for="CAMPO_3">RG</label>
<input class="form-control" data-campo-id="@@3@@" data-nome="Observações"
id="CAMPO_3" type="text" /></div>
</div>

<div class="col-md-12">
<div class="form-group"><label class="control-label" for="CAMPO_4">CPF</label>
<input class="form-control" data-campo-id="@@4@@" data-nome="Referência"
id="CAMPO_4" type="text" /></div>
</div>

<div class="col-md-12">
<div class="form-group"><label class="control-label" for="CAMPO_5">Número de
COntrole da Caixa</label> <input class="form-control" data-campo-id="@@5@@" data-
nome="Referência" id="CAMPO_5" type="text" /></div>
</div>

<div class="col-md-12">
<div class="form-group"><label class="control-label"
for="CAMPO_6">Endereçamento</label> <input class="form-control" data-campo-
id="@@6@@" data-nome="Processo" id="CAMPO_6" type="text" /></div>
</div>

</div>

<div class="col-md-6">
<div class="ul-attachments">&nbsp;</div>
<iframe class="framesVisualizacao" height="550px" id="frameVisualizacao1"
width="100%"></iframe>

<div class="portlet light">


<div class="portlet-title">
<div class="caption"><i class="fa fa-paperclip"></i> <span class="caption-subject
bold font-grey-gallery uppercase"> Anexos </span> <span
class="caption-helper"></span></div>

<div class="tools"><a class="collapse" data-original-title="" href=""


title="">&nbsp; </a></div>
</div>

<div class="portlet-body">
<div class="col-sm-12 attachments">&nbsp;</div>
</div>

<div style="clear: both">&nbsp;</div>


</div>
</div>
</div>
</div>
</form>
</div>
</div>
<script>
$(function () {
DocumentoVisualizacaoForm.camposCarregados(function () {
var arquivoId = $('.listagemAnexos').find('.arquivo').attr('id');
if (arquivoId) $('#' + arquivoId).trigger('click');

});
});

</script></body>
</html>

You might also like