search_panel.css 984 B

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