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.

splitpanel.scss 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @mixin liferay-splitpanel {
  2. .v-splitpanel-hsplitter,
  3. .v-splitpanel-hsplitter-locked {
  4. font-size: 1px;
  5. width: 3px;
  6. background-color: #c8c9ca;
  7. }
  8. .v-splitpanel-hsplitter div {
  9. font-size: 1px;
  10. width: 3px;
  11. background: transparent;
  12. background-repeat: no-repeat;
  13. background-image: url(hsplit.png);
  14. background-position: center;
  15. }
  16. .v-splitpanel-hsplitter-locked div {
  17. font-size: 1px;
  18. width: 3px;
  19. }
  20. .v-splitpanel-vsplitter,
  21. .v-splitpanel-vsplitter-locked {
  22. font-size: 1px;
  23. height: 3px;
  24. }
  25. .v-splitpanel-vsplitter div {
  26. font-size: 1px;
  27. height: 3px;
  28. background: transparent;
  29. background-color: #c8c9ca;
  30. background-repeat: no-repeat;
  31. background-image: url(vsplit.png);
  32. background-position: center;
  33. }
  34. .v-splitpanel-vsplitter-locked,
  35. .v-splitpanel-vsplitter-locked div {
  36. font-size: 1px;
  37. height: 3px;
  38. background-color: #c8c9ca;
  39. }
  40. /* Small SplitPanel */
  41. .v-splitpanel-hsplitter-small,
  42. .v-splitpanel-hsplitter-small div,
  43. .v-splitpanel-hsplitter-small-locked,
  44. .v-splitpanel-hsplitter-small-locked div {
  45. font-size: 1px;
  46. width: 1px;
  47. background: #c8c9ca;
  48. }
  49. .v-splitpanel-vsplitter-small,
  50. .v-splitpanel-vsplitter-small div,
  51. .v-splitpanel-vsplitter-small-locked,
  52. .v-splitpanel-vsplitter-small-locked div {
  53. font-size: 1px;
  54. height: 1px;
  55. background: #c8c9ca;
  56. }
  57. }