Skip to content

Commit b9c591a

Browse files
committedNov 18, 2024
Release: 8.1.0
1 parent afda5bb commit b9c591a

9 files changed

+23
-12
lines changed
 

‎README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MDB5
2-
Version: FREE 8.0.0
2+
Version: FREE 8.1.0
33

44
Documentation:
55
https://mdbootstrap.com/docs/standard/

‎css/mdb.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/mdb.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/mdb.rtl.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎js/mdb.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdb-ui-kit",
3-
"version": "8.0.0",
3+
"version": "8.1.0",
44
"type": "module",
55
"main": "./js/mdb.umd.min.js",
66
"module": "./js/mdb.es.min.js",

‎src/scss/free/_list-group.scss

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66
--#{$prefix}list-group-item-transition-time: #{$list-group-item-transition-time};
77
}
88

9+
.list-group-item {
10+
--#{$prefix}list-group-item-active-margin-top: #{$list-group-active-margin-top};
11+
12+
& + .list-group-item {
13+
&.active {
14+
margin-top: var(--#{$prefix}list-group-item-active-margin-top);
15+
}
16+
}
17+
}
18+
919
.list-group-item-action {
1020
transition: var(--#{$prefix}list-group-item-transition-time);
1121

‎src/scss/free/_variables.scss

+1
Original file line numberDiff line numberDiff line change
@@ -1602,6 +1602,7 @@ $list-group-light-active-border-radius: 0.5rem !default;
16021602
$list-group-light-active-bg: var(--#{$prefix}primary-bg-subtle) !default;
16031603
$list-group-light-active-color: var(--#{$prefix}primary-text-emphasis) !default;
16041604

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

‎src/scss/free/forms/_input-group.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -133,17 +133,17 @@ TEXTAREA {
133133
animation-name: onautofillstart;
134134

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

139139
&:hover,
140140
&:focus,
141141
&:active {
142142
animation-name: onautofillstart;
143143

144144
-webkit-background-clip: text;
145-
box-shadow: inset 0 0 20px 20px white;
146-
-webkit-box-shadow: 0 0 20px 20px white inset !important;
145+
box-shadow: inset 0 0 20px 20px var(--#{$prefix}body-bg);
146+
-webkit-box-shadow: 0 0 20px 20px var(--#{$prefix}body-bg) inset !important;
147147
}
148148
}
149149

0 commit comments

Comments
 (0)
Please sign in to comment.