Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

PropertyRow.uss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. PropertyRow EnumField,
  2. PropertyRow PopupField,
  3. PropertyRow TextField,
  4. PropertyRow Label,
  5. PropertyRow Toggle,
  6. PropertyRow IntegerField,
  7. PropertyRow ColorField,
  8. PropertyRow DoubleField {
  9. margin-left: 0;
  10. margin-right: 0;
  11. -unity-text-align : middle-left;
  12. }
  13. PropertyRow > #container{
  14. flex-grow: 1;
  15. padding-left: 8px;
  16. padding-right: 16px;
  17. flex-direction: row;
  18. }
  19. PropertyRow > #container > #label {
  20. flex-grow: 2;
  21. flex-basis: 0;
  22. min-width: 184px;
  23. width: 92px;
  24. font-size: 12px;
  25. margin-right: 4px;
  26. justify-content: center;
  27. }
  28. PropertyRow > #container > #label > Label {
  29. margin-bottom: 3px;
  30. flex-wrap: wrap;
  31. text-overflow: ellipsis; /* Possible values: clip | ellipsis */
  32. -unity-text-overflow-position: end; /* Possible values: start | middle | end */
  33. /* Conditions */
  34. overflow: hidden;
  35. white-space: wrap;
  36. }
  37. PropertyRow > #container > #label > Label.modified {
  38. -unity-font-style: bold;
  39. }
  40. PropertyRow > #container > #content{
  41. flex-grow: 10;
  42. flex-basis: 0;
  43. height: auto;
  44. -unity-font-style: bold;
  45. min-width: 64px;
  46. width: 100px;
  47. justify-content: center;
  48. }