| 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | |
| 5 | dialog { |
| 6 | -moz-appearance: none; |
| 7 | background-color: #000000; |
| 8 | font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; |
| 9 | color: #FF9F00; |
| 10 | overflow-y: scroll; |
| 11 | } |
| 12 | |
| 13 | .header-name { |
| 14 | font-size: 1.5rem; |
| 15 | font-weight: normal; |
| 16 | margin: 15px 0; |
| 17 | } |
| 18 | |
| 19 | richlistbox { |
| 20 | -moz-appearance: none; |
| 21 | overflow-y: auto; |
| 22 | border: 1px solid #9C9CFF; |
| 23 | } |
| 24 | |
| 25 | richlistitem { |
| 26 | padding: 6px 0; |
| 27 | } |
| 28 | |
| 29 | richlistitem:not([selected="true"]):hover { |
| 30 | background-color: rgba(255,204,0,0.04); |
| 31 | } |
| 32 | |
| 33 | richlistitem > vbox > label { |
| 34 | margin: 0; |
| 35 | font-size: 1.1em; |
| 36 | } |
| 37 | |
| 38 | richlistbox > description { |
| 39 | margin: 8px; |
| 40 | } |
| 41 | |
| 42 | richlistitem { |
| 43 | -moz-box-align: start; |
| 44 | } |
| 45 | |
| 46 | richlistitem > image { |
| 47 | height: 24px; |
| 48 | width: 24px; |
| 49 | margin: 0 6px; |
| 50 | } |
| 51 | |
| 52 | textbox { |
| 53 | font-size: 1.2rem; |
| 54 | } |