| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #side_panel {
- position: relative;
- top: 0;
- right: 0;
- height: 100%;
- font-size: 0.9em;
- overflow: auto;
- background-color: #FFFFFF;
- }
- details > details {
- margin-left: 1em;
- }
- details > p {
- margin-left: 1em;
- }
- summary {
- cursor: pointer;
- }
- .mlink {
- cursor: pointer;
- background-color: #AAA;
- }
- @media print {
- /* print-previews can't handle 100%-height element as main part of page */
- #side_panel {
- height: auto;
- }
-
- /*
- see
- stackoverflow.com/questions/19948474
- stackoverflow.com/questions/20243767
- */
- .col-md-6 {
- float: left;
- width: 50%;
- }
- .quickhelp {
- page-break-inside: avoid;
- }
- }
- .side_panel_splitbar {
- position: absolute;
- left: 0;
- top: 0;
- cursor: col-resize;
- height: 100%;
- width: 8px;
- background: url(./img/handle-v.png) 2px 50% no-repeat;
- background-color: #F6F6F6;
- }
- .side_panel_inner {
- overflow: auto;
- height: inherit;
- margin-left: 8px;
- }
- .side_panel_inner > div:not(.alert) {
- padding: 0.5em;
- }
- .search_panel_hide .modal-backdrop,
- .search_panel_hide .modal {
- display: none !important;
- }
|