allow word breaking in labels

This commit is contained in:
Gani Georgiev
2026-05-23 22:38:37 +03:00
parent 3d3d3b7355
commit db853850ab
7 changed files with 9 additions and 7 deletions
+2
View File
@@ -2,6 +2,8 @@
- Fixed logs bulk selection export. - Fixed logs bulk selection export.
- Other minor UI improvements (allow word breaking in labels, etc.).
## v0.38.2 ## v0.38.2
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -13,9 +13,9 @@
<!-- prism --> <!-- prism -->
<script src="./libs/prism/prism.js" data-manual></script> <script src="./libs/prism/prism.js" data-manual></script>
<script type="module" crossorigin src="./assets/index-GZvwkYso.js"></script> <script type="module" crossorigin src="./assets/index-1u9sxa_M.js"></script>
<link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js"> <link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js">
<link rel="stylesheet" crossorigin href="./assets/index-Cbzik3Gc.css"> <link rel="stylesheet" crossorigin href="./assets/index-ePwHvxbV.css">
</head> </head>
<body> <body>
</body> </body>
+1 -1
View File
@@ -975,7 +975,7 @@ hr {
min-width: 0; min-width: 0;
min-height: 25px; min-height: 25px;
font-weight: normal; font-weight: normal;
word-break: normal; word-break: break-word;
text-decoration: none; text-decoration: none;
font-size: var(--smFontSize); font-size: var(--smFontSize);
line-height: calc(var(--smFontSize) + 2px); line-height: calc(var(--smFontSize) + 2px);
+3
View File
@@ -262,6 +262,9 @@
.field-type-editor { .field-type-editor {
&.record-field-view { &.record-field-view {
width: 100%; width: 100%;
.record-summary & {
width: auto;
}
} }
&.record-field-input { &.record-field-input {
/* fixed size to minimize flickering */ /* fixed size to minimize flickering */
-3
View File
@@ -404,9 +404,6 @@ table {
.col-copy { .col-copy {
display: none; display: none;
} }
.label {
word-break: break-word;
}
td, td,
th { th {
display: block; display: block;