query_where.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. * 创建者:王成
  3. * 创建日期:2022年6月24日
  4. * 描述:查询条件样式集
  5. */
  6. /* 查询条件文字标签 */
  7. .jt-query-where-group-label {
  8. position: relative;
  9. font-size: 13px;
  10. color: rgb(203, 203, 203);
  11. background-color: rgb(44, 64, 134);
  12. padding-left: 24px !important;
  13. height: 40px !important;
  14. line-height: 40px !important;
  15. font-weight: bold;
  16. }
  17. /* 查询条件文字标签前置div小方块样式 */
  18. .jt-query-where-group-label:before {
  19. position: absolute;
  20. content: '';
  21. width: 4px;
  22. height: calc(40px - 16px);
  23. background-color: rgb(64, 97, 173);
  24. left: 12px;
  25. top: 8px;
  26. }
  27. /* 输入查询条件、选择查询条件样式 */
  28. input[type=number],
  29. input[type=text],
  30. .jt-query-where-input,
  31. .jt-query-where-select {
  32. background-color: rgba(255, 255, 255, 0);
  33. border: solid 1px rgb(133, 215, 253) !important;
  34. width: calc(100% - 30px);
  35. margin: 5px 15px;
  36. height: 30px;
  37. line-height: 30px;
  38. font-size: 13px;
  39. color: rgb(133, 215, 253);
  40. padding-left: 10px !important;
  41. border-radius: 5px !important;
  42. }
  43. /* 选择查询条件样式 */
  44. .jt-query-where-select {
  45. padding: 0px;
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. }
  50. /* 选择条件行样式 */
  51. .jt-query-where-row {
  52. width: 100%;
  53. display: flex;
  54. flex-direction: row;
  55. justify-content: center;
  56. align-items: center;
  57. }
  58. /* 查询按钮\重置按钮样式 */
  59. .jt-query-btn,
  60. .jt-reset-btn {
  61. background-color: rgb(81, 121, 251);
  62. border: solid 0px rgb(255, 255, 255);
  63. margin-top: 20px;
  64. color: rgb(255, 255, 255);
  65. display: flex;
  66. flex-direction: row;
  67. justify-content: center;
  68. align-items: center;
  69. margin-right: 10px;
  70. }
  71. /* 重置按钮样式 */
  72. .jt-reset-btn {
  73. background-color: rgb(199, 62, 67);
  74. }
  75. /* 查询按钮图标样式 */
  76. .jt-reset-btn>span,
  77. .jt-query-btn>span {
  78. background: linear-gradient(to bottom, rgb(255, 255, 0) 50%, rgb(76, 245, 255) 50%);
  79. -webkit-background-clip: text;
  80. color: transparent;
  81. margin-right: 5px;
  82. }