group-settings.less 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. h2.group-settings-title {
  2. margin-bottom: 5px;
  3. font-size: @font-size-large;
  4. }
  5. h3.group-settings-title {
  6. margin-bottom: 0;
  7. font-size: @font-size-base;
  8. }
  9. h2.group-settings-title,
  10. h3.group-settings-title {
  11. font-family: Lato, sans-serif;
  12. line-height: 28px;
  13. font-weight: bold;
  14. overflow: hidden;
  15. text-overflow: ellipsis;
  16. margin-top: 0;
  17. }
  18. .enrollment-invite {
  19. color: @neutral-90;
  20. .inner-card {
  21. background-color: @gray-lightest;
  22. margin: 16px 0;
  23. padding: 16px;
  24. &.warning {
  25. background-color: @yellow-10;
  26. }
  27. .list-row {
  28. display: flex;
  29. flex-direction: row;
  30. .icon {
  31. display: flex;
  32. flex: 0 0 32px;
  33. > span {
  34. font-size: 16px;
  35. }
  36. padding-right: 12px;
  37. font-size: 24px;
  38. &.error {
  39. color: @yellow-50;
  40. margin-top: 2px;
  41. }
  42. }
  43. }
  44. a {
  45. text-decoration: underline;
  46. }
  47. }
  48. .title {
  49. font-family: Lato, sans-serif;
  50. font-size: @font-size-large;
  51. line-height: 28px;
  52. font-weight: bold;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. }
  56. .subtitle {
  57. font-family: Lato, sans-serif;
  58. font-size: @font-size-base;
  59. line-height: 24px;
  60. font-weight: bold;
  61. overflow: hidden;
  62. text-overflow: ellipsis;
  63. }
  64. .label {
  65. color: @gray-dark;
  66. font-size: @font-size-small;
  67. padding-left: 0;
  68. }
  69. .btn {
  70. width: 100%;
  71. margin: 8px 0;
  72. }
  73. }
  74. .managed-users-enabled {
  75. font-family: Lato, sans-serif;
  76. color: @ol-green;
  77. .icon {
  78. vertical-align: text-bottom;
  79. }
  80. }
  81. .group-settings-sso {
  82. .group-settings-sso-row {
  83. margin-top: @margin-md;
  84. display: flex;
  85. align-items: center;
  86. justify-content: space-between;
  87. }
  88. }
  89. .below-managed-users {
  90. border-top: 1px solid @gray-lighter;
  91. padding-top: 25px;
  92. margin-top: 25px;
  93. }
  94. .sso-config-info {
  95. padding: 12px 0;
  96. .sso-config-info-header {
  97. display: flex;
  98. justify-content: space-between;
  99. gap: @margin-xs;
  100. padding: 0 @padding-base-horizontal 15px @padding-base-horizontal;
  101. border-bottom: 1px solid @neutral-20;
  102. margin-bottom: 15px;
  103. flex-wrap: wrap;
  104. .status-label {
  105. font-size: @font-size-small;
  106. border-radius: 4px;
  107. padding: 2px 4px;
  108. margin-top: 4px;
  109. flex-shrink: 0;
  110. &.status-label-valid {
  111. background-color: @ol-green;
  112. color: @neutral-10;
  113. }
  114. &.status-label-draft {
  115. background-color: @neutral-20;
  116. color: @neutral-90;
  117. }
  118. }
  119. }
  120. .sso-config-info-section {
  121. margin-bottom: @margin-md;
  122. padding: 0 @padding-base-horizontal;
  123. }
  124. .sso-config-info-label {
  125. font-size: @font-size-small;
  126. font-weight: bold;
  127. }
  128. .sso-config-info-content {
  129. color: @gray-darker;
  130. word-break: break-word;
  131. }
  132. p {
  133. margin-bottom: @margin-xs;
  134. }
  135. }
  136. .sso-config-modal-content {
  137. .sso-config-interstitial-title,
  138. .sso-config-test-result-title {
  139. font-family: Lato, sans-serif;
  140. font-size: 20px;
  141. font-weight: bold;
  142. text-align: center;
  143. }
  144. .sso-config-modal-icon-wrapper {
  145. text-align: center;
  146. margin-top: 8px;
  147. .sso-config-interstitial-icon,
  148. .sso-config-test-result-icon,
  149. .sso-config-test-error-icon {
  150. font-size: 32px;
  151. width: 80px;
  152. height: 80px;
  153. padding: 24px;
  154. border-radius: 999px;
  155. gap: 8px;
  156. }
  157. .sso-config-interstitial-icon {
  158. background-color: @neutral-10;
  159. }
  160. .sso-config-test-result-icon {
  161. background-color: @green-10;
  162. color: @ol-green;
  163. }
  164. .sso-config-test-error-icon {
  165. background-color: @red-10;
  166. color: @red-50;
  167. }
  168. }
  169. .sso-config-test-result-title {
  170. font-family: Lato, sans-serif;
  171. font-size: 20px;
  172. font-weight: bold;
  173. text-align: center;
  174. }
  175. .has-feedback {
  176. .form-control {
  177. padding-right: 0;
  178. }
  179. }
  180. }
  181. .certificate-wrapper {
  182. display: flex;
  183. &.certificate-full {
  184. flex-wrap: wrap;
  185. }
  186. .view-more {
  187. flex-grow: 1;
  188. flex-shrink: 0;
  189. }
  190. }
  191. .certificate {
  192. font-family: Courier, monospace;
  193. .certificate-truncated & {
  194. text-overflow: ellipsis;
  195. overflow: hidden;
  196. white-space: nowrap;
  197. display: inline-block;
  198. flex-grow: 4;
  199. }
  200. .certificate-full & {
  201. word-break: break-all;
  202. .break {
  203. flex-basis: 100%;
  204. height: 0;
  205. }
  206. }
  207. }
  208. .certificate-form-row {
  209. display: flex;
  210. .certificate-input {
  211. flex-grow: 11;
  212. }
  213. .certificate-delete {
  214. flex-grow: 1;
  215. flex-shrink: 0;
  216. }
  217. }