main.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #menuBar {
  13. display: inline-block;
  14. position: fixed;
  15. top: 0;
  16. bottom: 0;
  17. left: 0;
  18. max-width: 250px;
  19. width: 100%;
  20. border-right: 1px solid gray;
  21. overflow: auto;
  22. }
  23. #menuBar > div {
  24. margin: 2em;
  25. }
  26. .treeroot {
  27. padding: 0 1.5em;
  28. }
  29. iframe#page {
  30. display: inline-block;
  31. position: fixed;
  32. top: 0;
  33. bottom: 0;
  34. right: 0;
  35. max-width: calc(100% - 250px);
  36. height: 100%;
  37. width: 100%;
  38. border: none;
  39. }
  40. div.page {
  41. margin: 0 1em;
  42. }
  43. fieldset.changes {
  44. margin: 1.5em 0;
  45. }
  46. fieldset.LDAPClass > legend {
  47. padding: 0 1em;
  48. }
  49. label.LDAPAttribute {
  50. display: block;
  51. margin: 3px;
  52. }
  53. label.LDAPAttribute > span {
  54. display: inline-block;
  55. width: 250px;
  56. }
  57. label.LDAPAttribute > span.mandatory:after {
  58. content: " (*)"
  59. }
  60. label.LDAPAttribute > input {
  61. display: inline-block;
  62. width: 450px;
  63. }
  64. #ldifOutput {
  65. width: 100%;
  66. height: auto;
  67. }