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.

215 lines
3.4 KiB

9 years ago
8 years ago
8 years ago
  1. #my-checks-tags div {
  2. margin-bottom: 4px;
  3. }
  4. #my-checks-tags .up {
  5. color: var(--tag-up-color);
  6. background-color: var(--tag-up-bg);
  7. border-color: var(--tag-up-border);
  8. }
  9. #my-checks-tags .grace {
  10. color: #fff;
  11. background-color: #f0ad4e;
  12. border-color: #eea236;
  13. }
  14. #my-checks-tags .down {
  15. color: #fff;
  16. background-color: #d9534f;
  17. border-color: #d43f3a;
  18. }
  19. #my-checks-tags .checked {
  20. box-shadow: 0 0 3px var(--tag-checked-shadow);
  21. background: var(--tag-checked-bg);
  22. color: var(--tag-checked-color);
  23. border-color: var(--tag-checked-border);
  24. }
  25. #search {
  26. padding-left: 15px;
  27. border-radius: 16px;
  28. }
  29. @media (min-width: 992px) {
  30. #update-timeout-modal .modal-dialog, #ping-details-modal .modal-dialog {
  31. width: 800px;
  32. }
  33. #update-name-modal .modal-dialog {
  34. width: 650px;
  35. }
  36. }
  37. #update-timeout-form .modal-body {
  38. padding-top: 35px;
  39. }
  40. .update-timeout-info {
  41. line-height: 22px;
  42. }
  43. .update-timeout-label {
  44. position: relative;
  45. right: 3px;
  46. display: inline-block;
  47. text-align: right;
  48. width: 100px;
  49. }
  50. .update-timeout-value {
  51. font-size: 22px;
  52. display: inline-block;
  53. width: 100px;
  54. text-align: left;
  55. white-space: nowrap;
  56. }
  57. .kind-simple, .kind-cron {
  58. width: 70px;
  59. }
  60. #update-cron-form .modal-body {
  61. padding: 40px;
  62. }
  63. #update-cron-form label {
  64. font-weight: normal;
  65. }
  66. #schedule-hint {
  67. margin-left: 8px;
  68. font-size: small;
  69. }
  70. #tz {
  71. width: 300px;
  72. }
  73. #cron-description {
  74. text-align: center;
  75. font-weight: bold;
  76. font-style: italic;
  77. font-size: 18px;
  78. color: var(--text-color);
  79. padding: 16px 8px 0px 8px;
  80. }
  81. #cron-preview {
  82. background: var(--pre-bg);
  83. min-height: 298px;
  84. }
  85. #cron-preview p {
  86. padding: 8px;
  87. font-size: small;
  88. }
  89. #cron-preview th {
  90. border-top: 0;
  91. font-weight: normal;
  92. font-size: small;
  93. }
  94. #cron-preview-table {
  95. margin: 0;
  96. }
  97. #cron-preview-table tr td:nth-child(1) {
  98. width: 120px;
  99. }
  100. #cron-preview-table tr td:nth-child(2) {
  101. font-size: small;
  102. }
  103. #cron-preview-table tr td:nth-child(3) {
  104. font-size: small;
  105. font-family: monospace;
  106. text-align: right;
  107. color: var(--text-muted);
  108. }
  109. #period-slider {
  110. margin: 20px 50px 80px 50px;
  111. }
  112. #period-slider.noUi-connect {
  113. background: #22bc66;
  114. }
  115. #grace-slider {
  116. margin: 20px 50px 110px 50px;
  117. }
  118. #grace-slider.noUi-connect {
  119. background: #f0ad4e;
  120. }
  121. #period-slider .noUi-value, #grace-slider .noUi-value {
  122. width: 60px;
  123. margin-left: -30px;
  124. }
  125. .update-timeout-terms {
  126. color: var(--text-muted);
  127. }
  128. .update-timeout-terms p {
  129. margin: 0;
  130. }
  131. .update-timeout-terms span {
  132. font-weight: bold;
  133. }
  134. .label-tag {
  135. background-color: var(--tag-bg);
  136. color: var(--tag-color);
  137. font-style: normal;
  138. font-weight: 500;
  139. }
  140. .label-confirmation {
  141. background-color: #22bc66;
  142. color: #fff;
  143. font-style: normal;
  144. font-weight: 500;
  145. }
  146. #show-usage-modal .modal-dialog {
  147. width: 1100px;
  148. }
  149. #usage-examples-title {
  150. margin-bottom: 25px;
  151. }
  152. #show-usage-modal .modal-body {
  153. padding: 0;
  154. }
  155. #show-usage-modal pre {
  156. margin: 0;
  157. padding: 15px;
  158. }
  159. #show-usage-modal .highlight:nth-child(n+2) {
  160. border-top: 1px solid var(--border-color);
  161. }
  162. .add-check-note {
  163. color: var(--text-muted);
  164. text-align: center;
  165. margin-top: 10px;
  166. font-size: 12px;
  167. }
  168. #update-name-modal .modal-body {
  169. padding: 15px 40px;
  170. }
  171. #my-checks-bottom-actions {
  172. margin-bottom: 20px;
  173. }