You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

81 lines
1.3 KiB

  1. body {
  2. border: none;
  3. box-sizing: border-box;
  4. padding: 0 !important;
  5. zoom: 98%;
  6. }
  7. .jfgrid-footer {
  8. display: none;
  9. }
  10. .pages{
  11. height:100%;
  12. box-sizing:border-box;
  13. overflow-y:scroll;
  14. position:relative;
  15. }
  16. .page::-webkit-scrollbar {
  17. display: none;
  18. }
  19. /*一个page为一页*/
  20. .page {
  21. height: auto;
  22. box-sizing: border-box;
  23. padding: 6mm;
  24. }
  25. .pageContent{
  26. width:100%;
  27. max-height:100%;
  28. /*overflow:hidden;*/
  29. }
  30. .printTitle {
  31. color: #333;
  32. font-size: 20px;
  33. text-align: center;
  34. line-height: 32px;
  35. margin-bottom:10px;
  36. }
  37. /*表格最外层*/
  38. .jfgrid-layout {
  39. border:1px solid #ccc;
  40. box-sizing:border-box;
  41. padding-bottom:0!important;
  42. height:auto!important;
  43. overflow:hidden!important;
  44. }
  45. /*表格行选中样式取消*/
  46. .jfgrid-data-cell.jfgrid-selected {
  47. border-bottom: 1px solid #ccc !important;
  48. border-right: 1px solid #ccc !important;
  49. background-color: unset !important;
  50. color: #333!important;
  51. }
  52. @media print {
  53. body {
  54. height: auto !important;
  55. }
  56. .pages {
  57. height: auto;
  58. }
  59. .page {
  60. height: 100%;
  61. }
  62. .pageContent {
  63. overflow:hidden;
  64. }
  65. .no-print {
  66. display: none;
  67. }
  68. ::-webkit-scrollbar {
  69. display: none
  70. }
  71. .btn {
  72. display: none;
  73. }
  74. }