Skip to content

Commit 74afbb8

Browse files
committed
jump to defect
1 parent 712c718 commit 74afbb8

2 files changed

Lines changed: 331 additions & 9 deletions

File tree

css/style.css

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,6 +1263,90 @@ div.clear {
12631263
border-radius: 12px;
12641264
}
12651265

1266+
.nvs-issue-group {
1267+
margin: 6px 0 14px 0;
1268+
padding: 8px 10px;
1269+
background-color: #fff8f3;
1270+
border: 1px solid #ffd9b8;
1271+
border-radius: 6px;
1272+
}
1273+
1274+
.nvs-issue-title {
1275+
font-weight: 700;
1276+
font-size: 13px;
1277+
margin-bottom: 6px;
1278+
}
1279+
1280+
pre.nvs-issue {
1281+
background-color: #fff;
1282+
border: 1px solid #f0d3b8;
1283+
border-radius: 4px;
1284+
padding: 6px 8px;
1285+
margin: 4px 0;
1286+
font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1287+
font-size: 12px;
1288+
line-height: 1.5;
1289+
white-space: pre-wrap;
1290+
overflow-wrap: break-word;
1291+
color: #333;
1292+
flex: 1;
1293+
}
1294+
1295+
.nvs-issue-row {
1296+
display: flex;
1297+
align-items: center;
1298+
gap: 8px;
1299+
flex-wrap: wrap;
1300+
margin: 4px 0;
1301+
}
1302+
1303+
.nvs-issue-actions {
1304+
display: inline-flex;
1305+
gap: 4px;
1306+
flex-shrink: 0;
1307+
}
1308+
1309+
.nvs-issue-btn {
1310+
padding: 4px 8px;
1311+
font-size: 12px;
1312+
border: 1px solid #c0c0c0;
1313+
border-radius: 4px;
1314+
background: #fafafa;
1315+
color: #333;
1316+
cursor: pointer;
1317+
white-space: nowrap;
1318+
}
1319+
1320+
.nvs-issue-btn:hover {
1321+
background: #f0f0f0;
1322+
border-color: #888;
1323+
}
1324+
1325+
.nvs-issue-delete:hover {
1326+
background: #ffe0e0;
1327+
border-color: #c64141;
1328+
color: #c64141;
1329+
}
1330+
1331+
/* Highlight effect when jumping to entry/page */
1332+
.nvs-row-highlight {
1333+
animation: nvs-flash-row 2.2s ease-out;
1334+
}
1335+
1336+
.nvs-page-highlight {
1337+
animation: nvs-flash-page 2.2s ease-out;
1338+
}
1339+
1340+
@keyframes nvs-flash-row {
1341+
0% { background-color: #fff3a8; }
1342+
100% { background-color: transparent; }
1343+
}
1344+
1345+
@keyframes nvs-flash-page {
1346+
0% { box-shadow: 0 0 0 3px #ffb74d; }
1347+
100% { box-shadow: 0 0 0 0 transparent; }
1348+
}
1349+
12661350
/* Mobile Optimizations */
12671351
@media (max-width: 768px) {
12681352
/* Larger touch targets and better readability */

0 commit comments

Comments
 (0)