PrimeNG 퀼 demo의 도구 모음 배경 색상은 퀼의 snow.css의 PrimeNG theme이 아닌 부분의 일부입니다.
당신은 CSS 규칙을보고 파이어 폭스와 크롬의 개발자 도구 모음을 사용할 수 있습니다
.ui-widget-header {
border: 1px solid #d9d9d9;
color: #1b1d1f;
background: #f6f7f9 0 0 repeat-x;
background: -moz-linear-gradient(top, #f6f7f9 0%, #ebedf0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f7f9), color-stop(100%,#ebedf0));
background: -webkit-linear-gradient(top, #f6f7f9 0%,#ebedf0 100%);
background: -o-linear-gradient(top, #f6f7f9 0%,#ebedf0 100%);
background: -ms-linear-gradient(top, #f6f7f9 0%,#ebedf0 100%);
background: linear-gradient(top, #f6f7f9 0%,#ebedf0 100%);
}
감사합니다! 그냥 대답으로 설정 :) – eagleEye