| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
| 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
| 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
| 5 | <svg xmlns="http://www.w3.org/2000/svg" |
| 6 | xmlns:xlink="http://www.w3.org/1999/xlink" |
| 7 | width="16" height="16" viewBox="0 0 16 16"> |
| 8 | <style> |
| 9 | .fieldtext { |
| 10 | fill: #FF9F00; |
| 11 | } |
| 12 | |
| 13 | .highlighttext { |
| 14 | fill: #FFCF00; |
| 15 | } |
| 16 | |
| 17 | .black { |
| 18 | fill: #FFCF00; |
| 19 | } |
| 20 | |
| 21 | .white { |
| 22 | fill: #FFCF00; |
| 23 | } |
| 24 | </style> |
| 25 | <style> |
| 26 | use:not(:target) { |
| 27 | display: none; |
| 28 | } |
| 29 | use[id$="-disabled"] { |
| 30 | fill: #8050B0; |
| 31 | } |
| 32 | use[id$="-active"] { |
| 33 | fill: #000000; |
| 34 | } |
| 35 | </style> |
| 36 | <defs> |
| 37 | <polygon id="arrow-shape" |
| 38 | points="5,3.5 6.5,2 12.375,8 6.5,14 5,12.5 9.375,8"/> |
| 39 | </defs> |
| 40 | <use id="arrow" class="highlighttext" xlink:href="#arrow-shape"/> |
| 41 | <use id="arrow-disabled" xlink:href="#arrow-shape"/> |
| 42 | <use id="arrow-active" xlink:href="#arrow-shape"/> |
| 43 | </svg> |