record.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. $color: #c0c4cc;
  2. $bgColor: #304156;
  3. .record {
  4. display: flex;
  5. margin: 5px 3px;
  6. height: calc(100vh - 80px);
  7. border-radius: 5px;
  8. .el-select-dropdown__item {
  9. color: #c0c4cc;
  10. text-align: left;
  11. }
  12. .left {
  13. min-width: 160px;
  14. max-width: 160px;
  15. overflow-y: auto;
  16. border-right: 1px solid #606266;
  17. padding: 1px 5px;
  18. .station_list {
  19. margin: 8px 0;
  20. }
  21. .p_style {
  22. margin: 0;
  23. padding: 3px 0;
  24. border-bottom: 1px solid $color;
  25. border-radius: 3px;
  26. cursor: pointer;
  27. }
  28. .bg_style {
  29. background: $bgColor;
  30. }
  31. }
  32. .main {
  33. flex: 1;
  34. display: flex;
  35. flex-direction: column;
  36. .tools {
  37. padding: 8px 5px;
  38. border-bottom: 1px solid #606266;
  39. text-align: left;
  40. }
  41. .content {
  42. flex: 1;
  43. overflow-y: auto;
  44. padding: 8px;
  45. .items {
  46. text-align: left;
  47. border-bottom: 1px dashed #606266;
  48. margin: 12px 0;
  49. text-indent: 5px;
  50. // .user_style {
  51. // font-size: 18px;
  52. // width: 100px;
  53. // border-radius: 5px;
  54. // padding-left: 8px;
  55. // background: rgba(48, 65, 86, 0.4);
  56. // cursor: pointer;
  57. // }
  58. // .item_log {
  59. // text-indent: 20px;
  60. // margin: 3px 0;
  61. // }
  62. }
  63. }
  64. }
  65. }