style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*font*/
  2. /*size*/
  3. /*icon*/
  4. /*color*/
  5. /*input/radio/checkbox*/
  6. /*popup*/
  7. /*table*/
  8. /*filter*/
  9. /*menu*/
  10. /*loading*/
  11. /*validate*/
  12. /*grid*/
  13. /*toolbar*/
  14. /*tooltip*/
  15. /*pager*/
  16. /*modal*/
  17. /*checkbox*/
  18. /*radio*/
  19. /*button*/
  20. /*input*/
  21. /*textarea*/
  22. /*form*/
  23. /*select*/
  24. /*switch*/
  25. /*pulldown*/
  26. .vxe-grid {
  27. position: relative; }
  28. .vxe-grid.is--loading:before {
  29. content: "";
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. width: 100%;
  34. height: 100%;
  35. z-index: 99;
  36. -webkit-user-select: none;
  37. -moz-user-select: none;
  38. -ms-user-select: none;
  39. user-select: none;
  40. background-color: rgba(0, 0, 0, 0.2); }
  41. .vxe-grid.is--loading > .vxe-table .vxe-loading {
  42. background-color: transparent; }
  43. .vxe-grid.is--maximize {
  44. position: fixed;
  45. top: 0;
  46. left: 0;
  47. width: 100%;
  48. height: 100%;
  49. padding: 0.5em 1em;
  50. background-color: #fff; }
  51. .vxe-grid .vxe-body--row.row--pending {
  52. color: #f56c6c;
  53. text-decoration: line-through;
  54. cursor: no-drop; }
  55. .vxe-grid .vxe-body--row.row--pending .vxe-body--column {
  56. position: relative; }
  57. .vxe-grid .vxe-body--row.row--pending .vxe-body--column:after {
  58. content: "";
  59. position: absolute;
  60. top: 50%;
  61. left: 0;
  62. width: 100%;
  63. height: 0;
  64. border-bottom: 1px solid #f56c6c;
  65. z-index: 1; }
  66. .vxe-grid .vxe-grid--form-wrapper,
  67. .vxe-grid .vxe-grid--top-wrapper,
  68. .vxe-grid .vxe-grid--bottom-wrapper {
  69. position: relative; }
  70. .vxe-grid {
  71. font-size: 14px; }
  72. .vxe-grid.size--medium {
  73. font-size: 14px; }
  74. .vxe-grid.size--small {
  75. font-size: 13px; }
  76. .vxe-grid.size--mini {
  77. font-size: 12px; }