503 B26 lines
Blame
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 .smart-actions-button {
9 opacity: 0;
10 transition: opacity 0.1s;
11}
12
13.commit:hover .smart-actions-button {
14 opacity: 1;
15}
16
17.smart-actions-button.dropdown-visible {
18 opacity: 1;
19}
20
21.smart-actions-dropdown vscode-button,
22.smart-actions-dropdown button {
23 min-width: 250px;
24 justify-content: center;
25}
26