<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@CHARSET "UTF-8";

/*
 Corrige a barra de progressos
 
 @author: Higor 
 @since: 09/05/2017
*/
.ui-progressbar {
	height: 30px !important;
	
}

.ui-progressbar-label {
	padding-top: 7px !important;
	color: white !important;
}

.ui-progressbar .ui-progressbar-value{
	margin: 0 !important;
	height: 28px !important;
}

/*
 Modifica as cores quando o growl Ã© warning, pq nesse tema todo growl Ã© preto.
 
 @author: Higor 
 @since: 13/04/2017
*/
#validate-message_container .ui-growl-item-container {
	background-color: #ff944d;
	color: black;
}

#validate-message_container .ui-growl-icon-close {
	color: white;
}
/*
 Ajusta quando o autocomplete esta com a opÃ§Ã£o dropdown true que faz 
 aparecer um button ao lado do campo mas ele nÃ£o empurra o campo seguinte para a direita.
 
 @author: Higor 
 @since: 13/12/2016
*/
.ui-autocomplete-dropdown {
	position: inherit !important;
	height: 18px !important;
}

/*
 Acrescenta borda em todas as laterais de todos os input e selectOneMenu, pois
 Material Design renderiza apenas a borda inferior,
 o que nÃ£o Ã© familiar para nossos usuÃ¡rios.
 
 @author: Higor 
 @since: 04/11/2016
*/
.ui-inputfield, .ui-selectonemenu, .ui-selectcheckboxmenu {
	border-top-width: 1px !important;
	border-right-width: 1px !important;
	border-left-width: 1px !important;
}

/*
 Acrescenta borda em todas as laterais de todos os selectOneMenu, pois
 Material Design renderiza apenas a borda inferior,
 o que nÃ£o Ã© familiar para nossos usuÃ¡rios.
 
 @author: Higor 
 @since: 04/11/2016
*/
.ui-selectonemenu, .ui-selectcheckboxmenu {
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-color: #bdbdbd;
	border-right-color: #bdbdbd;
	border-left-color: #bdbdbd;
}

/*
 Ajusta o botÃ£o de suspensÃ£o para nÃ£o encavalar no texto.
 
 @author: Higor
 @since: 27/12/2016
*/
.ui-selectcheckboxmenu-label-container {
	padding-right: 20px;
}
/*
 Melhora o alinhamento dos itens da topbar.xhtml
 
 @author: Higor 
 @since: 04/11/2016
*/
.search-item {
	padding: 10px 0 0 0 !important;
}

/*
 Melhora o alinhamento da lupa do campo filtro do selectOneMenu

 @author: Higor
 @since: 21/11/2016
*/
.ui-selectonemenu-panel .ui-selectonemenu-filter {
	width: 90% !important;
}

/*
 Ajusta o cabeÃ§alho para deixar o visual mais familiarizado com o SIP 7
 
 @author: Higor
 @since: 21/11/2016
*/
.topbar {
	background: linear-gradient(to right, teal, #282828);
}</pre></body></html>