mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 07:12:26 +02:00
N°3023 - Portal: Fix filter brick input not working in IE11
This commit is contained in:
@@ -1014,6 +1014,9 @@ table .group-actions {
|
|||||||
/****************/
|
/****************/
|
||||||
/* Filter brick */
|
/* Filter brick */
|
||||||
/****************/
|
/****************/
|
||||||
|
.tile.tile-filter-brick .tile_decoration .icon {
|
||||||
|
color: #da7014;
|
||||||
|
}
|
||||||
.tile.tile-filter-brick .tile_filterbox .form-group:first-child {
|
.tile.tile-filter-brick .tile_filterbox .form-group:first-child {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1077,6 +1077,10 @@ table .group-actions .item-action-wrapper .panel-body > p:last-child{
|
|||||||
/****************/
|
/****************/
|
||||||
/* Filter brick */
|
/* Filter brick */
|
||||||
/****************/
|
/****************/
|
||||||
|
.tile.tile-filter-brick .tile_decoration .icon {
|
||||||
|
color: $link-color;
|
||||||
|
}
|
||||||
|
|
||||||
.tile.tile-filter-brick .tile_filterbox .form-group:first-child{
|
.tile.tile-filter-brick .tile_filterbox .form-group:first-child{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<div class="col-xs-12 col-sm-{{ brick.GetWidth }}">
|
<div class="col-xs-12 col-sm-{{ brick.GetWidth }}">
|
||||||
{% block pTileWrapper %}
|
{% block pTileWrapper %}
|
||||||
<a href="#" class="tile tile-filter-brick" id="brick-{{ brick.GetId }}" data-brick-id="{{ brick.GetId }}">
|
<div class="tile tile-filter-brick" id="brick-{{ brick.GetId }}" data-brick-id="{{ brick.GetId }}">
|
||||||
<div class="tile_decoration">
|
<div class="tile_decoration">
|
||||||
<span class="icon {{ brick.GetDecorationClassHome }}"></span>
|
<span class="icon {{ brick.GetDecorationClassHome }}"></span>
|
||||||
|
|
||||||
@@ -32,17 +32,6 @@
|
|||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(document).ready(function(){
|
|
||||||
// Preventing click on tile to scroll up
|
|
||||||
$('#brick-{{ brick.GetId }}').on('click', function(oEvent){
|
|
||||||
if(oEvent.target.type !== 'submit'){
|
|
||||||
oEvent.preventDefault();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
Reference in New Issue
Block a user