Fixed Remove Root Dir issue in Chrome
This commit is contained in:
parent
57206b7cee
commit
c616d0cd84
|
@ -202,13 +202,12 @@ button span, input[type="button"] span, input[type="submit"] span, input[type="r
|
||||||
|
|
||||||
.delete-root {
|
.delete-root {
|
||||||
color: red;
|
color: red;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.delete-root:before {
|
.delete-root i:before {
|
||||||
vertical-align: middle !important;
|
vertical-align: middle !important;
|
||||||
}
|
|
||||||
|
|
||||||
.delete-root:hover {
|
|
||||||
cursor: pointer !important;
|
cursor: pointer !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
@foreach (var root in Model)
|
@foreach (var root in Model)
|
||||||
{
|
{
|
||||||
<div class="actionButton delete">
|
<div class="actionButton delete">
|
||||||
<i class="icon-remove icon-large delete-root" data-path="@root"></i>
|
<div class="delete-root" data-path="@root">
|
||||||
|
<i class="icon-remove icon-large"></i>
|
||||||
|
</div>
|
||||||
<span>@root</span>
|
<span>@root</span>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue