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.

138 lines
2.3 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 rgba(0, 0, 0, 0);
  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. display: inline-block;
  58. text-overflow: ellipsis;
  59. white-space: nowrap;
  60. overflow: hidden;
  61. max-width: 120px;
  62. }
  63. .checks-subline {
  64. color: #888;
  65. white-space: nowrap;
  66. }
  67. .show-log {
  68. visibility: hidden;
  69. }
  70. .show-log .icon-settings {
  71. font-size: 16px;
  72. }
  73. tr:hover .show-log {
  74. visibility: visible;
  75. }
  76. button.copy-link {
  77. opacity: 0;
  78. display: inline-block;
  79. width: 50px;
  80. background: none!important;
  81. border: none;
  82. padding: 0!important;
  83. text-align: left;
  84. font-family: "Open Sans", Arial, sans-serif;
  85. color: #0091ea;
  86. cursor :pointer;
  87. transition: opacity 0.1s linear;
  88. }
  89. button.copy-link:hover {
  90. text-decoration: underline;
  91. }
  92. tr:hover .copy-link {
  93. opacity: 1
  94. }
  95. #checks-table .url-cell,
  96. #checks-table .integrations-cell,
  97. #checks-table .timeout-cell {
  98. white-space: nowrap;
  99. }
  100. .url-cell .base {
  101. color: #888;
  102. }
  103. .my-checks-url {
  104. font-family: "Lucida Console", Monaco, monospace;
  105. font-size: 11.7px;
  106. position: relative;
  107. line-height: 36px;
  108. color: #333;
  109. }