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.

112 lines
1.6 KiB

  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. }
  31. #checks-table > tbody > tr > th.th-period {
  32. padding-left: 15px;
  33. }
  34. #checks-table .timeout-grace {
  35. border: 1px solid rgba(0, 0, 0, 0);
  36. padding: 6px;
  37. display: block;
  38. }
  39. #checks-table tr:hover .timeout-grace {
  40. border: 1px dotted #AAA;
  41. }
  42. .checks-subline {
  43. color: #888;
  44. white-space: nowrap;
  45. }
  46. .check-menu {
  47. visibility: hidden;
  48. }
  49. button.copy-link {
  50. opacity: 0;
  51. display: inline-block;
  52. width: 50px;
  53. background: none!important;
  54. border: none;
  55. padding: 0!important;
  56. text-align: left;
  57. font-family: "Open Sans", Arial, sans-serif;
  58. color: #0091ea;
  59. cursor :pointer;
  60. transition: opacity 0.1s linear;
  61. }
  62. button.copy-link:hover {
  63. text-decoration: underline;
  64. }
  65. tr:hover .check-menu {
  66. visibility: visible;
  67. }
  68. tr:hover .copy-link {
  69. opacity: 1
  70. }
  71. #checks-table .url-cell {
  72. white-space: nowrap;
  73. }
  74. .url-cell .base {
  75. color: #888;
  76. }
  77. .my-checks-url {
  78. font-family: "Lucida Console", Monaco, monospace;
  79. font-size: 11.7px;
  80. position: relative;
  81. line-height: 36px;
  82. color: #333;
  83. }