PropertyRow.uss 614 B

123456789101112131415161718192021222324252627282930313233
  1. PropertyRow EnumField,
  2. PropertyRow Label,
  3. PropertyRow Toggle,
  4. PropertyRow IntegerField,
  5. PropertyRow ColorField,
  6. PropertyRow DoubleField {
  7. margin-left: 0;
  8. margin-right: 0;
  9. -unity-text-align : middle-left;
  10. }
  11. PropertyRow > #container{
  12. flex-grow: 1;
  13. padding-left: 8px;
  14. padding-right: 8px;
  15. flex-direction: row;
  16. }
  17. PropertyRow > #container > #label {
  18. width: 200px;
  19. height: 24px;
  20. justify-content: center;
  21. }
  22. PropertyRow > #container > #label > Label {
  23. margin-bottom: 3px;
  24. }
  25. PropertyRow > #container > #content{
  26. flex-grow: 1;
  27. height: 24px;
  28. justify-content: center;
  29. }