12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .main-body {
- overflow: scroll;
- }
- table {
- color: #000;
- }
- table td,
- table th {
- border: 1px solid #d2d0d0;
- text-align: left;
- padding: 8px;
- }
- table tr:nth-child(even) {
- background-color: #ddd;
- }
- .ext-box {
- display: flex;
- flex-direction: row;
- height: 34px;
- }
- .ext-box .ext-box-left {
- display: flex;
- width: 100%;
- gap: 10px;
- }
- .ext-box span {
- vertical-align: center;
- line-height: 34px;
- }
- .ext-box input,
- .ext-box button {
- padding: 0;
- }
- .ext-box button {
- min-width: 90px;
- }
- .content-wrapper {
- margin-top: 10px;
- }
- .buttonsContainer {
- display: flex;
- }
- .buttonsContainer input {
- margin: 0;
- }
- .buttonsContainer div {
- margin: auto;
- }
- .more-settings-user,
- .more-settings-team,
- .more-settings-org {
- margin-left: 10px;
- }
- .js-orgs,
- .js-orgsNewUser {
- display: none;
- }
- .js-teams,
- .js-teamsNewUser {
- display: none;
- }
- .selectUserChkBox,
- .allUserChkBox {
- position: static !important;
- visibility: visible !important;
- left: 0 !important;
- display: block !important;
- }
- #divAddOrRemoveTeam {
- background: #008000;
- display: none;
- }
- #addOrRemoveTeam {
- background: #008000;
- color: #fff;
- }
- #divAddOrRemoveTeamContainer {
- display: none;
- margin: auto;
- width: 50%;
- border: 3px solid #008000;
- padding: 10px;
- }
- #cancelBtn {
- margin-left: 5% !important;
- background: #ffa500;
- color: #fff;
- }
- #deleteAction {
- margin-left: 5% !important;
- }
|