mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixed Remove Root Dir issue in Chrome
This commit is contained in:
@@ -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>
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user