| LEFT | RIGHT |
| 1 * | 1 * |
| 2 { | 2 { |
| 3 font-family: 'Lucida Grande', 'Segoe UI', Ubuntu, Tahoma, Arial, sans-serif; | 3 font-family: 'Lucida Grande', 'Segoe UI', Ubuntu, Tahoma, Arial, sans-serif; |
| 4 font-size: 11px; | 4 font-size: 11px; |
| 5 box-sizing: border-box; | 5 box-sizing: border-box; |
| 6 } | 6 } |
| 7 | 7 |
| 8 html | 8 html |
| 9 { | 9 { |
| 10 height: 100%; | 10 height: 100%; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } | 105 } |
| 106 | 106 |
| 107 #items[data-filter-state=blocked] tr:not([data-state=blocked]), | 107 #items[data-filter-state=blocked] tr:not([data-state=blocked]), |
| 108 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]), | 108 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]), |
| 109 #items[data-filter-type=SUBDOCUMENT] tr:not([data-type=SUBDOCUMENT]), | 109 #items[data-filter-type=SUBDOCUMENT] tr:not([data-type=SUBDOCUMENT]), |
| 110 #items[data-filter-type=IMAGE] tr:not([data-type=IMAGE]), | 110 #items[data-filter-type=IMAGE] tr:not([data-type=IMAGE]), |
| 111 #items[data-filter-type=STYLESHEET] tr:not([data-type=STYLESHEET]), | 111 #items[data-filter-type=STYLESHEET] tr:not([data-type=STYLESHEET]), |
| 112 #items[data-filter-type=SCRIPT] tr:not([data-type=SCRIPT]), | 112 #items[data-filter-type=SCRIPT] tr:not([data-type=SCRIPT]), |
| 113 #items[data-filter-type=OBJECT] tr:not([data-type=OBJECT]), | 113 #items[data-filter-type=OBJECT] tr:not([data-type=OBJECT]), |
| 114 #items[data-filter-type=XMLHTTPREQUEST] tr:not([data-type=XMLHTTPREQUEST]), | 114 #items[data-filter-type=XMLHTTPREQUEST] tr:not([data-type=XMLHTTPREQUEST]), |
| 115 #items[data-filter-type=FONT] tr:not([data-type=FONT]), |
| 116 #items[data-filter-type=PING] tr:not([data-type=PING]), |
| 115 #items[data-filter-type=POPUP] tr:not([data-type=POPUP]), | 117 #items[data-filter-type=POPUP] tr:not([data-type=POPUP]), |
| 116 #items[data-filter-type=ELEMHIDE] tr:not([data-type=ELEMHIDE]), | 118 #items[data-filter-type=ELEMHIDE] tr:not([data-type=ELEMHIDE]), |
| 117 #items[data-filter-type=OTHER] tr:not([data-type=OTHER]) | 119 #items[data-filter-type=OTHER] tr:not([data-type=OTHER]) |
| 118 { | 120 { |
| 119 display: none; | 121 display: none; |
| 120 } | 122 } |
| 121 | 123 |
| 122 .changed, .unnamed | 124 .changed, .unnamed |
| 123 { | 125 { |
| 124 font-style: italic | 126 font-style: italic |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 margin-left: 5px; | 169 margin-left: 5px; |
| 168 cursor: pointer; | 170 cursor: pointer; |
| 169 flex-shrink: 0; | 171 flex-shrink: 0; |
| 170 } | 172 } |
| 171 | 173 |
| 172 .filter-wrapper, .filter, .origin, .domain | 174 .filter-wrapper, .filter, .origin, .domain |
| 173 { | 175 { |
| 174 flex-grow: 1; | 176 flex-grow: 1; |
| 175 } | 177 } |
| 176 | 178 |
| 177 .domain, .origin, .changed | 179 .domain, .origin, |
| 180 .changed .request-wrapper, |
| 181 .changed .filter-wrapper, |
| 182 .changed .type |
| 178 { | 183 { |
| 179 opacity: 0.6; | 184 opacity: 0.6; |
| 180 } | 185 } |
| 181 | 186 |
| 182 footer | 187 footer |
| 183 { | 188 { |
| 184 width: 100%; | 189 width: 100%; |
| 185 height: 23px; | 190 height: 23px; |
| 186 margin-bottom: -23px; | 191 margin-bottom: -23px; |
| 187 padding: 4px 3px; | 192 padding: 4px 3px; |
| 188 border-top: 1px solid #cdcdcd; | 193 border-top: 1px solid #cdcdcd; |
| 189 flex-shrink: 0; | 194 flex-shrink: 0; |
| 190 } | 195 } |
| 191 | 196 |
| 192 .has-changes + footer | 197 .has-changes + footer |
| 193 { | 198 { |
| 194 margin-bottom: 0; | 199 margin-bottom: 0; |
| 195 transition: margin-bottom 0.5s; | 200 transition: margin-bottom 0.5s; |
| 196 } | 201 } |
| 197 | 202 |
| 198 #reload | 203 #reload |
| 199 { | 204 { |
| 200 color: blue; | 205 color: blue; |
| 201 text-decoration: underline; | 206 text-decoration: underline; |
| 202 cursor: pointer; | 207 cursor: pointer; |
| 203 } | 208 } |
| LEFT | RIGHT |