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.

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