PlasticWindow.uss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* Basic Classes */
  2. .display-none {
  3. display: none;
  4. }
  5. .row {
  6. flex-direction: row;
  7. }
  8. .column {
  9. flex-direction: column;
  10. }
  11. .flex-container {
  12. display: flex;
  13. }
  14. .grow {
  15. flex-grow: 1;
  16. }
  17. .horizontally-centered {
  18. justify-content: center;
  19. }
  20. .hidden {
  21. visibility: hidden;
  22. }
  23. /* Plastic Window Tabview */
  24. #TabView {
  25. height: auto;
  26. min-height: 235px;
  27. flex-grow: 1;
  28. }
  29. #TabArea {
  30. margin: 0px;
  31. margin-top: 5px;
  32. }
  33. .tab-button {
  34. width: 130px;
  35. margin: 0px;
  36. margin-top: 1px;
  37. padding: 1px 16px 2px 16px;
  38. font-size: 13px;
  39. }
  40. /* Notifications, buttons, and settings */
  41. #ControlsContainer {
  42. flex-grow: 1;
  43. justify-content: flex-end;
  44. margin-bottom: 3px;
  45. }
  46. #StatusBar {
  47. flex-grow: 1;
  48. justify-content: flex-end;
  49. height: 22px;
  50. max-height: 22px;
  51. padding: 2px 1px 1px 1px;
  52. }
  53. #UpdateNotificationContainer {
  54. padding-top: 2px;
  55. }
  56. #UpdateNotificationImage {
  57. width: 15px;
  58. height: 15px;
  59. margin-right: 2px;
  60. }
  61. #RefreshButton,
  62. #SettingsButton {
  63. background-color: rgba(1, 1, 1, 0);
  64. border-width: 0px;
  65. padding: 0px;
  66. width: 16px;
  67. height: 16px;
  68. }
  69. #BranchLabel {
  70. -unity-text-align: middle-right;
  71. }