mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-25 20:22:37 +01:00
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 {
|
||||
color: red;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.delete-root:before {
|
||||
.delete-root i:before {
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
|
||||
.delete-root:hover {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,9 @@
|
||||
@foreach (var root in Model)
|
||||
{
|
||||
<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>
|
||||
</div>
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user