MasterPreviewView.uss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. MasterPreviewView {
  2. flex-direction: column;
  3. position: absolute;
  4. right: 10px;
  5. bottom: 10px;
  6. background-color: rgb(79, 79, 79);
  7. justify-content: flex-start;
  8. border-radius: 6px;
  9. border-top-width: 1px;
  10. border-bottom-width: 1px;
  11. border-left-width: 1px;
  12. border-right-width: 1px;
  13. border-color: rgb(25,25,25);
  14. }
  15. MasterPreviewView > #top {
  16. flex-direction: row;
  17. justify-content: space-between;
  18. background-color: rgb(64, 64, 64);
  19. padding-top: 8px;
  20. padding-bottom: 8px;
  21. padding-left: 8px;
  22. padding-right: 8px;
  23. border-top-left-radius: 6px;
  24. border-top-right-radius: 6px;
  25. }
  26. MasterPreviewView > #top > #title {
  27. font-size: 12px;
  28. color: rgb(180, 180, 180);
  29. padding-top: 1px;
  30. padding-bottom: 2px;
  31. padding-left: 2px;
  32. padding-right: 2px;
  33. }
  34. MasterPreviewView > #top > #collapse-container {
  35. align-self : center;
  36. width : 12px;
  37. }
  38. MasterPreviewView > #top > #collapse-container > #icon{
  39. align-self: center;
  40. background-image : resource("GraphView/Nodes/NodeChevronDown");
  41. width: 12px;
  42. height: 12px;
  43. margin-right: 10px;
  44. margin-left: 10px;
  45. }
  46. MasterPreviewView > #top > #collapse-container > #icon.collapsed {
  47. align-self: center;
  48. background-image : resource("GraphView/Nodes/NodeChevronLeft");
  49. width: 12px;
  50. height: 12px;
  51. }
  52. MasterPreviewView > #top > #collapse-container > #icon.expanded {
  53. align-self: center;
  54. background-image : resource("GraphView/Nodes/NodeChevronDown");
  55. width: 12px;
  56. height: 12px;
  57. }
  58. MasterPreviewView > #middle {
  59. flex-grow: 1;
  60. flex-direction: row;
  61. }
  62. MasterPreviewView > #middle > #preview {
  63. flex-grow: 1;
  64. width: 200px;
  65. height: 200px;
  66. }
  67. MasterPreviewView.collapsed{
  68. background-color: rgb(206, 53, 185);
  69. }
  70. MasterPreviewView.expanded{
  71. background-color: rgb(206, 53, 185);
  72. }