1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /**************** HR业务色彩方案之红色方案 *****************/
- /* 页面背景色 */
- .hr_body_bgColor {
- background-color: #F3F3F3;
- }
- /* 标题字体颜色 */
- .hr_top_title {
- font-family: "黑体";
- font-size: 20px;
- color: #FFFFFF;
- }
- /* 表格背景色,用于显示表格线 */
- .hr_table_bgColor {
- background-color: #A2A2A2;
- }
- /* 表头背景色 */
- .hr_table_title_bgColor {
- background-color: #E0E3E8;
- }
- /* 表体背景色 */
- .hr_table_content_bgColor {
- background-color: #FFFFFF;
- }
- /* 选中行背景色 */
- .hr_table_selected_bgColor {
- background-color: #FAE4E7;
- }
- /* 合计行背景色 */
- .hr_table_total_bgColor {
- background-color: #FEFFDA;
- }
- /* 自定义的按钮,临时代替KDWorkButton */
- .inputButton{
- height:19;
- width:60;
- border:none;
- border:1px solid #B3B3B3;
- background-color:#E7E9E3;
- table-layout:fixed;
- display:inline;
- color:#000000;
- font-size:12px;
- font-family:宋体;
- }
- /* 自定义的按钮,临时代替KDWorkButton,用在人员F7上的加人和减人 */
- .inputButton2{
- height:19;
- width:30;
- border:none;
- border:1px solid #B3B3B3;
- background-color:#E7E9E3;
- table-layout:fixed;
- display:inline;
- color:#000000;
- font-size:12px;
- font-family:宋体;
- }
- /* 自定义的文本输入框,临时代替KDTextField */
- .hr_input{
- height:19;
- width:70;
- border:none;
- border:1px solid #B4B4B4;
- background-color:#FCFBCE;
- color:#000000;
- font-size:12px;
- font-family:宋体;
- }
- /* 对话框上的标题,主要用于评估表单 */
- .ht_paper_title {
- font-family: "黑体";
- font-size: 20px;
- }
- /* 事务列表页面中的超链接 */
- .MyAffair:A { FONT-SIZE:9pt; cursor:hand;}
- .MyAffair:A:link {COLOR: #000000; text-decoration:underline;}
- .MyAffair:A:visited {COLOR: #000000; text-decoration:underline;}
- .MyAffair:A:active {COLOR: #000000;text-decoration:underline;}
- .MyAffair:A:hover {COLOR: #FF0000; text-decoration:underline;}
|