Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TabButtonStyles.uss 778B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .unity-tab-button {
  2. }
  3. .unity-tab-button:hover {
  4. background-color: #303030;
  5. }
  6. .unity-tab-button__top-bar {
  7. height: 2px;
  8. border-top-left-radius: 2px;
  9. border-top-right-radius: 2px;
  10. }
  11. .unity-tab-button--active .unity-tab-button__top-bar {
  12. background-color: #3A79BB;
  13. }
  14. .unity-tab-button__content {
  15. flex-direction: row;
  16. height: 18px;
  17. padding: 0px 6px 2px 6px;
  18. align-items: center;
  19. overflow: hidden;
  20. }
  21. .unity-tab-button--active .unity-tab-button__content {
  22. background-color: #2E2E2E;
  23. }
  24. .unity-tab-button__content-icon {
  25. width: 12px;
  26. height: 12px;
  27. flex-shrink: 0;
  28. }
  29. .unity-tab-button__content-label {
  30. padding-left: 4px;
  31. padding-right: 4px;
  32. -unity-text-align: middle-left;
  33. flex-shrink: 1;
  34. }