addons/isl/src/ShelvedChanges.cssblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318.shelved-changes-dropdown {
b69ab319 min-width: 400px;
b69ab3110}
b69ab3111
b69ab3112.shelved-changes-list {
b69ab3113 display: flex;
b69ab3114 flex-direction: column;
b69ab3115 gap: calc(2 * var(--pad));
b69ab3116 align-items: flex-start;
b69ab3117 max-height: 60vh;
b69ab3118 overflow-y: auto;
b69ab3119}
b69ab3120
b69ab3121.shelved-changes-item {
b69ab3122 display: flex;
b69ab3123 flex-direction: column;
b69ab3124 gap: 0;
b69ab3125 align-items: flex-start;
b69ab3126 width: 100%;
b69ab3127}
b69ab3128
b69ab3129.unshelve-button {
b69ab3130 opacity: 0;
b69ab3131 transition: opacity 0.1s;
b69ab3132}
b69ab3133
b69ab3134.shelved-changes-item:focus-within .unshelve-button,
b69ab3135.shelved-changes-item:hover .unshelve-button {
b69ab3136 opacity: 1;
b69ab3137}
b69ab3138
b69ab3139.shelved-changes-item-row {
b69ab3140 width: 100%;
b69ab3141 display: flex;
b69ab3142 gap: var(--pad);
b69ab3143 align-items: center;
b69ab3144}
b69ab3145
b69ab3146.shelve-name {
b69ab3147 font-weight: bold;
b69ab3148 font-size: 90%;
b69ab3149}
b69ab3150
b69ab3151.shelved-changes-item .changed-files {
b69ab3152 width: 100%;
b69ab3153 margin-left: 0;
b69ab3154}
b69ab3155.shelved-changes-item vscode-button {
b69ab3156 margin-left: 0;
b69ab3157}
b69ab3158
b69ab3159.shelved-changes-item .changed-files-list {
b69ab3160 --changed-files-list-height: 80px;
b69ab3161 --changed-files-overflow-color: var(--tooltip-background);
b69ab3162}