Detailed changes
@@ -603,7 +603,11 @@ impl Item for Editor {
Color::Muted
}))
.when_some(description, |this, description| {
- this.child(Label::new(description).color(Color::Muted))
+ this.child(
+ Label::new(description)
+ .size(LabelSize::XSmall)
+ .color(Color::Muted),
+ )
})
.into_any_element()
}
@@ -172,7 +172,7 @@ impl RenderOnce for Button {
Label::new(label)
.color(label_color)
.size(self.label_size.unwrap_or_default())
- .line_height_style(LineHeightStyle::UILabel),
+ .line_height_style(LineHeightStyle::UiLabel),
)
.when(!self.icon_position.is_some(), |this| {
this.children(self.icon.map(|icon| {
@@ -122,7 +122,7 @@ impl RenderOnce for ToggleButton {
.child(
Label::new(self.label)
.color(label_color)
- .line_height_style(LineHeightStyle::UILabel),
+ .line_height_style(LineHeightStyle::UiLabel),
)
}
}
@@ -8,14 +8,15 @@ pub enum LabelSize {
#[default]
Default,
Small,
+ XSmall,
}
#[derive(Default, PartialEq, Copy, Clone)]
pub enum LineHeightStyle {
#[default]
TextLabel,
- /// Sets the line height to 1
- UILabel,
+ /// Sets the line height to 1.
+ UiLabel,
}
pub trait LabelCommon {
@@ -92,8 +93,9 @@ impl RenderOnce for LabelLike {
.map(|this| match self.size {
LabelSize::Default => this.text_ui(),
LabelSize::Small => this.text_ui_sm(),
+ LabelSize::XSmall => this.text_ui_xs(),
})
- .when(self.line_height_style == LineHeightStyle::UILabel, |this| {
+ .when(self.line_height_style == LineHeightStyle::UiLabel, |this| {
this.line_height(relative(1.))
})
.text_color(self.color.color(cx))
@@ -3,7 +3,7 @@ use settings::Settings;
use theme::ThemeSettings;
use crate::prelude::*;
-use crate::{ElevationIndex, UITextSize};
+use crate::{ElevationIndex, UiTextSize};
fn elevated<E: Styled>(this: E, cx: &mut WindowContext, index: ElevationIndex) -> E {
this.bg(cx.theme().colors().elevated_surface_background)
@@ -44,10 +44,8 @@ pub trait StyledExt: Styled + Sized {
self.flex().flex_col()
}
- fn text_ui_size(self, size: UITextSize) -> Self {
- let size = size.rems();
-
- self.text_size(size)
+ fn text_ui_size(self, size: UiTextSize) -> Self {
+ self.text_size(size.rems())
}
/// The default size for UI text.
@@ -58,9 +56,7 @@ pub trait StyledExt: Styled + Sized {
///
/// Use [`text_ui_sm`] for regular-sized text.
fn text_ui(self) -> Self {
- let size = UITextSize::default().rems();
-
- self.text_size(size)
+ self.text_size(UiTextSize::default().rems())
}
/// The small size for UI text.
@@ -71,9 +67,18 @@ pub trait StyledExt: Styled + Sized {
///
/// Use [`text_ui`] for regular-sized text.
fn text_ui_sm(self) -> Self {
- let size = UITextSize::Small.rems();
+ self.text_size(UiTextSize::Small.rems())
+ }
- self.text_size(size)
+ /// The extra small size for UI text.
+ ///
+ /// `0.625rem` or `10px` at the default scale of `1rem` = `16px`.
+ ///
+ /// Note: The absolute size of this text will change based on a user's `ui_scale` setting.
+ ///
+ /// Use [`text_ui`] for regular-sized text.
+ fn text_ui_xs(self) -> Self {
+ self.text_size(UiTextSize::XSmall.rems())
}
/// The font size for buffer text.
@@ -1,7 +1,7 @@
use gpui::{rems, Rems};
#[derive(Debug, Default, Clone)]
-pub enum UITextSize {
+pub enum UiTextSize {
/// The default size for UI text.
///
/// `0.825rem` or `14px` at the default scale of `1rem` = `16px`.
@@ -15,13 +15,21 @@ pub enum UITextSize {
///
/// Note: The absolute size of this text will change based on a user's `ui_scale` setting.
Small,
+
+ /// The extra small size for UI text.
+ ///
+ /// `0.625rem` or `10px` at the default scale of `1rem` = `16px`.
+ ///
+ /// Note: The absolute size of this text will change based on a user's `ui_scale` setting.
+ XSmall,
}
-impl UITextSize {
+impl UiTextSize {
pub fn rems(self) -> Rems {
match self {
- Self::Default => rems(0.875),
- Self::Small => rems(0.75),
+ Self::Default => rems(14. / 16.),
+ Self::Small => rems(12. / 16.),
+ Self::XSmall => rems(10. / 16.),
}
}
}