Skip to content

Commit

Permalink
Release: 8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shigure92 committed Nov 18, 2024
1 parent afda5bb commit b9c591a
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MDB5
Version: FREE 8.0.0
Version: FREE 8.1.0

Documentation:
https://mdbootstrap.com/docs/standard/
Expand Down
4 changes: 2 additions & 2 deletions css/mdb.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/mdb.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions css/mdb.rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/mdb.umd.min.js

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
@@ -1,6 +1,6 @@
{
"name": "mdb-ui-kit",
"version": "8.0.0",
"version": "8.1.0",
"type": "module",
"main": "./js/mdb.umd.min.js",
"module": "./js/mdb.es.min.js",
Expand Down
10 changes: 10 additions & 0 deletions src/scss/free/_list-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
--#{$prefix}list-group-item-transition-time: #{$list-group-item-transition-time};
}

.list-group-item {
--#{$prefix}list-group-item-active-margin-top: #{$list-group-active-margin-top};

& + .list-group-item {
&.active {
margin-top: var(--#{$prefix}list-group-item-active-margin-top);
}
}
}

.list-group-item-action {
transition: var(--#{$prefix}list-group-item-transition-time);

Expand Down
1 change: 1 addition & 0 deletions src/scss/free/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1602,6 +1602,7 @@ $list-group-light-active-border-radius: 0.5rem !default;
$list-group-light-active-bg: var(--#{$prefix}primary-bg-subtle) !default;
$list-group-light-active-color: var(--#{$prefix}primary-text-emphasis) !default;

$list-group-active-margin-top: 0 !default;
$list-group-small-item-py: 0.5rem !default;
// scss-docs-end list-group-variables

Expand Down
8 changes: 4 additions & 4 deletions src/scss/free/forms/_input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,17 @@ TEXTAREA {
animation-name: onautofillstart;

-webkit-background-clip: text;
box-shadow: inset 0 0 20px 20px white;
-webkit-box-shadow: 0 0 20px 20px white inset !important;
box-shadow: inset 0 0 20px 20px var(--#{$prefix}body-bg);
-webkit-box-shadow: 0 0 20px 20px var(--#{$prefix}body-bg) inset !important;

&:hover,
&:focus,
&:active {
animation-name: onautofillstart;

-webkit-background-clip: text;
box-shadow: inset 0 0 20px 20px white;
-webkit-box-shadow: 0 0 20px 20px white inset !important;
box-shadow: inset 0 0 20px 20px var(--#{$prefix}body-bg);
-webkit-box-shadow: 0 0 20px 20px var(--#{$prefix}body-bg) inset !important;
}
}

Expand Down

0 comments on commit b9c591a

Please sign in to comment.