| 1 | .Button { |
| 2 | flex: 0 0 auto; |
| 3 | margin-left: 0.25rem; |
| 4 | } |
| 5 | |
| 6 | .Commits { |
| 7 | height: 100%; |
| 8 | min-width: 30px; |
| 9 | margin-left: 0.25rem; |
| 10 | overflow: visible; |
| 11 | } |
| 12 | .Commits:focus { |
| 13 | outline: none; |
| 14 | background-color: var(--color-button-background-focus); |
| 15 | } |
| 16 | |
| 17 | .IndexLabel { |
| 18 | flex: 0 0 auto; |
| 19 | white-space: nowrap; |
| 20 | font-family: var(--font-family-monospace); |
| 21 | margin-left: 0.25rem; |
| 22 | } |
| 23 | |
| 24 | .NoCommits { |
| 25 | height: 100%; |
| 26 | display: flex; |
| 27 | align-items: center; |
| 28 | justify-content: center; |
| 29 | color: var(--color-dim); |
| 30 | } |
| 31 | |
| 32 | .Input { |
| 33 | background: none; |
| 34 | font-size: var(--font-size-sans-normal); |
| 35 | text-align: right; |
| 36 | font-family: var(--font-family-monospace); |
| 37 | border: 1px solid transparent; |
| 38 | border-radius: 0.125rem; |
| 39 | padding: 0.125rem; |
| 40 | color: var(--color-attribute-editable-value); |
| 41 | } |
| 42 | |
| 43 | .Input:focus { |
| 44 | background-color: var(--color-button-background-focus); |
| 45 | outline: none; |
| 46 | } |