| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | */ |
| 7 | |
| 8 | .commit-cloud-info { |
| 9 | display: flex; |
| 10 | flex-direction: column; |
| 11 | gap: calc(1 * var(--pad)); |
| 12 | margin-top: calc(-1 * var(--pad)); |
| 13 | } |
| 14 | |
| 15 | .commit-cloud-header { |
| 16 | font-size: 90%; |
| 17 | margin-bottom: calc(-1 * var(--pad)); |
| 18 | } |
| 19 | |
| 20 | .commit-cloud-row, |
| 21 | .commit-cloud-row > .subtle { |
| 22 | display: flex; |
| 23 | flex-direction: row; |
| 24 | gap: var(--pad); |
| 25 | align-items: center; |
| 26 | } |
| 27 | |
| 28 | .commit-cloud-sync-status-badge { |
| 29 | padding-block: var(--pad); |
| 30 | } |
| 31 | .commit-cloud-sync-status-badge > * { |
| 32 | display: flex; |
| 33 | gap: var(--halfpad); |
| 34 | align-items: center; |
| 35 | } |
| 36 | |
| 37 | .commit-cloud-dropdown-container { |
| 38 | width: 100%; |
| 39 | z-index: 3; |
| 40 | box-sizing: border-box; |
| 41 | display: flex; |
| 42 | flex-flow: column nowrap; |
| 43 | align-items: flex-start; |
| 44 | justify-content: flex-start; |
| 45 | } |
| 46 | |
| 47 | .commit-cloud-dropdown-container label { |
| 48 | display: block; |
| 49 | color: var(--vscode-foreground); |
| 50 | cursor: pointer; |
| 51 | line-height: normal; |
| 52 | margin-bottom: 2px; |
| 53 | font-size: 90%; |
| 54 | } |
| 55 | |
| 56 | .commit-cloud-dropdown-container vscode-dropdown { |
| 57 | min-width: 200px; |
| 58 | } |
| 59 | |
| 60 | .commit-cloud-backup-list { |
| 61 | margin-left: calc(3 * var(--pad)); |
| 62 | } |
| 63 | |
| 64 | .commit-cloud-workspace-actions { |
| 65 | display: flex; |
| 66 | flex-direction: column; |
| 67 | gap: var(--pad); |
| 68 | width: 100%; |
| 69 | } |
| 70 | |
| 71 | .commit-cloud-new-workspace-input vscode-text-field { |
| 72 | flex-grow: 1; |
| 73 | } |
| 74 | .commit-cloud-new-workspace-input { |
| 75 | display: flex; |
| 76 | align-items: flex-end; |
| 77 | gap: var(--halfpad); |
| 78 | } |
| 79 | |