- Add new libraries: ui-accessibility, ui-animations, ui-backgrounds, ui-code-display, ui-data-utils, ui-font-manager, hcl-studio - Add extensive layout components: gallery-grid, infinite-scroll-container, kanban-board, masonry, split-view, sticky-layout - Add comprehensive demo components for all new features - Update project configuration and dependencies - Expand component exports and routing structure - Add UI landing pages planning document 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
456 B
CSS
35 lines
456 B
CSS
.token.tab:not(:empty),
|
|
.token.cr,
|
|
.token.lf,
|
|
.token.space {
|
|
position: relative;
|
|
}
|
|
|
|
.token.tab:not(:empty):before,
|
|
.token.cr:before,
|
|
.token.lf:before,
|
|
.token.space:before {
|
|
color: #808080;
|
|
opacity: 0.6;
|
|
position: absolute;
|
|
}
|
|
|
|
.token.tab:not(:empty):before {
|
|
content: '\21E5';
|
|
}
|
|
|
|
.token.cr:before {
|
|
content: '\240D';
|
|
}
|
|
|
|
.token.crlf:before {
|
|
content: '\240D\240A';
|
|
}
|
|
.token.lf:before {
|
|
content: '\240A';
|
|
}
|
|
|
|
.token.space:before {
|
|
content: '\00B7';
|
|
}
|