mirror of
https://github.com/transmission/transmission
synced 2025-02-22 14:10:34 +00:00
fix: greying out of inspector in webui (#5893)
This commit is contained in:
parent
8873f2a50c
commit
629f7cb86f
2 changed files with 14 additions and 10 deletions
|
@ -311,15 +311,23 @@ $toolbar-height: $toolbar-height-number * 1px;
|
|||
width: $toolbar-height;
|
||||
|
||||
svg {
|
||||
stroke: var(--color-fg-primary); // ios only? idk yet
|
||||
stroke: var(--color-fg-primary);
|
||||
}
|
||||
|
||||
svg g path {
|
||||
fill: var(--color-fg-primary);
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
cursor: default;
|
||||
// opacity: 0.25;
|
||||
|
||||
svg {
|
||||
stroke: var(--color-fg-disabled);
|
||||
}
|
||||
|
||||
svg g path {
|
||||
fill: var(--color-fg-disabled);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -339,12 +347,6 @@ $toolbar-height: $toolbar-height-number * 1px;
|
|||
stroke: var(--color-fg-primary);
|
||||
}
|
||||
|
||||
#toolbar-inspector {
|
||||
svg {
|
||||
color: var(--color-fg-primary);
|
||||
}
|
||||
}
|
||||
|
||||
#toolbar-overflow {
|
||||
margin-right: 4px;
|
||||
|
||||
|
|
|
@ -137,15 +137,17 @@
|
|||
xmlns:xl="http://www.w3.org/1999/xlink"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
viewBox="-1 -1 26 26"
|
||||
fill-opacity="1"
|
||||
stroke="currentColor"
|
||||
fill="none"
|
||||
width="26"
|
||||
height="26"
|
||||
>
|
||||
<g fill-opacity="1" stroke="currentColor" fill="none">
|
||||
<g>
|
||||
<circle
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="12.0000191748228"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
|
|
Loading…
Reference in a new issue