diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-15 10:03:15 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-15 10:03:15 +0700 |
| commit | 8e424c716390ccf41221c526df8d7d5f44152ba1 (patch) | |
| tree | 5e5f92c64475446215599d51c93c647700af826e | |
| parent | 95cbbe49df3ef8091341fbb5c2f4b5003643dc9a (diff) | |
| download | pakakeh.ts-8e424c716390ccf41221c526df8d7d5f44152ba1.tar.xz | |
vfs: set the crumb style without wrap
In case the directory is too long, the name can span multiline, break
automatically by browser and overlap with previous crumbs.
| -rw-r--r-- | vfs/vfs.ts | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -195,6 +195,7 @@ class WuiVfsPath { this.el.style.borderColor = "silver"; this.el.style.overflow = "auto"; this.el.style.padding = "10px 10px 20px 0px"; + this.el.style.whiteSpace = "nowrap"; this.onClick = onClick; } |
