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.

160 lines
2.6 KiB

7 years ago
8 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 #FFF;
  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. .show-log .icon-settings {
  67. font-size: 16px;
  68. }
  69. button.copy-link {
  70. opacity: 0;
  71. display: inline-block;
  72. width: 50px;
  73. background: none!important;
  74. border: none;
  75. padding: 0!important;
  76. text-align: left;
  77. font-family: "Open Sans", Arial, sans-serif;
  78. color: #0091ea;
  79. cursor :pointer;
  80. transition: opacity 0.1s linear;
  81. }
  82. button.copy-link:hover {
  83. text-decoration: underline;
  84. }
  85. tr:hover .copy-link {
  86. opacity: 1
  87. }
  88. #checks-table .url-cell,
  89. #checks-table .integrations-cell,
  90. #checks-table .timeout-cell {
  91. white-space: nowrap;
  92. }
  93. .url-cell .base {
  94. color: #888;
  95. }
  96. .my-checks-url {
  97. font-family: "Lucida Console", Monaco, monospace;
  98. font-size: 11.7px;
  99. position: relative;
  100. line-height: 36px;
  101. color: #333;
  102. }
  103. .checks-subline-duration {
  104. color: #888;
  105. white-space: nowrap;
  106. }
  107. #checks-table .actions {
  108. white-space: nowrap;
  109. }
  110. #checks-table .btn {
  111. border-color: transparent;
  112. font-size: 20px;
  113. color: #999;
  114. }
  115. #checks-table tr:hover .btn {
  116. color: #666;
  117. background: transparent;
  118. opacity: 1;
  119. }
  120. #checks-table tr:hover .btn:hover {
  121. background: #DDD;
  122. color: #000;
  123. }
  124. #checks-table .pause {
  125. opacity: 0;
  126. }