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.

249 lines
3.5 KiB

7 years ago
8 years ago
8 years ago
  1. .channels-table {
  2. margin-top: 36px;
  3. }
  4. .channels-table .channel-row > td {
  5. padding-top: 10px;
  6. padding-bottom: 10px;
  7. vertical-align: middle;
  8. border-top: 1px solid #f1f1f1;
  9. }
  10. .channels-table .icon-cell {
  11. width: 40px;
  12. }
  13. .channels-table .icon-cell img {
  14. margin-left: 16px;
  15. height: 40px;
  16. }
  17. .channels-table .th-name,
  18. .channels-table .th-checks {
  19. padding-left: 15px;
  20. }
  21. .channels-table .unnamed {
  22. font-style: italic;
  23. color: #999;
  24. }
  25. .channels-table .value-cell {
  26. max-width: 400px;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. white-space: nowrap;
  30. }
  31. .channels-table .channel-row:hover > td {
  32. background: #f5f5f5;
  33. }
  34. table.channels-table > tbody > tr > th {
  35. border-top: 0;
  36. }
  37. .word-up {
  38. color: #5cb85c;
  39. font-weight: bold
  40. }
  41. .word-down {
  42. color: #d9534f;
  43. font-weight: bold
  44. }
  45. .preposition, .description {
  46. color: #888;
  47. }
  48. .channel-unconfirmed {
  49. font-size: small;
  50. }
  51. .channel-disabled {
  52. font-size: small;
  53. }
  54. .edit-name, .edit-checks {
  55. padding: 12px 6px;
  56. border: 1px solid #FFF;
  57. cursor: pointer;
  58. }
  59. .edit-name .channel-details-mini {
  60. font-size: 11.7px;
  61. color: #888;
  62. max-width: 500px;
  63. white-space: nowrap;
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. }
  67. .channel-details-mini span {
  68. color: #111;
  69. }
  70. .channel-row:hover .edit-name,
  71. .channel-row:hover .edit-checks {
  72. border: 1px dotted #AAA;
  73. }
  74. .edit-checks {
  75. color: #333;
  76. }
  77. .edit-checks:hover {
  78. text-decoration: none;
  79. color: #000;
  80. }
  81. .channel-remove {
  82. visibility: hidden;
  83. }
  84. .channel-row:hover .channel-remove {
  85. visibility: visible;
  86. }
  87. .webhook-details td {
  88. max-width: 300px;
  89. }
  90. .ai-title {
  91. margin-top: 2em;
  92. }
  93. .add-integration {
  94. list-style: none;
  95. padding: 0;
  96. }
  97. .add-integration li {
  98. position: relative;
  99. padding: 8px 0;
  100. border-radius: 4px;
  101. }
  102. .add-integration li:hover {
  103. background: #eee;
  104. }
  105. .add-integration .icon {
  106. position: absolute;
  107. left: 16px;
  108. top: 50%;
  109. margin-top: -20px;
  110. width: 40px;
  111. height: 40px;
  112. }
  113. .add-integration h2 {
  114. font-size: 18px;
  115. margin-left: 72px;
  116. }
  117. .add-integration p {
  118. margin-left: 72px;
  119. }
  120. .add-integration a.btn {
  121. position: absolute;
  122. right: 16px;
  123. top: 50%;
  124. margin-top: -17px;
  125. width: 139px;
  126. height: 40px;
  127. padding: 0;
  128. line-height: 40px;
  129. }
  130. .btn img.ai-icon {
  131. height: 1.4em;
  132. margin-right: 2px;
  133. }
  134. .add-integration h2 {
  135. margin-top: 0;
  136. }
  137. .setup-guide h2, .integration-settings h2 {
  138. margin: 0 0 1em 0;
  139. }
  140. .ai-step {
  141. margin: 2em 0;
  142. }
  143. .ai-step .step-no {
  144. display: block;
  145. float: left;
  146. font-size: 24px;
  147. width: 48px;
  148. heigth: 48px;
  149. background: #7ec1ea;
  150. border-radius: 32px;
  151. text-align: center;
  152. line-height: 48px;
  153. margin-right: 32px;
  154. margin-bottom: 32px;
  155. color: #fff;
  156. font-weight: 300;
  157. }
  158. .ai-guide-screenshot {
  159. max-width: 100%;
  160. border: 6px solid #EEE;
  161. }
  162. .variable-column {
  163. width: 160px;
  164. }
  165. .add-integration li.link-to-github {
  166. padding: 16px 0;
  167. }
  168. .link-to-github p {
  169. margin-bottom: 0;
  170. }
  171. .page-channels .icon-delete {
  172. font-size: 16px;
  173. }
  174. .channel-details table {
  175. width: 100%;
  176. }
  177. .channel-details td, .channel-details th {
  178. padding: 15px;
  179. border-bottom: 1px solid #eee;
  180. }
  181. .channel-details tr:last-child td, .channel-details tr:last-child th {
  182. border-bottom: 0;
  183. }
  184. .channel-details .missing {
  185. color: #999;
  186. font-style: italic;
  187. }
  188. .channel-modal .modal-body {
  189. padding: 15px 40px;
  190. }
  191. /* Add Webhook */
  192. .webhook-header input.form-control {
  193. width: 300px;
  194. }
  195. .webhook-header {
  196. margin-bottom: 4px;
  197. }