Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

MasterPreviewView.uss 1002B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. MasterPreviewView {
  2. flex-direction: column;
  3. position: absolute;
  4. right: 10px;
  5. bottom: 10px;
  6. width: 125px;
  7. height: 125px;
  8. min-width: 100px;
  9. min-height: 100px;
  10. background-color: rgb(79, 79, 79);
  11. justify-content: flex-start;
  12. border-radius: 6px;
  13. border-top-width: 1px;
  14. border-bottom-width: 1px;
  15. border-left-width: 1px;
  16. border-right-width: 1px;
  17. border-color: rgb(25,25,25);
  18. }
  19. MasterPreviewView > #top {
  20. flex-direction: row;
  21. justify-content: space-between;
  22. background-color: rgb(64, 64, 64);
  23. padding: 8px;
  24. border-top-left-radius: 6px;
  25. border-top-right-radius: 6px;
  26. }
  27. MasterPreviewView > #top > #title {
  28. overflow: hidden;
  29. font-size: 14px;
  30. color: rgb(180, 180, 180);
  31. padding: 1px 2px 2px;
  32. }
  33. MasterPreviewView > #middle {
  34. background-color: rgb(49, 49, 49);
  35. flex-grow: 1;
  36. flex-direction: row;
  37. }
  38. MasterPreviewView > #middle > #preview {
  39. flex-grow: 1;
  40. width: 100px;
  41. height: 100px;
  42. }