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.

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