main.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  5. }
  6. a {
  7. color: #00B7FF;
  8. }
  9. .category-list .category.selected {
  10. background-color: #dbfffd;
  11. }
  12. .content.page-login .logo {
  13. height: 33vh;
  14. max-height: 200px;
  15. }
  16. .content.page-login > .row {
  17. height: 100vh;
  18. max-width: 340px;
  19. margin: auto;
  20. }
  21. .content.page-login > .row > .col {
  22. border: 1px solid var(--bs-border-color);
  23. border-radius: calc(var(--bs-border-radius) - 1px);
  24. }
  25. .page-index {
  26. display: flex;
  27. }
  28. .button-wrapper {
  29. display: inline-flex;
  30. justify-content: end;
  31. }
  32. #menuBar {
  33. display: inline-block;
  34. min-width: 200px;
  35. width: min(100%, 300px);
  36. height: 100vh;
  37. border-right: 1px solid gray;
  38. overflow: auto;
  39. resize: horizontal;
  40. }
  41. #menuBar .nav {
  42. background: #edf6fb;
  43. }
  44. #menuBar .nav-item.input-group-wrapper {
  45. flex: 1;
  46. width: initial;
  47. max-width: 350px;
  48. margin: 5px;
  49. }
  50. #menuBar > div {
  51. margin: 1em 2em;
  52. }
  53. .treeroot {
  54. padding: 0;
  55. }
  56. .treeroot li {
  57. list-style-type: none;
  58. user-select: none;
  59. }
  60. .treeroot li > span::before {
  61. font-weight: bold !important;
  62. padding-right: 5px;
  63. }
  64. .treeroot .hidden {
  65. display: none !important;
  66. }
  67. iframe#page {
  68. display: inline-flex;
  69. flex: 1;
  70. border: none;
  71. }
  72. #entity-page,#home-page {
  73. min-height: 100vh;
  74. }
  75. #entity-page {
  76. background: url("/img/OIG3.png") no-repeat center 22vh /44vh;
  77. }
  78. #entity-page #classContainer {
  79. background: rgba(255, 255, 255, 0.33);
  80. background: linear-gradient(to right, rgba(255, 255, 255, 0.45), 66%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  81. backdrop-filter: blur(2px);
  82. display: inline-block;
  83. }
  84. #home-page {
  85. background: #edf6fb;
  86. margin: 0;
  87. display: flex;
  88. }
  89. #home-page .logo-big {
  90. margin: auto;
  91. position: relative;
  92. }
  93. #home-page .logo-big > img {
  94. max-height: 44vh;
  95. max-width: 44vw;
  96. }
  97. #home-page .logo-big::before {
  98. position: absolute;
  99. display: inline-flex;
  100. top: -10px;
  101. bottom: -10px;
  102. left: -10px;
  103. right: -10px;
  104. content: ' ';
  105. border: solid 25px rgba(237,246,251, 0.75);
  106. filter: blur(30px);
  107. }
  108. div.page {
  109. margin: 0 1em;
  110. }
  111. fieldset.changes {
  112. margin: 1.5em 0;
  113. }
  114. fieldset.LDAPClass > legend {
  115. padding: 0 1em;
  116. }
  117. label.LDAPAttribute {
  118. display: block;
  119. margin: 3px;
  120. }
  121. label.LDAPAttribute > span {
  122. display: inline-block;
  123. width: 250px;
  124. }
  125. label.LDAPAttribute > span > .button {
  126. margin-left: 7px;
  127. }
  128. label.LDAPAttribute > span > .button-add {
  129. color: var(--bs-success);
  130. }
  131. label.LDAPAttribute > span > .button-remove {
  132. color: var(--bs-danger);
  133. }
  134. label.LDAPAttribute > span.mandatory {
  135. font-weight: bold;
  136. }
  137. label.LDAPAttribute > span.mandatory::before {
  138. content: "*";
  139. color: red;
  140. font-weight: bold;
  141. }
  142. label.LDAPAttribute .button::before {
  143. cursor: pointer;
  144. }
  145. label.LDAPAttribute > span {
  146. display: inline-block;
  147. width: 450px;
  148. position: relative;
  149. }
  150. label.LDAPAttribute .editlink {
  151. display: flex;
  152. position: absolute;
  153. top: 0;
  154. left: 0;
  155. width: 100%;
  156. height: 100%;
  157. align-items: center;
  158. }
  159. label.LDAPAttribute .editlink a {
  160. flex: 1;
  161. margin: 3px;
  162. background: rgba(var(--bs-secondary-bg), 0.5);
  163. backdrop-filter: blur(2px);
  164. padding-left: .375rem;
  165. }
  166. #ldifOutput {
  167. width: 100%;
  168. height: auto;
  169. }