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.

ToolbarStyle.uss 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /**********************************************************************************************************************/
  2. /* Toolbar */
  3. /**********************************************************************************************************************/
  4. .Toolbar {
  5. flex:0 0 auto;
  6. padding-bottom : 10px;
  7. }
  8. Button {
  9. align-items: center;
  10. margin-left: 1px;
  11. margin-right: 1px;
  12. margin-top: 1px;
  13. margin-bottom: 1px;
  14. flex-direction : row;
  15. border-left-width: 1px;
  16. border-right-width: 1px;
  17. border-bottom-width: 1px;
  18. border-top-width: 1px;
  19. border-top-left-radius: 3px;
  20. border-top-right-radius: 3px;
  21. border-bottom-left-radius: 3px;
  22. border-bottom-right-radius: 3px;
  23. padding-left:2px;
  24. padding-right:2px;
  25. padding-bottom:2px;
  26. padding-top:2px;
  27. }
  28. Button > Image {
  29. width: 16px;
  30. height: 16px;
  31. }
  32. .Collapse Button {
  33. margin-top: -1px;
  34. width: 26px;
  35. height: 26px;
  36. }
  37. Button > .unity-label {
  38. margin-left: 2px;
  39. margin-right: 0;
  40. margin-top: 0;
  41. margin-bottom: 0;
  42. padding-left: 0;
  43. padding-right: 0;
  44. padding-top: 0;
  45. padding-bottom: 0;
  46. -unity-text-align : middle-left;
  47. }
  48. .Collapse Button > Label {
  49. display: none;
  50. }
  51. .unity-button:hover:checked {
  52. background-color: var(--unity-colors-button-background-hover_pressed);
  53. }
  54. .unity-button:active {
  55. background-color: var(--unity-colors-button-background-pressed);
  56. }
  57. .unity-button:active:hover {
  58. background-color: var(--unity-colors-button-background-pressed);
  59. }
  60. PopupWindow {
  61. border-left-width :2px;
  62. border-right-width :2px;
  63. }
  64. .Dark PopupWindow{
  65. }
  66. .Collapse PopupWindow
  67. {
  68. color: rgba(255, 255, 255, 0);
  69. background-color: rgba(255, 255, 255, 0);
  70. border-color: rgba(255, 255, 255, 0);
  71. align-items: center;
  72. }
  73. .Collapse PopupWindow > VisualElement
  74. {
  75. padding-top: 4px;
  76. }