feat: Add and rename common

- New size_io_button placeholder
- Remove variants of basic typo placeholder
This commit is contained in:
sthag 2025-06-22 15:47:18 +02:00
parent b7ec209761
commit c7179c7a3d
4 changed files with 9 additions and 12 deletions

View file

@ -154,7 +154,7 @@ button {
} }
.button_io { .button_io {
@extend %basic_button; @extend %basic;
border: $width_border_io solid $color_border_button; border: $width_border_io solid $color_border_button;
padding: $padding_basic; padding: $padding_basic;
color: $color_text_button; color: $color_text_button;
@ -164,7 +164,7 @@ button {
// border-color: #0059F6; // border-color: #0059F6;
border-color: transparent; border-color: transparent;
color: white; color: white;
background-color: $foxtrot_color; background-color: $color_action_basic;
} }
&[disabled="disabled"], &[disabled="disabled"],
@ -179,7 +179,7 @@ button {
} }
.button_clear { .button_clear {
@extend %basic_button; @extend %basic;
padding: 0; padding: 0;
border: 0; border: 0;
background-color: transparent; background-color: transparent;

View file

@ -276,7 +276,7 @@ span {
} }
.span_solo { .span_solo {
@extend %solo; @extend %basic;
} }
// Linebreaks // Linebreaks

View file

@ -20,6 +20,11 @@
} }
} }
%size_io_button {
border: $width_border_io solid transparent;
padding: $padding_basic;
}
.di_none { .di_none {
display: none !important; display: none !important;
} }

View file

@ -44,14 +44,6 @@
font-weight: 300; font-weight: 300;
} }
%basic_button {
@extend %basic;
}
%solo {
@extend %basic;
}
%short { %short {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;