peopleBody.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .main-body {
  2. overflow: scroll;
  3. }
  4. table {
  5. color: #000;
  6. }
  7. table td,
  8. table th {
  9. border: 1px solid #d2d0d0;
  10. text-align: left;
  11. padding: 8px;
  12. }
  13. table tr:nth-child(even) {
  14. background-color: #ddd;
  15. }
  16. .ext-box {
  17. display: flex;
  18. flex-direction: row;
  19. height: 34px;
  20. }
  21. .ext-box .ext-box-left {
  22. display: flex;
  23. width: 100%;
  24. gap: 10px;
  25. }
  26. .ext-box span {
  27. vertical-align: center;
  28. line-height: 34px;
  29. }
  30. .ext-box input,
  31. .ext-box button {
  32. padding: 0;
  33. }
  34. .ext-box button {
  35. min-width: 90px;
  36. }
  37. .content-wrapper {
  38. margin-top: 10px;
  39. }
  40. .buttonsContainer {
  41. display: flex;
  42. }
  43. .buttonsContainer input {
  44. margin: 0;
  45. }
  46. .buttonsContainer div {
  47. margin: auto;
  48. }
  49. .more-settings-user,
  50. .more-settings-team,
  51. .more-settings-org {
  52. margin-left: 10px;
  53. }
  54. .js-orgs,
  55. .js-orgsNewUser {
  56. display: none;
  57. }
  58. .js-teams,
  59. .js-teamsNewUser {
  60. display: none;
  61. }
  62. .selectUserChkBox,
  63. .allUserChkBox {
  64. position: static !important;
  65. visibility: visible !important;
  66. left: 0 !important;
  67. display: block !important;
  68. }
  69. #divAddOrRemoveTeam {
  70. background: #008000;
  71. display: none;
  72. }
  73. #addOrRemoveTeam {
  74. background: #008000;
  75. color: #fff;
  76. }
  77. #divAddOrRemoveTeamContainer {
  78. display: none;
  79. margin: auto;
  80. width: 50%;
  81. border: 3px solid #008000;
  82. padding: 10px;
  83. }
  84. #cancelBtn {
  85. margin-left: 5% !important;
  86. background: #ffa500;
  87. color: #fff;
  88. }
  89. #deleteAction {
  90. margin-left: 5% !important;
  91. }