@floegence/floe-webapp-core 0.35.45 → 0.35.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/notes/NotesBoardNote.js +65 -64
- package/dist/components/notes/NotesOverlay.js +19 -19
- package/dist/components/notes/useNotesOverlayModel.d.ts +1 -0
- package/dist/components/notes/useNotesOverlayModel.js +327 -299
- package/dist/notes-legacy.css +10 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/notes-legacy.css
CHANGED
|
@@ -1209,12 +1209,16 @@
|
|
|
1209
1209
|
}
|
|
1210
1210
|
|
|
1211
1211
|
.notes-trash-note__body {
|
|
1212
|
-
|
|
1212
|
+
display: flex;
|
|
1213
|
+
flex: 1 1 auto;
|
|
1214
|
+
min-height: 0;
|
|
1215
|
+
overflow: hidden;
|
|
1213
1216
|
padding: 0.18rem 0.78rem 0.65rem;
|
|
1214
1217
|
}
|
|
1215
1218
|
|
|
1216
1219
|
.notes-trash-note__body span {
|
|
1217
1220
|
display: -webkit-box;
|
|
1221
|
+
width: 100%;
|
|
1218
1222
|
overflow: hidden;
|
|
1219
1223
|
color: color-mix(in srgb, var(--notes-ink) 92%, black 8%);
|
|
1220
1224
|
font-size: 0.83rem;
|
|
@@ -1239,6 +1243,7 @@
|
|
|
1239
1243
|
|
|
1240
1244
|
.notes-trash-note__actions {
|
|
1241
1245
|
display: flex;
|
|
1246
|
+
flex-shrink: 0;
|
|
1242
1247
|
gap: 0.35rem;
|
|
1243
1248
|
padding: 0 0.72rem 0.72rem;
|
|
1244
1249
|
margin-top: auto;
|
|
@@ -1246,6 +1251,9 @@
|
|
|
1246
1251
|
|
|
1247
1252
|
.notes-trash-note__actions button {
|
|
1248
1253
|
flex: 1;
|
|
1254
|
+
display: inline-flex;
|
|
1255
|
+
align-items: center;
|
|
1256
|
+
justify-content: center;
|
|
1249
1257
|
min-width: 0;
|
|
1250
1258
|
padding: 0.44rem 0.1rem;
|
|
1251
1259
|
cursor: pointer;
|
|
@@ -1253,6 +1261,7 @@
|
|
|
1253
1261
|
color: color-mix(in srgb, var(--foreground) 84%, var(--muted-foreground));
|
|
1254
1262
|
font-size: 0.68rem;
|
|
1255
1263
|
font-weight: 650;
|
|
1264
|
+
white-space: nowrap;
|
|
1256
1265
|
transition:
|
|
1257
1266
|
transform 140ms ease,
|
|
1258
1267
|
color 140ms ease,
|