peopleBody.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /* Scrollbar styles are now handled by settingBody.css for all admin pages */
  2. table {
  3. color: #000;
  4. min-width: 1200px !important;
  5. width: max-content !important;
  6. table-layout: auto !important;
  7. }
  8. /* Force People/Organizations/Teams tables to always trigger horizontal scrolling */
  9. table td,
  10. table th {
  11. white-space: nowrap;
  12. min-width: 120px;
  13. border: 1px solid #d2d0d0;
  14. text-align: left;
  15. padding: 8px;
  16. }
  17. table tr:nth-child(even) {
  18. background-color: #ddd;
  19. }
  20. .ext-box {
  21. display: flex;
  22. flex-direction: row;
  23. height: 34px;
  24. }
  25. .ext-box .ext-box-left {
  26. display: flex;
  27. width: 100%;
  28. gap: 10px;
  29. }
  30. .ext-box span {
  31. vertical-align: center;
  32. line-height: 34px;
  33. }
  34. .ext-box input,
  35. .ext-box button {
  36. padding: 0;
  37. }
  38. .ext-box button {
  39. min-width: 90px;
  40. }
  41. .content-wrapper {
  42. margin-top: 10px;
  43. }
  44. .buttonsContainer {
  45. display: flex;
  46. }
  47. .buttonsContainer input {
  48. margin: 0;
  49. }
  50. .buttonsContainer div {
  51. margin: auto;
  52. }
  53. .more-settings-user,
  54. .more-settings-team,
  55. .more-settings-org {
  56. margin-left: 10px;
  57. }
  58. .js-orgs,
  59. .js-orgsNewUser {
  60. display: none;
  61. }
  62. .js-teams,
  63. .js-teamsNewUser {
  64. display: none;
  65. }
  66. .selectUserChkBox,
  67. .allUserChkBox {
  68. position: static !important;
  69. visibility: visible !important;
  70. left: 0 !important;
  71. display: block !important;
  72. }
  73. /* Make checkbox column fit content */
  74. table th:first-child,
  75. table td:first-child {
  76. width: auto;
  77. min-width: auto;
  78. }
  79. #divAddOrRemoveTeam {
  80. background: #008000;
  81. display: none;
  82. }
  83. #addOrRemoveTeam {
  84. background: #008000;
  85. color: #fff;
  86. }
  87. #divAddOrRemoveTeamContainer {
  88. display: none;
  89. margin: auto;
  90. width: 50%;
  91. border: 3px solid #008000;
  92. padding: 10px;
  93. }
  94. #cancelBtn {
  95. margin-left: 5% !important;
  96. background: #ffa500;
  97. color: #fff;
  98. }
  99. #deleteAction {
  100. margin-left: 5% !important;
  101. }
  102. .divLockedUsersFilter {
  103. display: flex;
  104. align-items: center;
  105. margin: 0 15px;
  106. }
  107. .divLockedUsersFilter .flex-container {
  108. display: flex;
  109. align-items: center;
  110. gap: 8px;
  111. }
  112. .divLockedUsersFilter .people-filter {
  113. margin-bottom: 0;
  114. color: #777;
  115. line-height: 34px;
  116. }
  117. .divLockedUsersFilter .user-filter {
  118. border: 1px solid #ccc;
  119. border-radius: 2px;
  120. padding: 4px 8px;
  121. background-color: white;
  122. }
  123. .unlock-all-btn {
  124. margin-left: 15px;
  125. background-color: white;
  126. color: #4d4d4d;
  127. border: 1px solid rgba(0,0,0,.15);
  128. border-radius: 2px;
  129. padding: 0 10px;
  130. cursor: pointer;
  131. display: flex;
  132. align-items: center;
  133. gap: 5px;
  134. height: 28px;
  135. min-width: 90px;
  136. /* box-shadow: 0 1px 6px rgba(0,0,0,.3); */
  137. }
  138. .unlock-all-btn:hover {
  139. background-color: #f2f2f2;
  140. }
  141. .account-active-status {
  142. width: auto;
  143. text-align: center;
  144. }
  145. .js-toggle-active-status {
  146. cursor: pointer;
  147. }
  148. .unlock-all-success {
  149. position: fixed;
  150. top: 10%;
  151. left: 50%;
  152. transform: translateX(-50%);
  153. background-color: #27ae60;
  154. color: white;
  155. padding: 10px 20px;
  156. border-radius: 4px;
  157. z-index: 9999;
  158. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  159. animation: fadeOut 3s ease-in forwards;
  160. }
  161. @keyframes fadeOut {
  162. 0% { opacity: 1; }
  163. 70% { opacity: 1; }
  164. 100% { opacity: 0; }
  165. }
  166. .account-status {
  167. width: auto;
  168. text-align: center;
  169. }
  170. .text-green {
  171. color: #27ae60;
  172. }
  173. .js-toggle-lock-status {
  174. cursor: pointer;
  175. }
  176. .unlock-all-btn .fa {
  177. color: #4d4d4d;
  178. }