search_panel.css 918 B

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