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.

158 lines
2.4 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. table.table tr > th.th-name {
  12. padding-left: 21px;
  13. }
  14. #checks-table .indicator-cell {
  15. text-align: center;
  16. }
  17. #checks-table th {
  18. border-top: 0;
  19. }
  20. #checks-table th {
  21. border-top: 0;
  22. }
  23. #checks-table a.default {
  24. color: #333;
  25. }
  26. #checks-table tr:hover a.default {
  27. color: #0091EA;
  28. }
  29. #checks-table td {
  30. vertical-align: middle;
  31. border-top: 1px solid #f1f1f1;
  32. }
  33. #checks-table .my-checks-name {
  34. border: 1px solid rgba(0, 0, 0, 0);
  35. padding: 6px;
  36. display: block;
  37. }
  38. #checks-table tr:hover .my-checks-name {
  39. border: 1px dotted #AAA;
  40. cursor: pointer;
  41. }
  42. #checks-table > tbody > tr > th.th-period,
  43. #checks-table > tbody > tr > th.th-last-ping {
  44. padding-left: 15px;
  45. }
  46. #checks-table .timeout-grace {
  47. border: 1px solid rgba(0, 0, 0, 0);
  48. padding: 6px;
  49. display: block;
  50. }
  51. .timeout-grace .cron-expression {
  52. display: inline-block;
  53. text-overflow: ellipsis;
  54. white-space: nowrap;
  55. overflow: hidden;
  56. max-width: 120px;
  57. }
  58. #checks-table tr:hover .timeout-grace {
  59. border: 1px dotted #AAA;
  60. cursor: pointer;
  61. }
  62. #checks-table .last-ping {
  63. border: 1px solid rgba(0, 0, 0, 0);
  64. padding: 6px;
  65. }
  66. #checks-table .last-ping-never {
  67. padding: 7px;
  68. }
  69. #checks-table tr:hover .last-ping {
  70. border: 1px dotted #AAA;
  71. cursor: pointer;
  72. }
  73. .checks-subline {
  74. color: #888;
  75. white-space: nowrap;
  76. }
  77. .check-menu {
  78. visibility: hidden;
  79. }
  80. .check-menu .icon-settings {
  81. font-size: 16px;
  82. }
  83. .dropdown-menu > li > a.check-menu-remove {
  84. color: #B71C1C;
  85. }
  86. button.copy-link {
  87. opacity: 0;
  88. display: inline-block;
  89. width: 50px;
  90. background: none!important;
  91. border: none;
  92. padding: 0!important;
  93. text-align: left;
  94. font-family: "Open Sans", Arial, sans-serif;
  95. color: #0091ea;
  96. cursor :pointer;
  97. transition: opacity 0.1s linear;
  98. }
  99. button.copy-link:hover {
  100. text-decoration: underline;
  101. }
  102. tr:hover .check-menu {
  103. visibility: visible;
  104. }
  105. tr:hover .copy-link {
  106. opacity: 1
  107. }
  108. #checks-table .url-cell {
  109. white-space: nowrap;
  110. }
  111. .url-cell .base {
  112. color: #888;
  113. }
  114. .my-checks-url {
  115. font-family: "Lucida Console", Monaco, monospace;
  116. font-size: 11.7px;
  117. position: relative;
  118. line-height: 36px;
  119. color: #333;
  120. }