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.

120 lines
1.7 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. }
  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. .check-menu .icon-settings {
  50. font-size: 16px;
  51. }
  52. .dropdown-menu > li > a.check-menu-remove {
  53. color: #B71C1C;
  54. }
  55. button.copy-link {
  56. opacity: 0;
  57. display: inline-block;
  58. width: 50px;
  59. background: none!important;
  60. border: none;
  61. padding: 0!important;
  62. text-align: left;
  63. font-family: "Open Sans", Arial, sans-serif;
  64. color: #0091ea;
  65. cursor :pointer;
  66. transition: opacity 0.1s linear;
  67. }
  68. button.copy-link:hover {
  69. text-decoration: underline;
  70. }
  71. tr:hover .check-menu {
  72. visibility: visible;
  73. }
  74. tr:hover .copy-link {
  75. opacity: 1
  76. }
  77. #checks-table .url-cell {
  78. white-space: nowrap;
  79. }
  80. .url-cell .base {
  81. color: #888;
  82. }
  83. .my-checks-url {
  84. font-family: "Lucida Console", Monaco, monospace;
  85. font-size: 11.7px;
  86. position: relative;
  87. line-height: 36px;
  88. color: #333;
  89. }