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.

273 lines
4.0 KiB

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