The bead description mentioned compile errors in hash.rs from API drift, but those errors were either already fixed or misattributed. The API usage was already correct: - compute_fingerprint already takes 3 arguments with source - len() already propagates Result with ? - read_at method already used correctly - Catalog fields accessed via trailer correctly Only cleanup: removed unused std::fs::File and std::io imports. Verification: notes/bf-4mkhv.md
55 lines
789 B
CSS
55 lines
789 B
CSS
/* pdftract inspector UI styles (stub) */
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
line-height: 1.5;
|
|
color: #333;
|
|
}
|
|
|
|
#app {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 1px solid #ccc;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
header p {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#viewer {
|
|
min-height: 400px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.placeholder {
|
|
color: #999;
|
|
text-align: center;
|
|
padding: 40px;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 20px;
|
|
padding-top: 10px;
|
|
border-top: 1px solid #ccc;
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
}
|