global-alarm-push.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. $color: #c0c4cc;
  2. $bgColor: #232526;
  3. .layout {
  4. .global_alarm_push {
  5. /* 滚动条样式 */
  6. ::-webkit-scrollbar {
  7. width: 1px;
  8. }
  9. ::-webkit-scrollbar-thumb {
  10. background-color: #303133;
  11. border-radius: 3px;
  12. }
  13. }
  14. #global_alarm_push {
  15. display: none;
  16. text-align: left;
  17. color: $color;
  18. position: relative;
  19. .close_btn {
  20. position: absolute;
  21. color: $color;
  22. text-align: center;
  23. height: 25px;
  24. line-height: 25px;
  25. font-size: 20px;
  26. width: 100%;
  27. border-bottom: 1px solid $color;
  28. display: flex;
  29. .close_layer {
  30. flex: 3;
  31. cursor: pointer;
  32. }
  33. .move_layer {
  34. flex: 1;
  35. border-right: 1px solid #606266;
  36. }
  37. }
  38. .main_box {
  39. position: absolute;
  40. flex: 1;
  41. top: 25px;
  42. height: 570px;
  43. max-height: 570px;
  44. overflow-y: auto;
  45. .alarm_content {
  46. padding: 5px 10px;
  47. p {
  48. margin: 4px 0;
  49. color: #909399;
  50. b {
  51. color: $color;
  52. }
  53. .suojin {
  54. text-indent: 10px;
  55. }
  56. .el-link {
  57. padding-bottom: 4px;
  58. }
  59. }
  60. }
  61. .alarm_content:not(:last-child) {
  62. border-bottom: 1px solid #606266;
  63. }
  64. }
  65. }
  66. .open_layer {
  67. position: fixed;
  68. color: red;
  69. font-size: 20px;
  70. bottom: 45%;
  71. z-index: 9999999;
  72. right: 2px;
  73. border: 1px solid #606266;
  74. border-right: none;
  75. border-radius: 3px;
  76. color: $color;
  77. background-color: #232526;
  78. height: 30px;
  79. width: 50px;
  80. line-height: 30px;
  81. cursor: pointer;
  82. }
  83. /deep/ .layui-layer {
  84. border-radius: 8px 8px 3px 3px;
  85. background-color: $bgColor !important;
  86. }
  87. // title
  88. /deep/ .layui-layer .layui-layer-title {
  89. height: 55px;
  90. line-height: 55px;
  91. font-size: 18px;
  92. background-color: transparent;
  93. color: $color;
  94. border-bottom: none;
  95. padding: 0;
  96. }
  97. }