File size: 873 Bytes
f67f72f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
#side_panel {
position: relative;
top: 0;
right: 0;
height: 100%;
font-size: 0.9em;
overflow: auto;
background-color: #FFFFFF;
}
@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;
}
.help_panel_hide .modal-backdrop,
.help_panel_hide .modal {
display: none !important;
}
|