mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-06 01:22:44 +00:00
Fix display property on dialog causing close() to not work
This commit is contained in:
@@ -8,7 +8,6 @@
|
|||||||
|
|
||||||
.notificationPopup{
|
.notificationPopup{
|
||||||
position : relative;
|
position : relative;
|
||||||
display : inline-block;
|
|
||||||
width : 100%;
|
width : 100%;
|
||||||
padding : 15px;
|
padding : 15px;
|
||||||
padding-bottom : 10px;
|
padding-bottom : 10px;
|
||||||
@@ -16,6 +15,10 @@
|
|||||||
background-color : @blue;
|
background-color : @blue;
|
||||||
color : white;
|
color : white;
|
||||||
border : none;
|
border : none;
|
||||||
|
&[open]{
|
||||||
|
// Do NOT set a display property on a dialog! Set it on dialog[open] instead
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
a{
|
a{
|
||||||
color : #e0e5c1;
|
color : #e0e5c1;
|
||||||
font-weight : 800;
|
font-weight : 800;
|
||||||
|
|||||||
Reference in New Issue
Block a user