mirror of
https://github.com/maputnik/editor.git
synced 2025-12-25 15:40:00 +00:00
Changed close button from <a> to <button>
This commit is contained in:
@@ -32,12 +32,12 @@ class Modal extends React.Component {
|
||||
<header className="maputnik-modal-header">
|
||||
<h1 className="maputnik-modal-header-title">{this.props.title}</h1>
|
||||
<span className="maputnik-modal-header-space"></span>
|
||||
<a className="maputnik-modal-header-toggle"
|
||||
<button className="maputnik-modal-header-toggle"
|
||||
onClick={() => this.props.onOpenToggle(false)}
|
||||
data-wd-key={this.props["data-wd-key"]+".close-modal"}
|
||||
>
|
||||
<CloseIcon />
|
||||
</a>
|
||||
</button>
|
||||
</header>
|
||||
<div className="maputnik-modal-scroller">
|
||||
<div className="maputnik-modal-content">{this.props.children}</div>
|
||||
|
||||
@@ -43,7 +43,10 @@
|
||||
}
|
||||
|
||||
.maputnik-modal-header-toggle {
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
background: initial;
|
||||
color: white;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.maputnik-modal-scroller {
|
||||
|
||||
Reference in New Issue
Block a user