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.

139 lines
2.1 KiB

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