| 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 | .confirm-unsaved-edits-pre-split { |
| 9 | max-width: 500px; |
| 10 | padding: var(--pad); |
| 11 | padding-bottom: 0; |
| 12 | } |
| 13 | |
| 14 | .confirm-unsaved-edits-pre-split vscode-divider { |
| 15 | margin-top: calc(2 * var(--pad)); |
| 16 | } |
| 17 | |
| 18 | .confirm-unsaved-edits-pre-split .commits-with-unsaved-changes { |
| 19 | padding: var(--pad); |
| 20 | display: flex; |
| 21 | flex-direction: column; |
| 22 | gap: var(--pad); |
| 23 | } |
| 24 | |
| 25 | .confirm-unsaved-edits-pre-split .commits-with-unsaved-changes .commit-row { |
| 26 | display: flex; |
| 27 | flex-direction: column; |
| 28 | gap: var(--halfpad); |
| 29 | } |
| 30 | |
| 31 | .confirm-unsaved-edits-pre-split .commits-with-unsaved-changes .commit { |
| 32 | display: flex; |
| 33 | gap: var(--pad); |
| 34 | align-items: center; |
| 35 | pointer-events: none; |
| 36 | } |
| 37 | |
| 38 | .confirm-unsaved-edits-pre-split .commits-with-unsaved-changes .unsaved-message-indicator, |
| 39 | .confirm-unsaved-edits-pre-split |
| 40 | .commits-with-unsaved-changes |
| 41 | .selected-commit |
| 42 | .commit-details:before { |
| 43 | display: none; |
| 44 | } |
| 45 | |
| 46 | .confirm-unsaved-edits-pre-split .commits-with-unsaved-changes .field-name { |
| 47 | padding-inline: var(--halfpad); |
| 48 | display: inline-flex; |
| 49 | gap: var(--halfpad); |
| 50 | align-items: center; |
| 51 | font-weight: bold; |
| 52 | text-transform: uppercase; |
| 53 | font-size: 90%; |
| 54 | opacity: 0.9; |
| 55 | } |
| 56 | |
| 57 | .confirm-unsaved-edits-pre-split .commits-with-unsaved-changes .byline { |
| 58 | padding-inline: calc(2 * var(--pad)); |
| 59 | display: flex; |
| 60 | gap: var(--halfpad); |
| 61 | align-items: center; |
| 62 | } |
| 63 | |