| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- body {
- margin: 0;
- padding: 0;
- font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
- }
- a {
- color: #00B7FF;
- }
- .category-list .category.selected {
- background-color: #dbfffd;
- }
- .content.page-login .logo {
- height: 33vh;
- max-height: 200px;
- }
- .content.page-login > .row {
- height: 100vh;
- max-width: 340px;
- margin: auto;
- }
- .content.page-login > .row > .col {
- border: 1px solid var(--bs-border-color);
- border-radius: calc(var(--bs-border-radius) - 1px);
- }
- .button-wrapper {
- display: inline-flex;
- justify-content: end;
- }
- #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;
- }
|