search_panel.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #side_panel {
  2. position: relative;
  3. top: 0;
  4. right: 0;
  5. height: 100%;
  6. font-size: 0.9em;
  7. overflow: auto;
  8. background-color: #FFFFFF;
  9. }
  10. details > details {
  11. margin-left: 1em;
  12. }
  13. details > p {
  14. margin-left: 1em;
  15. }
  16. summary {
  17. cursor: pointer;
  18. }
  19. .mlink {
  20. cursor: pointer;
  21. background-color: #AAA;
  22. }
  23. @media print {
  24. /* print-previews can't handle 100%-height element as main part of page */
  25. #side_panel {
  26. height: auto;
  27. }
  28. /*
  29. see
  30. stackoverflow.com/questions/19948474
  31. stackoverflow.com/questions/20243767
  32. */
  33. .col-md-6 {
  34. float: left;
  35. width: 50%;
  36. }
  37. .quickhelp {
  38. page-break-inside: avoid;
  39. }
  40. }
  41. .side_panel_splitbar {
  42. position: absolute;
  43. left: 0;
  44. top: 0;
  45. cursor: col-resize;
  46. height: 100%;
  47. width: 8px;
  48. background: url(./img/handle-v.png) 2px 50% no-repeat;
  49. background-color: #F6F6F6;
  50. }
  51. .side_panel_inner {
  52. overflow: auto;
  53. height: inherit;
  54. margin-left: 8px;
  55. }
  56. .side_panel_inner > div:not(.alert) {
  57. padding: 0.5em;
  58. }
  59. .search_panel_hide .modal-backdrop,
  60. .search_panel_hide .modal {
  61. display: none !important;
  62. }