| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- body {
- margin: 0;
- padding: 0;
- font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
- }
- a {
- color: #00B7FF;
- }
- .category-list .category.selected {
- background-color: #dbfffd;
- }
- #menuBar {
- display: inline-block;
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- max-width: 250px;
- width: 100%;
- border-right: 1px solid gray;
- overflow: auto;
- }
- #menuBar > div {
- margin: 2em;
- }
- .treeroot {
- padding: 0 1.5em;
- }
- iframe#page {
- display: inline-block;
- position: fixed;
- top: 0;
- bottom: 0;
- right: 0;
- max-width: calc(100% - 250px);
- height: 100%;
- width: 100%;
- border: none;
- }
- div.page {
- margin: 0 1em;
- }
- fieldset.changes {
- margin: 1.5em 0;
- }
- fieldset.LDAPClass > legend {
- padding: 0 1em;
- }
- label.LDAPAttribute {
- display: block;
- margin: 3px;
- }
- label.LDAPAttribute > span {
- display: inline-block;
- width: 250px;
- }
- label.LDAPAttribute > span.mandatory:after {
- content: " (*)"
- }
- label.LDAPAttribute > input {
- display: inline-block;
- width: 450px;
- }
- #ldifOutput {
- width: 100%;
- height: auto;
- }
|