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.

237 lines
3.5 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. .edit-name, .edit-checks {
  36. padding: 12px 6px;
  37. border: 1px solid transparent;
  38. }
  39. .edit-name .channel-details-mini {
  40. font-size: 11.7px;
  41. color: #888;
  42. max-width: 500px;
  43. white-space: nowrap;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. }
  47. .channel-details-mini span {
  48. color: #111;
  49. }
  50. .rw .channel-row:hover .edit-name,
  51. .rw .channel-row:hover .edit-checks {
  52. border: 1px dotted #AAA;
  53. cursor: pointer;
  54. }
  55. .edit-checks {
  56. color: #333;
  57. }
  58. .edit-checks:hover {
  59. text-decoration: none;
  60. color: #000;
  61. }
  62. .channel-row .actions {
  63. text-align: right;
  64. }
  65. .channel-row .actions form {
  66. display: inline;
  67. }
  68. .channel-row .actions .btn {
  69. visibility: hidden;
  70. }
  71. .channel-row:hover .actions .btn {
  72. visibility: visible;
  73. }
  74. .ai-title {
  75. margin-top: 2em;
  76. }
  77. .add-integration {
  78. list-style: none;
  79. padding: 0;
  80. }
  81. .add-integration li {
  82. position: relative;
  83. padding: 8px 0;
  84. border-radius: 4px;
  85. }
  86. .add-integration li:hover {
  87. background: #eee;
  88. }
  89. .add-integration .icon {
  90. position: absolute;
  91. left: 16px;
  92. top: 50%;
  93. margin-top: -20px;
  94. width: 40px;
  95. height: 40px;
  96. }
  97. .add-integration h2 {
  98. font-size: 18px;
  99. margin-left: 72px;
  100. }
  101. .add-integration p {
  102. margin-left: 72px;
  103. }
  104. .add-integration a.btn {
  105. position: absolute;
  106. right: 16px;
  107. top: 50%;
  108. margin-top: -17px;
  109. width: 139px;
  110. height: 40px;
  111. padding: 0;
  112. line-height: 40px;
  113. }
  114. .btn img.ai-icon {
  115. height: 1.4em;
  116. margin-right: 2px;
  117. }
  118. .add-integration h2 {
  119. margin-top: 0;
  120. }
  121. .setup-guide h2, .integration-settings h2 {
  122. margin: 0 0 1em 0;
  123. }
  124. .ai-step {
  125. margin: 2em 0;
  126. counter-increment: ai-step;
  127. }
  128. .ai-step .step-no::after {
  129. content: counter(ai-step);
  130. }
  131. .ai-step .step-no {
  132. display: block;
  133. float: left;
  134. font-size: 24px;
  135. width: 48px;
  136. height: 48px;
  137. background: #7ec1ea;
  138. border-radius: 32px;
  139. text-align: center;
  140. line-height: 48px;
  141. margin-right: 32px;
  142. margin-bottom: 32px;
  143. color: #fff;
  144. font-weight: 300;
  145. }
  146. .ai-step .marker-wrap {
  147. position: relative;
  148. clear: both;
  149. }
  150. .ai-step .marker {
  151. width: 20px;
  152. height: 20px;
  153. margin-left: -10px;
  154. margin-top: -10px;
  155. background: #2abb66;
  156. position: absolute;
  157. border-radius: 10px;
  158. opacity: 0;
  159. animation: marker-ripple 1.2s ease-out infinite;
  160. }
  161. .ai-step p {
  162. margin-left: 80px;
  163. }
  164. @keyframes marker-ripple {
  165. 0%, 35% {
  166. transform: scale(0);
  167. opacity: 0.5;
  168. }
  169. 50% {
  170. transform: scale(1.5);
  171. opacity: 0.3;
  172. }
  173. 100% {
  174. opacity: 0;
  175. transform: scale(4);
  176. }
  177. }
  178. .ai-guide-screenshot {
  179. max-width: 100%;
  180. border: 6px solid #EEE;
  181. }
  182. .add-integration li.link-to-github {
  183. padding: 16px 0;
  184. }
  185. .link-to-github p {
  186. margin-bottom: 0;
  187. }
  188. .page-channels .icon-delete {
  189. font-size: 16px;
  190. }
  191. .channel-modal .modal-body {
  192. padding: 15px 40px;
  193. }