You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
3.0 KiB

  1. #checks-table {
  2. margin-top: 36px;
  3. }
  4. #checks-table .checks-row:hover {
  5. background-color: var(--table-bg-hover);
  6. }
  7. .my-checks-name.unnamed, .url span.unavailable {
  8. color: var(--text-muted);
  9. font-style: italic;
  10. }
  11. #checks-table .indicator-cell {
  12. text-align: center;
  13. }
  14. #checks-table th {
  15. border-top: 0;
  16. }
  17. #checks-table a.default {
  18. color: var(--text-color);
  19. }
  20. #checks-table tr:hover a.default {
  21. color: var(--link-color);
  22. }
  23. #checks-table td {
  24. vertical-align: middle;
  25. border-top: 1px solid var(--border-muted);
  26. }
  27. #checks-table .my-checks-name,
  28. #checks-table .integrations,
  29. #checks-table .timeout-grace,
  30. #checks-table .last-ping {
  31. border: 1px solid transparent;
  32. padding: 6px;
  33. }
  34. #checks-table.rw tr:hover .my-checks-name,
  35. #checks-table.rw tr:hover .integrations,
  36. #checks-table.rw tr:hover .timeout-grace,
  37. #checks-table tr:hover .last-ping {
  38. border: 1px dotted #AAA;
  39. cursor: pointer;
  40. }
  41. #checks-table > tbody > tr > th.th-name,
  42. #checks-table > tbody > tr > th.th-integrations,
  43. #checks-table > tbody > tr > th.th-period,
  44. #checks-table > tbody > tr > th.th-last-ping {
  45. padding-left: 15px;
  46. }
  47. #checks-table .integrations {
  48. white-space: nowrap;
  49. }
  50. #checks-table .integrations span {
  51. padding: 10px 2px;
  52. display: inline-block;
  53. font-size: 20px;
  54. width: 24px;
  55. }
  56. #checks-table .integrations span.off:before {
  57. color: var(--channel-off-inside-color);
  58. }
  59. #checks-table .integrations span.off:after {
  60. color: var(--channel-off-color);
  61. }
  62. .timeout-grace .cron-expression {
  63. text-overflow: ellipsis;
  64. white-space: nowrap;
  65. overflow: hidden;
  66. max-width: 120px;
  67. }
  68. .checks-subline {
  69. color: var(--text-muted);
  70. white-space: nowrap;
  71. }
  72. button.copy-link {
  73. opacity: 0;
  74. display: inline-block;
  75. width: 50px;
  76. background: none!important;
  77. border: none;
  78. padding: 0!important;
  79. text-align: left;
  80. font-family: "Open Sans", Arial, sans-serif;
  81. color: var(--link-color);
  82. cursor :pointer;
  83. transition: opacity 0.1s linear;
  84. }
  85. button.copy-link:hover {
  86. text-decoration: underline;
  87. }
  88. tr:hover .copy-link {
  89. opacity: 1
  90. }
  91. .my-checks-url {
  92. font-family: "Lucida Console", Monaco, monospace;
  93. font-size: 11.7px;
  94. position: relative;
  95. line-height: 36px;
  96. }
  97. .my-checks-url .base {
  98. color: var(--text-muted);
  99. }
  100. .checks-subline-duration {
  101. color: var(--text-muted);
  102. white-space: nowrap;
  103. }
  104. #checks-table td.url,
  105. #checks-table .actions {
  106. white-space: nowrap;
  107. }
  108. #checks-table td .btn {
  109. border-color: transparent;
  110. background-color: transparent;
  111. font-size: 20px;
  112. color: #999;
  113. }
  114. #checks-table tr:hover .btn {
  115. color: #666;
  116. background: transparent;
  117. opacity: 1;
  118. }
  119. #checks-table tr:hover .btn:hover {
  120. background: var(--btn-active-bg);
  121. color: var(--btn-default-color);
  122. }
  123. #checks-table .pause {
  124. opacity: 0;
  125. }
  126. #checks-table tr:hover .pause.confirm:hover {
  127. background: #0091ea;
  128. color: #FFF;
  129. outline: none;
  130. }
  131. #url-style-switcher a {
  132. color: var(--text-muted);
  133. }
  134. #url-style-switcher a.active {
  135. text-decoration: underline;
  136. }