style.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .hc-media-mic-box {
  2. }
  3. .el-dialog.hc-media-recorder-dialog {
  4. --el-dialog-margin-top: 30vh;
  5. .el-dialog__header {
  6. padding: 10px 20px !important;
  7. border-color: #EEEEEE !important;
  8. .el-dialog__title {
  9. color: #464646;
  10. }
  11. .el-dialog__headerbtn {
  12. right: 6px;
  13. width: 32px;
  14. height: 32px;
  15. }
  16. }
  17. .el-dialog__body {
  18. padding: 10px;
  19. }
  20. .el-dialog__footer {
  21. display: none;
  22. }
  23. .hc-media-recorder-box {
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. cursor: pointer;
  28. img {
  29. width: 300px;
  30. }
  31. .content-box {
  32. position: absolute;
  33. width: 140px;
  34. height: 60px;
  35. text-align: center;
  36. color: #464646;
  37. .shut-down-icon {
  38. font-size: 24px;
  39. margin-bottom: 14px;
  40. }
  41. .time-box {
  42. position: relative;
  43. .time {
  44. color: #FFAF75;
  45. }
  46. }
  47. }
  48. &.ban {
  49. cursor: not-allowed;
  50. }
  51. }
  52. .content-search-word {
  53. position: relative;
  54. height: 300px;
  55. .content-word-box {
  56. font-size: 16px;
  57. position: relative;
  58. display: flex;
  59. align-items: flex-start;
  60. color: #444444;
  61. .search-word {
  62. position: relative;
  63. color: #ec7c2b;
  64. flex: 1;
  65. }
  66. }
  67. .word-btn-box {
  68. position: absolute;
  69. overflow: hidden;
  70. width: 100%;
  71. bottom: 0;
  72. }
  73. }
  74. }
  75. html.dark {
  76. .hc-media-mic-box .hc-icon-mic .el-loading-mask{
  77. backdrop-filter: none;
  78. background-color: var(--el-mask-color);
  79. .el-loading-spinner {
  80. top: 50%;
  81. }
  82. }
  83. .el-dialog.hc-media-recorder-dialog {
  84. --el-dialog-bg-color: #ffffff !important;
  85. }
  86. }