feat: Io module optimize

This commit is contained in:
sthag 2025-06-22 17:41:31 +02:00
parent 8ffc1b8346
commit 36919cae47
2 changed files with 22 additions and 37 deletions

View file

@ -152,7 +152,7 @@ aside {
ul.vertical li { ul.vertical li {
margin-bottom: $space_half; margin-bottom: $space_half;
.a_button > *:last-child { .a_button>i:last-child {
margin-left: auto; margin-left: auto;
} }
} }
@ -263,22 +263,14 @@ footer {
nav { nav {
@extend %flex-inline; @extend %flex-inline;
align-items: stretch; align-items: stretch;
}
input { input,
@extend .input_io; select,
} button,
span,
textarea { div:not(.spacer) {
@extend .io_textarea; padding: 0 $space_half !important;
} }
select {
@extend .io_select;
}
button {
@extend .button_io;
} }
} }
} }

View file

@ -14,14 +14,19 @@ footer {
} }
.a_button { .a_button {
color: $color_text_io; @extend .button_io;
background-color: $color_back_io;
&:active,
&:focus,
&:hover {
background-color: transparentize($color_highlight_basic, 0.8);
} }
input {
@extend .input_io;
}
select {
@extend .io_select;
}
button {
@extend .button_io;
} }
} }
} }
@ -38,21 +43,9 @@ aside {
margin-inline: $space_half; margin-inline: $space_half;
} }
input {
@extend .input_io;
}
textarea { textarea {
@extend .io_textarea; @extend .io_textarea;
} }
select {
@extend .io_select;
}
button {
@extend .button_io;
}
} }
} }