Skip to content

Commit 8774e25

Browse files
committed
Add presize API to <perspective-viewer>
Signed-off-by: Andrew Stein <steinlink@gmail.com>
1 parent b0ee116 commit 8774e25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1761
-1145
lines changed

rust/perspective-client/src/rust/config/expressions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl Expressions {
251251
}
252252

253253
#[doc(hidden)]
254-
#[derive(Serialize, Clone, Copy)]
254+
#[derive(Serialize, Clone, Copy, PartialEq)]
255255
pub struct CompletionItemSuggestion {
256256
pub label: &'static str,
257257
pub insert_text: &'static str,

rust/perspective-viewer/src/less/viewer.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@
314314
&:before {
315315
display: inline-block;
316316
height: 20px;
317+
min-height: 20px;
317318
width: 20px;
319+
min-width: 20px;
318320
content: "";
319321
mask-size: cover;
320322
-webkit-mask-size: cover;
@@ -351,7 +353,9 @@
351353
&:before {
352354
display: inline-block;
353355
height: 20px;
356+
min-height: 20px;
354357
width: 20px;
358+
min-width: 20px;
355359
content: "";
356360
mask-size: cover;
357361
-webkit-mask-size: cover;

0 commit comments

Comments
 (0)