File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ const en = Object.freeze({
6161 'common.notExistsWillCreateOnApply' : 'Not found. Will be created on apply.' ,
6262 'common.notExistsWillCreateOnSave' : 'Not found. Will be created on save.' ,
6363 'common.none' : 'None' ,
64+ 'common.configured' : 'Configured' ,
65+ 'common.notConfigured' : 'Not configured' ,
6466 'cli.missing.title' : '{name} CLI not installed' ,
6567 'cli.missing.subtitle' : 'Install {name} CLI before using this page.' ,
6668 'cli.missing.openDocs' : 'Open install guide' ,
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ const ja = Object.freeze({
6262 'common.notExistsWillCreateOnApply' : '存在しません。適用時に作成されます' ,
6363 'common.notExistsWillCreateOnSave' : '存在しません。保存時に作成されます' ,
6464 'common.none' : 'なし' ,
65+ 'common.configured' : '設定済み' ,
66+ 'common.notConfigured' : '未設定' ,
6567 'cli.missing.title' : '{name} CLI がインストールされていません' ,
6668 'cli.missing.subtitle' : '{name} CLI をインストールしてからこのページをご利用ください。' ,
6769 'cli.missing.openDocs' : 'インストールガイドを開く' ,
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ const vi = Object.freeze({
7171 'common.notExistsWillCreateOnApply' : 'Không tồn tại. Sẽ được tạo khi áp dụng.' ,
7272 'common.notExistsWillCreateOnSave' : 'Không tồn tại. Sẽ được tạo khi lưu.' ,
7373 'common.none' : 'Không có' ,
74+ 'common.configured' : 'Đã cấu hình' ,
75+ 'common.notConfigured' : 'Chưa cấu hình' ,
7476 'common.notSelected' : 'Chưa chọn' ,
7577
7678 // Roles / labels
Original file line number Diff line number Diff line change @@ -61,6 +61,8 @@ const zh = Object.freeze({
6161 'common.notExistsWillCreateOnApply' : '不存在,将在应用时创建' ,
6262 'common.notExistsWillCreateOnSave' : '不存在,将在保存时创建' ,
6363 'common.none' : '暂无' ,
64+ 'common.configured' : '已配置' ,
65+ 'common.notConfigured' : '未配置' ,
6466 'cli.missing.title' : '{name} CLI 未安装' ,
6567 'cli.missing.subtitle' : '请先安装 {name} CLI 后再继续使用此页面。' ,
6668 'cli.missing.openDocs' : '打开安装指南' ,
Original file line number Diff line number Diff line change 154154 </ div >
155155 < div class ="card-trailing ">
156156 < span v-if ="claudeSpeedResults[name] " :class ="['latency', claudeSpeedResults[name].ok ? 'ok' : 'error'] "> {{ formatLatency(claudeSpeedResults[name]) }}</ span >
157- < span :class ="['pill', config.hasKey ? 'configured' : 'empty'] "> {{ config.hasKey ? t('claude .configured') : t('claude .notConfigured') }}</ span >
157+ < span :class ="['pill', config.hasKey ? 'configured' : 'empty'] "> {{ config.hasKey ? t('common .configured') : t('common .notConfigured') }}</ span >
158158 < div class ="card-actions " @click.stop >
159159 < button class ="card-action-btn " @click ="openEditConfigModal(name) " :aria-label ="t('claude.action.editAria', { name }) " :title ="t('claude.action.edit') ">
160160 < svg viewBox ="0 0 24 24 " fill ="none " stroke ="currentColor " stroke-width ="2 "> < path d ="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7 "/> < path d ="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z "/> </ svg >
Original file line number Diff line number Diff line change 7575 卡片列表
7676 ============================================ */
7777.card-list {
78- display : flex ;
79- flex-direction : column ;
78+ display : grid ;
79+ grid-template-columns : repeat ( 2 , 1 fr ) ;
8080 gap : 10px ;
8181 margin-bottom : 8px ;
8282}
8383
84+ @media (max-width : 768px ) {
85+ .card-list {
86+ grid-template-columns : 1fr ;
87+ }
88+ }
89+
8490/* ============================================
8591 卡片
8692 ============================================ */
368374 状态徽章
369375 ============================================ */
370376.pill {
371- padding : 5 px 11 px ;
377+ padding : 4 px 9 px ;
372378 border-radius : var (--radius-full );
373- font-size : var ( --font-size-caption ) ;
379+ font-size : 9 px ;
374380 font-weight : var (--font-weight-caption );
375381 background-color : rgba (255 , 255 , 255 , 0.8 );
376382 color : var (--color-text-tertiary );
You can’t perform that action at this time.
0 commit comments