| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 146 } |
| 147 #col-slow | 147 #col-slow |
| 148 { | 148 { |
| 149 min-width: 30px; | 149 min-width: 30px; |
| 150 } | 150 } |
| 151 | 151 |
| 152 /* | 152 /* |
| 153 * Force left-to-right for filter text but not comments | 153 * Force left-to-right for filter text but not comments |
| 154 */ | 154 */ |
| 155 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-invalid), | 155 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-invalid), |
| 156 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-blocking), |
| 156 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-whitelist), | 157 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-whitelist), |
| 157 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-filterlist), | |
| 158 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhide), | 158 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhide), |
| 159 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhideexcep
tion) | 159 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhideexcep
tion), |
| 160 treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-cssproperty) |
| 160 { | 161 { |
| 161 direction: ltr; | 162 direction: ltr; |
| 162 text-align: end; | 163 text-align: end; |
| 163 } | 164 } |
| 164 | 165 |
| 165 treechildren::-moz-tree-cell-text(col-filter, dummy-true) | 166 treechildren::-moz-tree-cell-text(col-filter, dummy-true) |
| 166 { | 167 { |
| 167 font-style: italic; | 168 font-style: italic; |
| 168 } | 169 } |
| 169 | 170 |
| 170 treechildren::-moz-tree-cell-text(col-filter, type-whitelist, selected-false), | 171 treechildren::-moz-tree-cell-text(col-filter, type-whitelist, selected-false), |
| 171 treechildren::-moz-tree-cell-text(col-filter, type-elemhideexception, selected-f
alse) | 172 treechildren::-moz-tree-cell-text(col-filter, type-elemhideexception, selected-f
alse) |
| 172 { | 173 { |
| 173 color: #008000; | 174 color: #008000; |
| 174 } | 175 } |
| 175 | 176 |
| 176 treechildren::-moz-tree-cell-text(col-filter, type-elemhide, selected-false) | 177 treechildren::-moz-tree-cell-text(col-filter, type-elemhide, selected-false), |
| 178 treechildren::-moz-tree-cell-text(col-filter, type-cssproperty, selected-false) |
| 177 { | 179 { |
| 178 color: #000080; | 180 color: #000080; |
| 179 } | 181 } |
| 180 | 182 |
| 181 treechildren::-moz-tree-cell-text(col-slow) | 183 treechildren::-moz-tree-cell-text(col-slow) |
| 182 { | 184 { |
| 183 font-size: 0px; | 185 font-size: 0px; |
| 184 } | 186 } |
| 185 | 187 |
| 186 treechildren::-moz-tree-cell-text(col-filter, disabled-true, selected-false) | 188 treechildren::-moz-tree-cell-text(col-filter, disabled-true, selected-false) |
| (...skipping 25 matching lines...) Expand all Loading... |
| 212 | 214 |
| 213 treechildren::-moz-tree-image(col-slow, slow-true) | 215 treechildren::-moz-tree-image(col-slow, slow-true) |
| 214 { | 216 { |
| 215 list-style-image: url(slow.png); | 217 list-style-image: url(slow.png); |
| 216 } | 218 } |
| 217 | 219 |
| 218 .findbar-highlight | 220 .findbar-highlight |
| 219 { | 221 { |
| 220 display: none; | 222 display: none; |
| 221 } | 223 } |
| OLD | NEW |