hr.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**************** HR业务色彩方案之红色方案 *****************/
  2. /* 页面背景色 */
  3. .hr_body_bgColor {
  4. background-color: #F3F3F3;
  5. }
  6. /* 标题字体颜色 */
  7. .hr_top_title {
  8. font-family: "黑体";
  9. font-size: 20px;
  10. color: #FFFFFF;
  11. }
  12. /* 表格背景色,用于显示表格线 */
  13. .hr_table_bgColor {
  14. background-color: #A2A2A2;
  15. }
  16. /* 表头背景色 */
  17. .hr_table_title_bgColor {
  18. background-color: #E0E3E8;
  19. }
  20. /* 表体背景色 */
  21. .hr_table_content_bgColor {
  22. background-color: #FFFFFF;
  23. }
  24. /* 选中行背景色 */
  25. .hr_table_selected_bgColor {
  26. background-color: #FAE4E7;
  27. }
  28. /* 合计行背景色 */
  29. .hr_table_total_bgColor {
  30. background-color: #FEFFDA;
  31. }
  32. /* 自定义的按钮,临时代替KDWorkButton */
  33. .inputButton{
  34. height:19;
  35. width:60;
  36. border:none;
  37. border:1px solid #B3B3B3;
  38. background-color:#E7E9E3;
  39. table-layout:fixed;
  40. display:inline;
  41. color:#000000;
  42. font-size:12px;
  43. font-family:宋体;
  44. }
  45. /* 自定义的按钮,临时代替KDWorkButton,用在人员F7上的加人和减人 */
  46. .inputButton2{
  47. height:19;
  48. width:30;
  49. border:none;
  50. border:1px solid #B3B3B3;
  51. background-color:#E7E9E3;
  52. table-layout:fixed;
  53. display:inline;
  54. color:#000000;
  55. font-size:12px;
  56. font-family:宋体;
  57. }
  58. /* 自定义的文本输入框,临时代替KDTextField */
  59. .hr_input{
  60. height:19;
  61. width:70;
  62. border:none;
  63. border:1px solid #B4B4B4;
  64. background-color:#FCFBCE;
  65. color:#000000;
  66. font-size:12px;
  67. font-family:宋体;
  68. }
  69. /* 对话框上的标题,主要用于评估表单 */
  70. .ht_paper_title {
  71. font-family: "黑体";
  72. font-size: 20px;
  73. }
  74. /* 事务列表页面中的超链接 */
  75. .MyAffair:A { FONT-SIZE:9pt; cursor:hand;}
  76. .MyAffair:A:link {COLOR: #000000; text-decoration:underline;}
  77. .MyAffair:A:visited {COLOR: #000000; text-decoration:underline;}
  78. .MyAffair:A:active {COLOR: #000000;text-decoration:underline;}
  79. .MyAffair:A:hover {COLOR: #FF0000; text-decoration:underline;}