zed/crates/theme/src
Marshall Bowers 8871fec2a8
Adjust names of negated style methods (#11453)
This PR adjusts the names of the negated style methods by moving the
`neg_` to after the property name instead of before.

This will help keep related style methods grouped together in
completions.

It also makes it a bit clearer that the negation applies to the value.

### Before

```rs
div()
    .neg_mx_1()
    .neg_mt_2()
```

### After

```rs
div()
    .mx_neg_1()
    .mt_neg_2()
```

Release Notes:

- N/A
2024-05-06 13:56:25 -04:00
..
styles Adjust names of negated style methods (#11453) 2024-05-06 13:56:25 -04:00
default_colors.rs themes: Add pane_group.border color (#9986) 2024-04-01 12:07:26 -04:00
default_theme.rs gpui: Add support for window transparency & blur on macOS (#9610) 2024-03-29 11:10:47 -04:00
one_themes.rs themes: Add pane_group.border color (#9986) 2024-04-01 12:07:26 -04:00
prelude.rs Remove 2 suffix for theme 2024-01-03 12:41:01 -08:00
registry.rs gpui: Add support for window transparency & blur on macOS (#9610) 2024-03-29 11:10:47 -04:00
scale.rs Clean up references in doc comments in ui and theme crates (#3985) 2024-01-09 15:22:36 -05:00
schema.rs themes: Add pane_group.border color (#9986) 2024-04-01 12:07:26 -04:00
settings.rs Rust 1.78 (#11314) 2024-05-05 15:02:50 +02:00
styles.rs Remove 2 suffix for theme 2024-01-03 12:41:01 -08:00
theme.rs gpui: Add support for window transparency & blur on macOS (#9610) 2024-03-29 11:10:47 -04:00