Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: skin/desktop-options.css

Issue 29674584: Issue 5549 - Implement missing error handlings for custom filter lists (Closed)
Left Patch Set: put loadCustomFilters back Created Feb. 2, 2018, 2:36 p.m.
Right Patch Set: changed custom-filters-edit-area to custom-filters-control as suggested Created Feb. 5, 2018, 9:05 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « messageResponder.js ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 #sidebar .fixed 654 #sidebar .fixed
655 { 655 {
656 position: fixed; 656 position: fixed;
657 } 657 }
658 658
659 #sidebar footer 659 #sidebar footer
660 { 660 {
661 bottom: 0px; 661 bottom: 0px;
662 position: absolute; 662 position: absolute;
663 } 663 }
664
saroyanm 2018/02/02 16:57:20 Nit: I think this is again an IDE auto-correction.
665 } 664 }
666 665
667 /* 666 /*
668 Main content 667 Main content
669 */ 668 */
670 669
671 body[data-tab|="general"] #content-general, 670 body[data-tab|="general"] #content-general,
672 body[data-tab|="advanced"] #content-advanced, 671 body[data-tab|="advanced"] #content-advanced,
673 body[data-tab|="whitelist"] #content-whitelist, 672 body[data-tab|="whitelist"] #content-whitelist,
674 body[data-tab|="help"] #content-help 673 body[data-tab|="help"] #content-help
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 #all-filter-lists-table 1151 #all-filter-lists-table
1153 { 1152 {
1154 margin-bottom: 0.8rem; 1153 margin-bottom: 0.8rem;
1155 } 1154 }
1156 1155
1157 #custom-filters-edit 1156 #custom-filters-edit
1158 { 1157 {
1159 white-space: nowrap; 1158 white-space: nowrap;
1160 } 1159 }
1161 1160
1162 #custom-filters-edit-area 1161 #custom-filters-control
1163 { 1162 {
1164 display: flex; 1163 display: flex;
1165 width: 100%; 1164 width: 100%;
1166 } 1165 }
1167 1166
1168 /* 1167 /*
1169 avoid doubled margin glitchy behavior 1168 avoid doubled margin glitchy behavior
1170 as shown in visual specifications 1169 as shown in visual specifications
1171 */ 1170 */
1172 #custom-filters-edit-area .side-controls .side-controls 1171 #custom-filters-control .side-controls .side-controls
1173 { 1172 {
1174 margin: 0; 1173 margin: 0;
1175 } 1174 }
1176 1175
1177 /* 1176 /*
1178 visibility: hidden; 1177 visibility: hidden;
1179 preserves the flex-box meaning, 1178 preserves the flex-box meaning,
1180 keeping buttons on the right. 1179 keeping buttons on the right.
1181 */ 1180 */
1182 #custom-filters-edit-error 1181 #custom-filters-edit-error
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1404 1403
1405 #social ul 1404 #social ul
1406 { 1405 {
1407 list-style: none; 1406 list-style: none;
1408 padding: 0px; 1407 padding: 0px;
1409 } 1408 }
1410 1409
1411 #social ul li 1410 #social ul li
1412 { 1411 {
1413 display: inline-block; 1412 display: inline-block;
1414 margin-right: 1rem;
saroyanm 2018/02/02 16:57:20 Why was this change necessary ? We already had end
a.giammarchi 2018/02/02 17:22:00 We cannot use margin-end because it's not compatib
saroyanm 2018/02/02 17:58:57 Right, we have created issue #5813 to tackle that.
1415 -moz-margin-end: 1rem; 1413 -moz-margin-end: 1rem;
1416 -webkit-margin-end: 1rem; 1414 -webkit-margin-end: 1rem;
1417 } 1415 }
1418 1416
1419 #social ul li a 1417 #social ul li a
1420 { 1418 {
1421 display: block; 1419 display: block;
1422 text-align: center; 1420 text-align: center;
1423 text-decoration: none; 1421 text-decoration: none;
1424 } 1422 }
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 font-size: 1rem; 1575 font-size: 1rem;
1578 color: #077CA6; 1576 color: #077CA6;
1579 background-color: #E1F2FA; 1577 background-color: #E1F2FA;
1580 } 1578 }
1581 1579
1582 #notification strong 1580 #notification strong
1583 { 1581 {
1584 flex: 1; 1582 flex: 1;
1585 text-align: center; 1583 text-align: center;
1586 } 1584 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld