Mini correções

pull/1488/head
Fabioomega 2024-03-14 19:50:04 -03:00
rodzic a16fd9a793
commit 97e9ec2a92
2 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -67,6 +67,16 @@
.name-input { .name-input {
width: 100%; width: 100%;
$place-holder-opacity: 0.4;
&::placeholder {
opacity: $place-holder-opacity;
}
&::-ms-input-placeholder {
opacity: $place-holder-opacity;
}
} }
.data-input { .data-input {

Wyświetl plik

@ -33,7 +33,8 @@ class ContoursButton extends React.Component {
return (<div className={showPanel ? "open" : ""}> return (<div className={showPanel ? "open" : ""}>
<a href="javascript:void(0);" <a href="javascript:void(0);"
onClick={this.handleOpen} onClick={this.handleOpen}
className="leaflet-control-contours-button leaflet-bar-part theme-secondary"></a> className="leaflet-control-contours-button leaflet-bar-part theme-secondary"
title="Contours"></a>
<ContoursPanel map={this.props.map} isShowed={showPanel} tasks={this.props.tasks} onClose={this.handleClose} /> <ContoursPanel map={this.props.map} isShowed={showPanel} tasks={this.props.tasks} onClose={this.handleClose} />
</div>); </div>);
} }