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.

161 lines
2.7 KiB

7 years ago
  1. #checks-table {
  2. margin-top: 36px;
  3. }
  4. #checks-table .checks-row:hover {
  5. background-color: #f5f5f5;
  6. }
  7. .my-checks-name.unnamed {
  8. color: #999;
  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: #333;
  19. }
  20. #checks-table tr:hover a.default {
  21. color: #0091EA;
  22. }
  23. #checks-table td {
  24. vertical-align: middle;
  25. border-top: 1px solid #f1f1f1;
  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 tr:hover .my-checks-name,
  35. #checks-table tr:hover .integrations,
  36. #checks-table 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 span {
  48. padding: 10px 2px;
  49. display: inline-block;
  50. font-size: 20px;
  51. width: 24px;
  52. }
  53. #checks-table .integrations span.off:before {
  54. color: #DDD;
  55. }
  56. .timeout-grace .cron-expression {
  57. text-overflow: ellipsis;
  58. white-space: nowrap;
  59. overflow: hidden;
  60. max-width: 120px;
  61. }
  62. .checks-subline {
  63. color: #888;
  64. white-space: nowrap;
  65. }
  66. button.copy-link {
  67. opacity: 0;
  68. display: inline-block;
  69. width: 50px;
  70. background: none!important;
  71. border: none;
  72. padding: 0!important;
  73. text-align: left;
  74. font-family: "Open Sans", Arial, sans-serif;
  75. color: #0091ea;
  76. cursor :pointer;
  77. transition: opacity 0.1s linear;
  78. }
  79. button.copy-link:hover {
  80. text-decoration: underline;
  81. }
  82. tr:hover .copy-link {
  83. opacity: 1
  84. }
  85. #checks-table .url-cell,
  86. #checks-table .integrations-cell,
  87. #checks-table .timeout-cell {
  88. white-space: nowrap;
  89. }
  90. .url-cell .base {
  91. color: #888;
  92. }
  93. .my-checks-url {
  94. font-family: "Lucida Console", Monaco, monospace;
  95. font-size: 11.7px;
  96. position: relative;
  97. line-height: 36px;
  98. color: #333;
  99. }
  100. .checks-subline-duration {
  101. color: #888;
  102. white-space: nowrap;
  103. }
  104. #checks-table .actions {
  105. white-space: nowrap;
  106. }
  107. #checks-table .btn {
  108. border-color: transparent;
  109. font-size: 20px;
  110. color: #999;
  111. }
  112. #checks-table tr:hover .btn {
  113. color: #666;
  114. background: transparent;
  115. opacity: 1;
  116. }
  117. #checks-table tr:hover .btn:hover {
  118. background: #DDD;
  119. color: #000;
  120. }
  121. #checks-table .pause {
  122. opacity: 0;
  123. }
  124. #checks-table tr:hover .pause.confirm:hover {
  125. background: #0091ea;
  126. color: #FFF;
  127. outline: none;
  128. }