| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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);
- }
- .page-index {
- display: flex;
- }
- .button-wrapper {
- display: inline-flex;
- justify-content: end;
- }
- #menuBar {
- display: inline-block;
- min-width: 200px;
- width: min(100%, 350px);
- height: 100vh;
- border-right: 1px solid gray;
- overflow: auto;
- resize: horizontal;
- }
- #menuBar > div {
- margin: 2em;
- }
- .treeroot {
- padding: 0 1.5em;
- }
- iframe#page {
- display: inline-flex;
- flex: 1;
- border: none;
- }
- #entity-page {
- background: url("/img/OIG3.png") no-repeat center 22vh /44vh;
- }
- 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;
- }
|