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.

152 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. 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, #checks-table > tbody > tr > th.th-last-ping {
  43. padding-left: 15px;
  44. }
  45. #checks-table .timeout-grace {
  46. border: 1px solid rgba(0, 0, 0, 0);
  47. padding: 6px;
  48. display: block;
  49. }
  50. .timeout-grace .cron-expression {
  51. display: inline-block;
  52. text-overflow: ellipsis;
  53. white-space: nowrap;
  54. overflow: hidden;
  55. max-width: 120px;
  56. }
  57. #checks-table tr:hover .timeout-grace {
  58. border: 1px dotted #AAA;
  59. cursor: pointer;
  60. }
  61. #checks-table .last-ping {
  62. border: 1px solid rgba(0, 0, 0, 0);
  63. padding: 6px;
  64. }
  65. #checks-table tr:hover .last-ping {
  66. border: 1px dotted #AAA;
  67. cursor: pointer;
  68. }
  69. .checks-subline {
  70. color: #888;
  71. white-space: nowrap;
  72. }
  73. .check-menu {
  74. visibility: hidden;
  75. }
  76. .check-menu .icon-settings {
  77. font-size: 16px;
  78. }
  79. .dropdown-menu > li > a.check-menu-remove {
  80. color: #B71C1C;
  81. }
  82. button.copy-link {
  83. opacity: 0;
  84. display: inline-block;
  85. width: 50px;
  86. background: none!important;
  87. border: none;
  88. padding: 0!important;
  89. text-align: left;
  90. font-family: "Open Sans", Arial, sans-serif;
  91. color: #0091ea;
  92. cursor :pointer;
  93. transition: opacity 0.1s linear;
  94. }
  95. button.copy-link:hover {
  96. text-decoration: underline;
  97. }
  98. tr:hover .check-menu {
  99. visibility: visible;
  100. }
  101. tr:hover .copy-link {
  102. opacity: 1
  103. }
  104. #checks-table .url-cell {
  105. white-space: nowrap;
  106. }
  107. .url-cell .base {
  108. color: #888;
  109. }
  110. .my-checks-url {
  111. font-family: "Lucida Console", Monaco, monospace;
  112. font-size: 11.7px;
  113. position: relative;
  114. line-height: 36px;
  115. color: #333;
  116. }