main.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. .button-wrapper {
  26. display: inline-flex;
  27. justify-content: end;
  28. }
  29. #menuBar {
  30. display: inline-block;
  31. position: fixed;
  32. top: 0;
  33. bottom: 0;
  34. left: 0;
  35. max-width: 250px;
  36. width: 100%;
  37. border-right: 1px solid gray;
  38. overflow: auto;
  39. }
  40. #menuBar > div {
  41. margin: 2em;
  42. }
  43. .treeroot {
  44. padding: 0 1.5em;
  45. }
  46. iframe#page {
  47. display: inline-block;
  48. position: fixed;
  49. top: 0;
  50. bottom: 0;
  51. right: 0;
  52. max-width: calc(100% - 250px);
  53. height: 100%;
  54. width: 100%;
  55. border: none;
  56. }
  57. div.page {
  58. margin: 0 1em;
  59. }
  60. fieldset.changes {
  61. margin: 1.5em 0;
  62. }
  63. fieldset.LDAPClass > legend {
  64. padding: 0 1em;
  65. }
  66. label.LDAPAttribute {
  67. display: block;
  68. margin: 3px;
  69. }
  70. label.LDAPAttribute > span {
  71. display: inline-block;
  72. width: 250px;
  73. }
  74. label.LDAPAttribute > span.mandatory:after {
  75. content: " (*)"
  76. }
  77. label.LDAPAttribute > input {
  78. display: inline-block;
  79. width: 450px;
  80. }
  81. #ldifOutput {
  82. width: 100%;
  83. height: auto;
  84. }