Skip to content

Commit

Permalink
19.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Nov 5, 2024
1 parent cb162fc commit 9eff819
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## November 5, 2024 19.0.5
* Fix `input-group()` layout.

## October 23, 2024 19.0.4
* Reduce the level of detail of the inter-element margins in `set-between-content-level()`.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"node": "20.11.1"
},
"name": "sass-basis",
"version": "19.0.4",
"version": "19.0.5",
"main": "src/css/basis.scss",
"author": "inc2734",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion src/css/basis.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Name: Basis v19.0.4
* Name: Basis v19.0.5
* Description: A lightweight responsive Sass/CSS framework based on flexible box.
* Author: Takashi Kitajima ( inc2734 )
* Author URL: https://2inc.org
Expand Down
28 changes: 19 additions & 9 deletions src/css/core/abstract/_input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,30 @@ Abstract input group component
display: flex;
flex: 1;

> input[type='email'],
> input[type='number'],
> input[type='password'],
> input[type='search'],
> input[type='tel'],
> input[type='text'],
> input[type='url'] {
> input {
appearance: none;
flex: 1 1 0%;
width: 100%;
@include form-control();
}

&:first-child:not(:last-child) {
> input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}

&:last-child:not(:first-child) {
> input {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}

& {
--_border-radius: 0;
&:not(:first-child):not(:last-child) {
> input {
border-radius: 0;
}
}
}
Expand Down

0 comments on commit 9eff819

Please sign in to comment.