1/* 2 * Copyright 2025 The Pigweed Authors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 5 * use this file except in compliance with the License. You may obtain a copy of 6 * the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 13 * License for the specific language governing permissions and limitations under 14 * the License. 15 */ 16 17.container { 18 width: 100%; 19 box-sizing: border-box; 20} 21 22.row { 23 display: flex; 24 width: 100%; 25 box-sizing: border-box; 26} 27 28 29.row div:first-child { 30 flex: 1; 31 padding: 8px; 32 box-sizing: border-box; 33 min-width: 0; 34 text-wrap: balance; 35} 36 37.row div:last-child { 38 white-space: nowrap; 39 padding: 8px; 40 box-sizing: border-box; 41} 42 43.row div sub{ 44 word-wrap: break-word; 45} 46 47@font-face { 48 font-family: "codicon"; 49 src: url("@vscode/codicons/dist/codicon.ttf") format("truetype"); 50} 51 52.codicon[class*='codicon-'] { 53 font: normal normal normal 16px/1 codicon; 54 display: inline-block; 55 text-decoration: none; 56 text-rendering: auto; 57 text-align: center; 58 -webkit-font-smoothing: antialiased; 59 -moz-osx-font-smoothing: grayscale; 60 user-select: none; 61 -webkit-user-select: none; 62 -ms-user-select: none; 63} 64 65.codicon-chevron-right:before { content: "\eab6" }