mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-02-06 23:00:39 +03:00
fixed modal backdrop
This commit is contained in:
parent
84544a4ca1
commit
c0281c21cd
5
dist/css/material-wfont.css
vendored
5
dist/css/material-wfont.css
vendored
|
@ -5404,7 +5404,7 @@ icon-material-lightgrey {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.modal-backdrop {
|
.modal-backdrop {
|
||||||
display: none;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
.label {
|
.label {
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
|
@ -5570,9 +5570,6 @@ icon-material-lightgrey {
|
||||||
.panel-footer {
|
.panel-footer {
|
||||||
background-color: #ececec;
|
background-color: #ececec;
|
||||||
}
|
}
|
||||||
.modal {
|
|
||||||
background: rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
* {
|
* {
|
||||||
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
|
2
dist/css/material-wfont.css.map
vendored
2
dist/css/material-wfont.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/material-wfont.min.css
vendored
2
dist/css/material-wfont.min.css
vendored
File diff suppressed because one or more lines are too long
5
dist/css/material.css
vendored
5
dist/css/material.css
vendored
|
@ -5380,7 +5380,7 @@ icon-material-lightgrey {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.modal-backdrop {
|
.modal-backdrop {
|
||||||
display: none;
|
background: rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
.label {
|
.label {
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
|
@ -5546,9 +5546,6 @@ icon-material-lightgrey {
|
||||||
.panel-footer {
|
.panel-footer {
|
||||||
background-color: #ececec;
|
background-color: #ececec;
|
||||||
}
|
}
|
||||||
.modal {
|
|
||||||
background: rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
* {
|
* {
|
||||||
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
|
2
dist/css/material.css.map
vendored
2
dist/css/material.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/material.min.css
vendored
2
dist/css/material.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,39 +1,39 @@
|
||||||
.modal-content {
|
.modal-content {
|
||||||
.shadow-z-5();
|
.shadow-z-5();
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border: none;
|
border: none;
|
||||||
.modal-header {
|
.modal-header {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
padding: 24px;
|
padding: 24px;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.modal-body {
|
||||||
|
padding: 24px;
|
||||||
|
}
|
||||||
|
.modal-footer {
|
||||||
|
border-top: none;
|
||||||
|
padding: 24px;
|
||||||
|
button {
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 16px;
|
||||||
|
padding-right: 16px;
|
||||||
|
width: auto;
|
||||||
|
&.pull-left {
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
|
position: relative;
|
||||||
|
left: -5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.modal-body {
|
button+button {
|
||||||
padding: 24px;
|
margin-bottom: 16px;
|
||||||
}
|
|
||||||
.modal-footer {
|
|
||||||
border-top: none;
|
|
||||||
padding: 24px;
|
|
||||||
button {
|
|
||||||
margin: 0;
|
|
||||||
padding-left: 16px;
|
|
||||||
padding-right: 16px;
|
|
||||||
width: auto;
|
|
||||||
&.pull-left {
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-right: 5px;
|
|
||||||
position: relative;
|
|
||||||
left: -5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
button+button {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.modal-body + .modal-footer {
|
|
||||||
padding-top: 0;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
.modal-body + .modal-footer {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-backdrop {
|
.modal-backdrop {
|
||||||
display: none;
|
background: rgba(0,0,0,0.3);
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,10 +105,6 @@ legend {
|
||||||
|
|
||||||
@import "_panels.less";
|
@import "_panels.less";
|
||||||
|
|
||||||
.modal {
|
|
||||||
background: rgba(0,0,0,0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Prevent highlight on mobile
|
// Prevent highlight on mobile
|
||||||
* {
|
* {
|
||||||
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user