search_panel.css 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. summary {
  14. cursor: pointer;
  15. }
  16. @media print {
  17. /* print-previews can't handle 100%-height element as main part of page */
  18. #side_panel {
  19. height: auto;
  20. }
  21. /*
  22. see
  23. stackoverflow.com/questions/19948474
  24. stackoverflow.com/questions/20243767
  25. */
  26. .col-md-6 {
  27. float: left;
  28. width: 50%;
  29. }
  30. .quickhelp {
  31. page-break-inside: avoid;
  32. }
  33. }
  34. .side_panel_splitbar {
  35. position: absolute;
  36. left: 0;
  37. top: 0;
  38. cursor: col-resize;
  39. height: 100%;
  40. width: 8px;
  41. background: url(./img/handle-v.png) 2px 50% no-repeat;
  42. background-color: #F6F6F6;
  43. }
  44. .side_panel_inner {
  45. overflow: auto;
  46. height: inherit;
  47. margin-left: 8px;
  48. }
  49. .side_panel_inner > div:not(.alert) {
  50. padding: 0.5em;
  51. }
  52. .search_panel_hide .modal-backdrop,
  53. .search_panel_hide .modal {
  54. display: none !important;
  55. }