| LEFT | RIGHT | 
|---|
| (no file at all) |  | 
| 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-present eyeo GmbH | 3  * Copyright (C) 2006-present 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 108   display: block; | 108   display: block; | 
| 109   padding: 0.6rem 0.8rem; | 109   padding: 0.6rem 0.8rem; | 
| 110   background-color: transparent; | 110   background-color: transparent; | 
| 111   font-size: 1rem; | 111   font-size: 1rem; | 
| 112   font-weight: 700; | 112   font-weight: 700; | 
| 113   text-decoration: none; | 113   text-decoration: none; | 
| 114   text-transform: uppercase; | 114   text-transform: uppercase; | 
| 115   cursor: pointer; | 115   cursor: pointer; | 
| 116 } | 116 } | 
| 117 | 117 | 
|  | 118 button:disabled, | 
|  | 119 button[aria-disabled="true"] | 
|  | 120 { | 
|  | 121   cursor: default; | 
|  | 122 } | 
|  | 123 | 
| 118 /* Ignore .icon to avoid overriding "specific" (primary, secondary) styles */ | 124 /* Ignore .icon to avoid overriding "specific" (primary, secondary) styles */ | 
| 119 button.primary:not(.icon), | 125 button.primary:not(.icon), | 
| 120 .button.primary:not(.icon) | 126 .button.primary:not(.icon) | 
| 121 { | 127 { | 
| 122   border: 0px; | 128   border: 0px; | 
| 123   color: #FFF; | 129   color: #FFF; | 
| 124   background-color: #077CA6; | 130   background-color: #077CA6; | 
| 125 } | 131 } | 
| 126 | 132 | 
| 127 button.primary:not([disabled]):not(.icon):hover, | 133 button.primary:not([disabled]):not(.icon):hover, | 
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 273 | 279 | 
| 274 button[role="checkbox"].icon:not(.toggle)::before | 280 button[role="checkbox"].icon:not(.toggle)::before | 
| 275 { | 281 { | 
| 276   /* Using ?query as a workaround to chromium bug #643716 */ | 282   /* Using ?query as a workaround to chromium bug #643716 */ | 
| 277   background-image: url(icons/checkbox.svg?off#off); | 283   background-image: url(icons/checkbox.svg?off#off); | 
| 278 } | 284 } | 
| 279 | 285 | 
| 280 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before | 286 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before | 
| 281 { | 287 { | 
| 282   background-image: url(icons/checkbox.svg?on#on); | 288   background-image: url(icons/checkbox.svg?on#on); | 
|  | 289 } | 
|  | 290 | 
|  | 291 button[role="checkbox"][aria-checked="true"].icon:disabled:not(.toggle)::before | 
|  | 292 { | 
|  | 293   background-image: url(icons/checkbox.svg?on-disabled#on-disabled); | 
| 283 } | 294 } | 
| 284 | 295 | 
| 285 button[role="checkbox"].icon.toggle::before | 296 button[role="checkbox"].icon.toggle::before | 
| 286 { | 297 { | 
| 287   background-image: url(icons/toggle.svg?on#on); | 298   background-image: url(icons/toggle.svg?on#on); | 
| 288 } | 299 } | 
| 289 | 300 | 
| 290 button[role="checkbox"][aria-checked="false"].icon.toggle::before | 301 button[role="checkbox"][aria-checked="false"].icon.toggle::before | 
| 291 { | 302 { | 
| 292   background-image: url(icons/toggle.svg?off#off); | 303   background-image: url(icons/toggle.svg?off#off); | 
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1064 { | 1075 { | 
| 1065   color: #BBB; | 1076   color: #BBB; | 
| 1066 } | 1077 } | 
| 1067 | 1078 | 
| 1068 #dialog .table.list li button > span | 1079 #dialog .table.list li button > span | 
| 1069 { | 1080 { | 
| 1070   flex: none; | 1081   flex: none; | 
| 1071   margin: 0rem 0.8rem; | 1082   margin: 0rem 0.8rem; | 
| 1072   text-transform: none; | 1083   text-transform: none; | 
| 1073   font-weight: 400; | 1084   font-weight: 400; | 
|  | 1085 } | 
|  | 1086 | 
|  | 1087 li.preconfigured [data-hide="preconfigured"] | 
|  | 1088 { | 
|  | 1089   display: none !important; | 
| 1074 } | 1090 } | 
| 1075 | 1091 | 
| 1076 /* | 1092 /* | 
| 1077   Tooltips | 1093   Tooltips | 
| 1078 */ | 1094 */ | 
| 1079 | 1095 | 
| 1080 .tooltip | 1096 .tooltip | 
| 1081 { | 1097 { | 
| 1082   position: relative; | 1098   position: relative; | 
| 1083   margin: 0rem; | 1099   margin: 0rem; | 
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1560   font-size: 1rem; | 1576   font-size: 1rem; | 
| 1561   color: #077CA6; | 1577   color: #077CA6; | 
| 1562   background-color: #E1F2FA; | 1578   background-color: #E1F2FA; | 
| 1563 } | 1579 } | 
| 1564 | 1580 | 
| 1565 #notification strong | 1581 #notification strong | 
| 1566 { | 1582 { | 
| 1567   flex: 1; | 1583   flex: 1; | 
| 1568   text-align: center; | 1584   text-align: center; | 
| 1569 } | 1585 } | 
| LEFT | RIGHT | 
|---|