main.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 > div {
  42. margin: 2em;
  43. }
  44. .treeroot {
  45. padding: 0;
  46. }
  47. .treeroot li {
  48. list-style-type: none;
  49. user-select: none;
  50. }
  51. .treeroot li > span::before {
  52. font-weight: bold !important;
  53. padding-right: 5px;
  54. }
  55. iframe#page {
  56. display: inline-flex;
  57. flex: 1;
  58. border: none;
  59. }
  60. #entity-page,#home-page {
  61. min-height: 100vh;
  62. }
  63. #entity-page {
  64. background: url("/img/OIG3.png") no-repeat center 22vh /44vh;
  65. }
  66. #entity-page #classContainer {
  67. background: rgba(255, 255, 255, 0.33);
  68. background: linear-gradient(to right, rgba(255, 255, 255, 0.45), 66%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  69. backdrop-filter: blur(2px);
  70. display: inline-block;
  71. }
  72. #home-page {
  73. background: #edf6fb;
  74. margin: 0;
  75. display: flex;
  76. }
  77. #home-page .logo-big {
  78. margin: auto;
  79. position: relative;
  80. }
  81. #home-page .logo-big > img {
  82. max-height: 44vh;
  83. max-width: 44vw;
  84. }
  85. #home-page .logo-big::before {
  86. position: absolute;
  87. display: inline-flex;
  88. top: -10px;
  89. bottom: -10px;
  90. left: -10px;
  91. right: -10px;
  92. content: ' ';
  93. border: solid 25px rgba(237,246,251, 0.75);
  94. filter: blur(30px);
  95. }
  96. div.page {
  97. margin: 0 1em;
  98. }
  99. fieldset.changes {
  100. margin: 1.5em 0;
  101. }
  102. fieldset.LDAPClass > legend {
  103. padding: 0 1em;
  104. }
  105. label.LDAPAttribute {
  106. display: block;
  107. margin: 3px;
  108. }
  109. label.LDAPAttribute > span {
  110. display: inline-block;
  111. width: 250px;
  112. }
  113. label.LDAPAttribute > span > .button {
  114. margin-left: 7px;
  115. }
  116. label.LDAPAttribute > span > .button-add {
  117. color: var(--bs-success);
  118. }
  119. label.LDAPAttribute > span > .button-remove {
  120. color: var(--bs-danger);
  121. }
  122. label.LDAPAttribute > span.mandatory {
  123. font-weight: bold;
  124. }
  125. label.LDAPAttribute > span.mandatory::before {
  126. content: "*";
  127. color: red;
  128. font-weight: bold;
  129. }
  130. label.LDAPAttribute .button::before {
  131. cursor: pointer;
  132. }
  133. label.LDAPAttribute > span {
  134. display: inline-block;
  135. width: 450px;
  136. position: relative;
  137. }
  138. label.LDAPAttribute .editlink {
  139. display: flex;
  140. position: absolute;
  141. top: 0;
  142. left: 0;
  143. width: 100%;
  144. height: 100%;
  145. align-items: center;
  146. }
  147. label.LDAPAttribute .editlink a {
  148. flex: 1;
  149. margin: 3px;
  150. background: rgba(255, 255, 255, 0.2);
  151. backdrop-filter: blur(2px);
  152. padding-left: .375rem;
  153. }
  154. #ldifOutput {
  155. width: 100%;
  156. height: auto;
  157. }