You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.0 KiB

6 years ago
  1. /*!
  2. * StyleSheet for JQuery splitter Plugin
  3. * Copyright (C) 2010 Jakub Jankiewicz <http://jcubic.pl>
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. .splitter_panel {
  19. position: relative;
  20. }
  21. .splitter_panel .vsplitter {
  22. background-color: grey;
  23. cursor: col-resize;
  24. z-index:900;
  25. width: 7px;
  26. }
  27. .splitter_panel .hsplitter {
  28. background-color: #5F5F5F;
  29. cursor: row-resize;
  30. z-index: 800;
  31. height: 7px;
  32. }
  33. .splitter_panel .vsplitter.splitter-invisible,
  34. .splitter_panel .hsplitter.splitter-invisible {
  35. background: none;
  36. }
  37. .splitter_panel .vsplitter, .splitter_panel .left_panel, .splitter_panel .right_panel,
  38. .splitter_panel .hsplitter, .splitter_panel .top_panel, .splitter_panel .bottom_panel {
  39. position: absolute;
  40. overflow: auto;
  41. }
  42. .splitter_panel .vsplitter, .splitter_panel .left_panel, .splitter_panel .right_panel {
  43. height: 100%;
  44. }
  45. .splitter_panel .hsplitter, .splitter_panel .top_panel, .splitter_panel .bottom_panel {
  46. width: 100%;
  47. }
  48. .splitter_panel .top_panel, .splitter_panel .left_panel, .splitter_panel .vsplitter {
  49. top: 0;
  50. }
  51. .splitter_panel .top_panel, .splitter_panel .bottom_panel, .splitter_panel .left_panel, .splitter_panel .hsplitter {
  52. left: 0;
  53. }
  54. .splitter_panel .bottom_panel {
  55. bottom: 0;
  56. }
  57. .splitter_panel .right_panel {
  58. right: 0;
  59. }
  60. .splitterMask {
  61. position: absolute;
  62. left: 0;
  63. top: 0;
  64. right: 0;
  65. bottom: 0;
  66. z-index: 1000;
  67. }