mavon-flex.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .v-note-wrapper{
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .v-note-wrapper .v-note-op{
  6. display: flex;
  7. flex: none;
  8. }
  9. .v-note-wrapper .v-note-op .left,
  10. .v-note-wrapper .v-note-op .right{
  11. flex: 1;
  12. }
  13. .v-note-wrapper {
  14. display: flex;
  15. flex-direction: column;
  16. }
  17. .v-note-wrapper .v-note-op {
  18. display: flex;
  19. flex: none;
  20. }
  21. .v-note-wrapper .v-note-op .left,
  22. .v-note-wrapper .v-note-op .right {
  23. flex: 1;
  24. }
  25. .v-note-wrapper .v-note-panel {
  26. display: flex;
  27. flex: 1;
  28. min-height: 500px;
  29. }
  30. .v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper {
  31. flex: 0 0 50%;
  32. }
  33. .v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-edit {
  34. flex: 0 0 100%;
  35. }
  36. .v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-show {
  37. width: 0;
  38. flex: 0 0 0;
  39. display: none;
  40. }
  41. .v-note-wrapper .v-note-panel .v-note-show {
  42. flex: 0 0 50%;
  43. }
  44. .v-note-wrapper .v-note-panel .v-note-show.single-show {
  45. flex: 0 0 100%;
  46. }
  47. .v-note-wrapper .v-note-panel .v-note-navigation-wrapper {
  48. display: flex;
  49. flex-direction: column;
  50. }
  51. .v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title {
  52. flex: none;
  53. }
  54. .v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content {
  55. flex: 1;
  56. }
  57. .v-note-img-wrapper{
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. }
  62. .v-note-img-wrapper img {
  63. flex: 0 0 auto;
  64. }