Няма описание

alerts.css 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .alert-card {
  2. position: relative;
  3. border-radius: 35px;
  4. margin-bottom: 10px;
  5. }
  6. .alert-card .alert-actions {
  7. display: none;
  8. }
  9. .alert-card:hover .alert-actions {
  10. display: block;
  11. }
  12. .alert-actions {
  13. position: relative;
  14. right: 0;
  15. top: -1.5rem;
  16. justify-content: space-between;
  17. }
  18. @media (max-width: 1224px) {
  19. .alert-actions {
  20. top: 0;
  21. }
  22. }
  23. .btn-alert-primary {
  24. background: #445169 !important;
  25. border-color: #445169 !important;
  26. color: white;
  27. }
  28. .btn-alert-success {
  29. background: #32B67A !important;
  30. border-color: #32B67A !important;
  31. color: white;
  32. }
  33. .btn-alert-danger {
  34. background: #E9727D !important;
  35. border-color: #E9727D !important;
  36. color: white;
  37. }
  38. .bg-alert-success {
  39. background-color: #32B67A !important;
  40. }
  41. .bg-alert-danger {
  42. background-color: #E9727D !important;
  43. }
  44. .bg-muted {
  45. background-color: #6b6d73 !important;
  46. }
  47. .bg-low {
  48. background-color: #ffdc71 !important;
  49. }
  50. .bg-critical {
  51. background-color: #7d0fdd !important;
  52. }
  53. .alert-m-title-critical:hover {
  54. color: #7d0fdd;
  55. }
  56. .alert-m-title-danger:hover {
  57. color: #F25961;
  58. }
  59. .alert-m-title-warning:hover {
  60. color: #FFAD46;
  61. }
  62. .alert-m-title-info:hover {
  63. color: #48ABF7;
  64. }
  65. .alert-m-title-low:hover {
  66. color: #ffdc71;
  67. }
  68. .alert-m-title-muted:hover {
  69. color: #6b6d73;
  70. }
  71. .enrichment-dl {
  72. font-size: 0.9em;
  73. max-height: 200px;
  74. overflow-y: auto;
  75. margin-bottom: 0;
  76. }
  77. .enrichment-dl dt {
  78. font-weight: bold;
  79. }
  80. .enrichment-dl dd {
  81. margin-left: 20px;
  82. margin-bottom: 8px;
  83. }
  84. .alert-m-title{
  85. cursor: pointer;
  86. }
  87. .avatar-wrapper {
  88. position: relative;
  89. display: inline-flex;
  90. }
  91. .envelope-icon {
  92. position: absolute;
  93. top: 75px;
  94. left: 50%;
  95. transform: translateX(-50%);
  96. font-size: 16px;
  97. }
  98. .pre-scrollable {
  99. white-space: pre-wrap;
  100. word-wrap: break-word;
  101. }
  102. .similar-alert-graph {
  103. background-color: #f2f2f2;
  104. border-radius: 25px;
  105. }
  106. .hidden {
  107. display: none;
  108. }
  109. #context-menu {
  110. position: absolute;
  111. z-index: 100;
  112. background-color: white;
  113. border: 1px solid black;
  114. padding: 10px;
  115. }
  116. #context-menu ul {
  117. list-style: none;
  118. margin: 0;
  119. padding: 0;
  120. }
  121. #context-menu li {
  122. padding: 5px;
  123. cursor: pointer;
  124. }
  125. #context-menu li:hover {
  126. background-color: #f0f0f0;
  127. }
  128. .alert-card-done {
  129. background-color: #eaeaea;
  130. }
  131. .alert-card-new .alert-bade-status {
  132. background-color: #9D2F35;
  133. color: white;
  134. }
  135. .trash-wrapper {
  136. position: absolute;
  137. right: 18px;
  138. top: 50%;
  139. transform: translateY(-50%);
  140. }
  141. .hidden-trash {
  142. display: none;
  143. }
  144. @media (max-width: 576px) {
  145. .alert-actions {
  146. flex-wrap: wrap;
  147. }
  148. .alert-actions > * {
  149. margin-bottom: 0.5rem;
  150. }
  151. }