addons/isl/src/CommitInfoView/SuggestedReviewers.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.suggested-reviewers {
b69ab319 display: flex;
b69ab3110 flex-direction: row;
b69ab3111 justify-content: space-between;
b69ab3112 gap: var(--pad);
b69ab3113 overflow: hidden;
b69ab3114}
b69ab3115
b69ab3116.suggested-reviewers > div:nth-child(2) {
b69ab3117 flex-shrink: 2;
b69ab3118}
b69ab3119
b69ab3120.suggested-reviewers .suggestion-header {
b69ab3121 font-size: 90%;
b69ab3122 font-variant: all-small-caps;
b69ab3123}
b69ab3124
b69ab3125.suggested-reviewers .suggestions {
b69ab3126 display: flex;
b69ab3127 flex-direction: row;
b69ab3128 gap: var(--halfpad);
b69ab3129
b69ab3130 --suggestion-height: 25px;
b69ab3131
b69ab3132 overflow: hidden;
b69ab3133 flex-wrap: wrap;
b69ab3134 height: var(--suggestion-height);
b69ab3135}
b69ab3136
b69ab3137.suggested-reviewers .suggestion {
b69ab3138 display: block;
b69ab3139 flex: 1 0 var(--suggestion-height);
b69ab3140 height: var(--suggestion-height);
b69ab3141 width: fit-content;
b69ab3142 max-width: fit-content;
b69ab3143 box-sizing: border-box;
b69ab3144 color: var(--foreground);
b69ab3145 cursor: pointer;
b69ab3146}
b69ab3147
b69ab3148.suggested-reviewers .suggestion:hover {
b69ab3149 background-color: var(--hover-darken);
b69ab3150}
b69ab3151
b69ab3152.suggestions-loading {
b69ab3153 height: var(--suggestion-height);
b69ab3154 margin: var(--halfpad);
b69ab3155}