| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* Basic Classes */
- .display-none {
- display: none;
- }
- .row {
- flex-direction: row;
- }
- .column {
- flex-direction: column;
- }
- .flex-container {
- display: flex;
- }
- .grow {
- flex-grow: 1;
- }
- .horizontally-centered {
- justify-content: center;
- }
- .hidden {
- visibility: hidden;
- }
- /* Plastic Window Tabview */
- #TabView {
- height: auto;
- min-height: 235px;
- flex-grow: 1;
- }
- #TabArea {
- margin: 0px;
- margin-top: 5px;
- }
- .tab-button {
- width: 130px;
- margin: 0px;
- margin-top: 1px;
- padding: 1px 16px 2px 16px;
- font-size: 13px;
- }
- /* Notifications, buttons, and settings */
- #ControlsContainer {
- flex-grow: 1;
- justify-content: flex-end;
- margin-bottom: 3px;
- }
- #StatusBar {
- flex-grow: 1;
- justify-content: flex-end;
- height: 22px;
- max-height: 22px;
- padding: 2px 1px 1px 1px;
- }
- #UpdateNotificationContainer {
- padding-top: 2px;
- }
- #UpdateNotificationImage {
- width: 15px;
- height: 15px;
- margin-right: 2px;
- }
- #RefreshButton,
- #SettingsButton {
- background-color: rgba(1, 1, 1, 0);
- border-width: 0px;
- padding: 0px;
- width: 16px;
- height: 16px;
- }
- #BranchLabel {
- -unity-text-align: middle-right;
- }
|