| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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.LDAPClass {
- margin-bottom: 1em;
- }
- fieldset.LDAPClass > legend {
- padding: 0 1em;
- }
- label.LDAPAttribute {
- display: block;
- margin: 3px;
- }
- label.LDAPAttribute>span {
- display: inline-block;
- width: 250px;
- }
- label.LDAPAttribute > input {
- display: inline-block;
- width: 450px;
- }
|