settings.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /**
  2. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
  4. * SPDX-License-Identifier: AGPL-3.0-only
  5. */
  6. .table {
  7. display: table;
  8. width: 85%;
  9. }
  10. .inlinetable {
  11. display: inline-table;
  12. vertical-align: bottom;
  13. }
  14. .tablerow {
  15. display: flex;
  16. align-items: center;
  17. white-space: nowrap;
  18. text-align: left;
  19. }
  20. .tablerow input, .tablerow textarea {
  21. width: 100% !important;
  22. }
  23. .tablerow textarea {
  24. height: 15px;
  25. }
  26. #ldap .tablerow label {
  27. margin-left: 3px;
  28. }
  29. .ldapIconCopy {
  30. background-image: url('../img/copy.svg');
  31. }
  32. .invisible {
  33. visibility: hidden;
  34. }
  35. .forceHidden {
  36. display: none !important;
  37. }
  38. .ldapSettingsTabs {
  39. float: right !important;
  40. }
  41. .ldapWizardControls {
  42. width: 60%;
  43. text-align: right;
  44. }
  45. .ldapWizardInfo {
  46. width: 100% !important;
  47. height: 50px;
  48. background-color: lightyellow;
  49. border-radius: 8px;
  50. padding: 10px 8px 6px !important;
  51. margin-bottom: 5px;
  52. }
  53. #ldapWizard1 .hostPortCombinator {
  54. width: 60%;
  55. display: table;
  56. }
  57. #ldapWizard1 .hostPortCombinatorSpan {
  58. width: 14.5%;
  59. display: inline-block;
  60. text-align: right;
  61. }
  62. #ldapWizard1 .host {
  63. width: 100%;
  64. margin-left: 0;
  65. margin-right: 0;
  66. }
  67. .tableCellInput {
  68. margin-left: -40%;
  69. width: 100%;
  70. }
  71. .tableCellLabel {
  72. text-align: right;
  73. padding-right: 25%;
  74. }
  75. .ldapIndent {
  76. margin-left: 50px;
  77. }
  78. .ldapwarning {
  79. margin-left: 22px;
  80. color: #FF3B3B;
  81. }
  82. .ldapSpinner {
  83. height: 15px;
  84. margin: 5px;
  85. }
  86. .ldap_count {
  87. line-height: 45px;
  88. }
  89. .ldapSettingControls {
  90. margin-top: 3px;
  91. }
  92. #ldap fieldset p label {
  93. width: 20%;
  94. max-width: 200px;
  95. display: inline-block;
  96. vertical-align: top;
  97. text-align: right;
  98. padding-top: 9px;
  99. padding-right: 5px;
  100. }
  101. #ldap fieldset input[type=submit] {
  102. width: auto;
  103. }
  104. .ldapManyGroupsSupport .buttonSpan {
  105. display: inline-block;
  106. vertical-align: top;
  107. height: 150px;
  108. }
  109. .ldapManyGroupsSupport .buttonSpan button {
  110. margin-top: 35px;
  111. }
  112. .ldapManyGroupsSearch {
  113. width: 425px !important;
  114. }
  115. .ldapGroupList {
  116. height: 150px;
  117. width: 200px;
  118. }
  119. #ldap fieldset input, #ldap fieldset textarea {
  120. width: 60%;
  121. }
  122. #ldap fieldset textarea ~ button {
  123. vertical-align: text-bottom;
  124. }
  125. input.ldapVerifyInput {
  126. width: 150px !important;
  127. }
  128. .ldapInputColElement {
  129. width: 35%;
  130. display: inline-block;
  131. padding-left: 10px;
  132. }
  133. .ldapToggle {
  134. text-decoration: underline;
  135. }
  136. span.ldapInputColElement {
  137. margin-top: 9px;
  138. }
  139. #ldap fieldset p input[type=checkbox] {
  140. vertical-align: bottom;
  141. }
  142. #ldap input[type=checkbox] {
  143. width: 15px !important;
  144. }
  145. select[multiple=multiple] + button {
  146. height: 28px;
  147. padding-top: 6px !important;
  148. min-width: 40%;
  149. max-width: 40%;
  150. }
  151. .save-cursor {
  152. cursor: wait;
  153. }
  154. #ldap .ldap_saving {
  155. margin-right: 15px;
  156. color: orange;
  157. font-weight: bold;
  158. }
  159. #ldap .ldap_saving img { height: 15px; }
  160. .ldap_config_state_indicator_sign {
  161. display: inline-block;
  162. height: 16px;
  163. width: 16px;
  164. vertical-align: text-bottom;
  165. }
  166. .ldap_config_state_indicator_sign.success {
  167. background: #37ce02;
  168. border-radius: 8px;
  169. }
  170. .ldap_config_state_indicator_sign.error {
  171. background: #ce3702;
  172. }
  173. .ldap_grey {
  174. color: #777;
  175. }
  176. #ldapSettings {
  177. padding: 0;
  178. }
  179. ul.ui-multiselect-checkboxes label {
  180. display: flex;
  181. align-items: center;
  182. }