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

Delta Between Two Patch Sets: skin/options.css

Issue 29321198: Issue 2376 - Implement custom filters in new options page (Closed)
Left Patch Set: Created June 29, 2015, 11:21 a.m.
Right Patch Set: Nit fixes Created July 15, 2015, 2:35 p.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 | « options.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-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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 @font-face
19 {
20 font-family: "Source Sans Pro";
21 src: url(fonts/SourceSansPro-Light.woff);
22 /* local("Ø") forces using no local font called Source Sans Pro */
23 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff");
24 font-weight: 300;
25 font-style: normal;
26 }
27
28 @font-face
29 {
30 font-family: "Source Sans Pro";
31 src: url(fonts/SourceSansPro-Regular.woff);
32 /* local("Ø") forces using no local font called Source Sans Pro */
33 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff");
34 font-weight: 400;
35 font-style: normal;
36 }
37
38 @font-face
39 {
40 font-family: "Source Sans Pro";
41 src: url(fonts/SourceSansPro-Semibold.woff);
42 /* local("Ø") forces using no local font called Source Sans Pro */
43 src: local("Ø"), url(fonts/SourceSansPro-Semibold.woff) format("woff");
44 font-weight: 600;
45 font-style: normal;
46 }
47
18 body 48 body
19 { 49 {
20 background-color: #F5F5F5; 50 background-color: #F5F5F5;
21 display: flex; 51 display: flex;
52 margin: 20px 10px;
22 font-family: "Source Sans Pro", sans-serif; 53 font-family: "Source Sans Pro", sans-serif;
23 font-size: 14px; 54 font-size: 14px;
24 white-space: nowrap;
25 } 55 }
26 56
27 h1 57 h1
28 { 58 {
29 font-size: 24px; 59 font-size: 24px;
30 font-weight: 100; 60 line-height: 1em;
61 font-weight: 300;
31 } 62 }
32 63
33 h2 64 h2
34 { 65 {
35 font-size: 16px; 66 font-size: 16px;
36 font-weight: 500; 67 font-weight: 600;
37 } 68 }
38 69
39 p 70 p
40 { 71 {
41 font-weight: 100; 72 font-weight: 300;
42 } 73 }
43 74
44 hr 75 hr
45 { 76 {
46 background-color: #CDCDCD; 77 background-color: #CDCDCD;
47 border: 0px; 78 border: 0px;
48 height: 1px; 79 height: 1px;
49 margin: 0px; 80 margin: 0px;
50 } 81 }
51 82
52 input[type="search"]::-webkit-search-cancel-button 83 input[type="search"]::-webkit-search-cancel-button
53 { 84 {
54 display: none; 85 display: none;
55 } 86 }
56 87
57 input[type="text"], input[type="search"] 88 input[type="text"], input[type="search"]
58 { 89 {
59 -webkit-box-sizing: border-box; 90 -webkit-box-sizing: border-box;
60 -moz-box-sizing: border-box; 91 -moz-box-sizing: border-box;
61 box-sizing: border-box; 92 box-sizing: border-box;
Thomas Greiner 2015/06/30 09:23:29 What about applying `box-sizing:border-box` to eve
saroyanm 2015/07/08 18:25:43 I think it make sense to create a separate ticket
Thomas Greiner 2015/07/09 11:07:54 Fine with me.
62 } 93 }
63 94
64 .option-name 95 .option-name
65 { 96 {
66 display: flex; 97 display: flex;
67 } 98 }
68 99
69 .option-name > * 100 .option-name > *
70 { 101 {
71 -moz-margin-end: 6px; 102 -moz-margin-end: 6px;
72 -webkit-margin-end: 6px; 103 -webkit-margin-end: 6px;
73 } 104 }
74 105
75 #nav-sidebar 106 #nav-sidebar
76 { 107 {
77 position: relative;
78 padding: 0px 0px 16px 0px;
79 -moz-padding-start: 10px;
80 -webkit-padding-start: 10px;
81 min-width: 198px; 108 min-width: 198px;
82 } 109 }
83 110
84 #nav-sidebar .fixed 111 #nav-sidebar .fixed
85 { 112 {
86 height: 100%; 113 top: 40px;
114 bottom: 2px;
115 height: auto;
87 position: fixed; 116 position: fixed;
88 } 117 }
89 118
90 #page-title 119 #page-title
91 { 120 {
92 -webkit-margin-start: 10px; 121 padding: 0px 20px;
93 -moz-margin-start: 10px;
94 } 122 }
95 123
96 #page-title p 124 #page-title p
97 { 125 {
98 margin: 0px; 126 margin: 0px;
99 padding: 40px 0px 0px 0px;
100 font-size: 16px; 127 font-size: 16px;
128 line-height: 1em;
101 } 129 }
102 130
103 #page-title h1 131 #page-title h1
104 { 132 {
105 margin: 0px; 133 margin: 0px;
106 padding: 8px 0px 16px 0px; 134 padding: 8px 0px 16px 0px;
107 } 135 }
108 136
109 .flex-container 137 .flex-container
110 { 138 {
111 display: flex; 139 display: flex;
112 flex-flow: row wrap; 140 flex-flow: row wrap;
113 } 141 }
114 142
115 .tabs li 143 .tabs li
116 { 144 {
117 cursor: pointer; 145 cursor: pointer;
118 display: flex; 146 display: flex;
119 } 147 }
120 148
121 .tabs li span:first-child 149 .tabs li a
122 { 150 {
123 flex: 1; 151 flex: 1;
152 color: inherit;
153 text-decoration: none;
124 } 154 }
125 155
126 .tabs.vertical 156 .tabs.vertical
127 { 157 {
128 list-style: none; 158 list-style: none;
129 margin: 0px; 159 margin: 0px;
130 position: relative; 160 position: relative;
131 padding: 0px; 161 padding: 0px;
132 width: 198px; 162 width: 198px;
133 } 163 }
134 164
135 .tabs.vertical li 165 .tabs.vertical li
136 { 166 {
137 border-color: #CDCDCD; 167 border-color: #CDCDCD transparent;
138 border-style: solid; 168 border-style: solid;
139 border-width: 1px 0px 0px 0px; 169 border-width: 1px;
140 font-size: 16px; 170 font-size: 16px;
141 font-weight: 100; 171 font-weight: 300;
142 padding: 16px 0px; 172 line-height: 1em;
143 -moz-padding-end: 20px; 173 margin-top: -1px;
144 -webkit-padding-end: 20px; 174 padding: 14px 20px;
145 -moz-padding-start: 11px;
146 -webkit-padding-start: 11px;
147 }
148
149 body[data-tab="general"] #tab-general + li,
150 body[data-tab="advanced"] #tab-advanced + li,
151 body[data-tab="help"] #tab-help + li
152 {
153 border-width: 0px;
154 }
155
156 #tab-help,
157 body[data-tab="advanced"] #tab-advanced + li
158 {
159 border-bottom-width: 1px;
160 } 175 }
161 176
162 body[data-tab="general"] #tab-general, 177 body[data-tab="general"] #tab-general,
163 body[data-tab="advanced"] #tab-advanced, 178 body[data-tab="advanced"] #tab-advanced,
164 body[data-tab="help"] #tab-help 179 body[data-tab="help"] #tab-help
165 { 180 {
166 background-color: #FFFFFF; 181 background-color: #FFFFFF;
167 border-radius: 3px 0px 0px 3px; 182 border-radius: 3px 0px 0px 3px;
168 border-width: 1px; 183 border-width: 1px;
169 -moz-border-end: 0px; 184 font-weight: 600;
170 -webkit-border-end: 0px; 185 -moz-border-start-color: #CDCDCD;
171 font-weight: 900; 186 -webkit-border-start-color: #CDCDCD;
172 -moz-margin-end: -1px; 187 -moz-margin-end: -1px;
173 -webkit-margin-end: -1px; 188 -webkit-margin-end: -1px;
174 -moz-padding-start: 10px; 189 -moz-margin-start: -1px;
175 -webkit-padding-start: 10px; 190 -webkit-margin-start: -1px;
176 position: relative; 191 -moz-padding-end: 21px;
192 -webkit-padding-end: 21px;
193 -moz-padding-start: 21px;
194 -webkit-padding-start: 21px;
195 }
196
197 html[dir="rtl"] body[data-tab="general"] #tab-general,
198 html[dir="rtl"] body[data-tab="advanced"] #tab-advanced,
199 html[dir="rtl"] body[data-tab="help"] #tab-help
200 {
201 border-radius: 0px 3px 3px 0px;
177 } 202 }
178 203
179 .tabs.vertical.bottom 204 .tabs.vertical.bottom
180 { 205 {
181 bottom: 0px; 206 bottom: 0px;
182 position: absolute; 207 position: absolute;
183 } 208 }
184 209
185 .tabs.vertical.bottom li:first-child 210 .tabs.vertical.bottom li:first-child
186 { 211 {
187 border-top: 0px; 212 border-top: 0px;
188 } 213 }
189 214
190 .tabs.vertical .icon 215 #tab-contribute
191 { 216 {
192 margin: 2px 0px 0px 0px; 217 border-bottom: none;
218 }
219
220 #nav-sidebar ul li .icon
221 {
222 height: 14px;
223 width: 14px;
193 } 224 }
194 225
195 #tab-general .icon 226 #tab-general .icon
196 { 227 {
197 background-position: -15px -17px; 228 background-position: -16px -18px;
198 height: 16px;
199 width: 16px;
200 } 229 }
201 230
202 #tab-advanced .icon 231 #tab-advanced .icon
203 { 232 {
204 background-position: -45px -18px; 233 background-position: -46px -18px;
205 height: 16px;
206 width: 16px;
207 } 234 }
208 235
209 #tab-help .icon 236 #tab-help .icon
210 { 237 {
211 background-position: 0px -17px; 238 background-position: -1px -18px;
212 height: 16px;
213 width: 16px;
214 } 239 }
215 240
216 #tab-share .icon 241 #tab-share .icon
217 { 242 {
218 background-position: -60px -17px; 243 background-position: -61px -18px;
219 height: 16px; 244 }
220 width: 16px; 245
221 } 246 #tab-contribute .icon
222 247 {
223 #tab-donate .icon 248 background-position: -31px -18px;
224 {
225 background-position: -30px -17px;
226 height: 16px;
227 width: 16px;
228 } 249 }
229 250
230 #tab-content 251 #tab-content
231 { 252 {
232 background-color: #FFFFFF; 253 background-color: #FFFFFF;
233 border: 1px solid #CDCDCD; 254 border: 1px solid #CDCDCD;
234 border-radius: 8px; 255 border-radius: 8px;
235 padding: 0px 60px 40px 60px; 256 padding: 0px 60px 40px 60px;
236 width: 960px; 257 width: 960px;
237 } 258 }
238 259
239 #tab-content h1 260 #tab-content h1
240 { 261 {
241 border-bottom: 1px solid #CDCDCD; 262 border-bottom: 1px solid #CDCDCD;
242 margin: 0px; 263 margin: 0px;
243 padding: 40px 0px 16px 0px; 264 padding: 40px 0px 16px 0px;
244 } 265 }
245 266
246 .nav-link 267 #link-version
247 { 268 {
248 -moz-margin-start: 12px; 269 display: flex;
249 -webkit-margin-start: 12px; 270 margin: 12px 20px;
250 color: #3A7BA6; 271 color: #3A7BA6;
272 text-decoration: none;
273 }
274
275 #abp-version
276 {
277 -moz-margin-start: 5px;
278 -webkit-margin-start: 5px;
251 } 279 }
252 280
253 #content-wrapper 281 #content-wrapper
254 { 282 {
255 position: relative; 283 position: relative;
256 } 284 }
257 285
258 #content-wrapper > div 286 #content-wrapper > div
259 { 287 {
260 display: none; 288 display: none;
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 color: #3A7BA6; 445 color: #3A7BA6;
418 padding: 10px 0px 11px 0px; 446 padding: 10px 0px 11px 0px;
419 text-align: center; 447 text-align: center;
420 width: 50%; 448 width: 50%;
421 } 449 }
422 450
423 .tabs.horizontal li.active 451 .tabs.horizontal li.active
424 { 452 {
425 border-bottom: 2px solid #1E8728; 453 border-bottom: 2px solid #1E8728;
426 color: black; 454 color: black;
427 font-weight: bold; 455 font-weight: 600;
428 padding-bottom: 10px; 456 padding-bottom: 10px;
429 } 457 }
430 458
431 .icon, .table input[type="checkbox"]::before, .table button.delete, 459 .icon, .table input[type="checkbox"]::before, .table button.delete,
432 #content-help a::before, #dialog-close::before, 460 #content-help a::before, #dialog-close::before,
433 #custom-filters-add-btn::after 461 #custom-filters-add button::after
434 { 462 {
435 background-image: url(options-sprite.png); 463 background-image: url(options-sprite.png);
436 display: inline-block; 464 display: inline-block;
437 } 465 }
438 466
439 .icon-add 467 .icon-add
440 { 468 {
441 background-position: -0px -0px; 469 background-position: -0px -0px;
442 cursor: pointer; 470 cursor: pointer;
443 height: 18px; 471 height: 18px;
444 width: 18px; 472 min-width: 18px;
445 } 473 }
446 474
447 .icon-update 475 .icon-update
448 { 476 {
449 background-position: -34px -0px; 477 background-position: -34px -0px;
450 cursor: pointer; 478 cursor: pointer;
451 height: 18px; 479 height: 18px;
452 width: 18px; 480 width: 18px;
453 } 481 }
454 482
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 { 566 {
539 border: 0px; 567 border: 0px;
540 border-bottom: 1px solid #A1A1A1; 568 border-bottom: 1px solid #A1A1A1;
541 -moz-padding-end: 25px; 569 -moz-padding-end: 25px;
542 -webkit-padding-end: 25px; 570 -webkit-padding-end: 25px;
543 -moz-margin-start: 14px; 571 -moz-margin-start: 14px;
544 -webkit-margin-start: 14px; 572 -webkit-margin-start: 14px;
545 outline: 0px; 573 outline: 0px;
546 padding-bottom: 5px; 574 padding-bottom: 5px;
547 vertical-align: text-bottom; 575 vertical-align: text-bottom;
548 width: 355px; 576 width: 100%;
Thomas Greiner 2015/06/30 09:23:30 Could you please try making this more dynamic inst
saroyanm 2015/07/08 18:25:42 Done, but I do not understand why it's overlapping
Thomas Greiner 2015/07/09 11:07:55 It seems that #whitelisting-add-icon's width is lo
saroyanm 2015/07/09 16:31:40 Done.
549 } 577 }
550 578
551 #whitelisting .controls .button-add span 579 #whitelisting .controls .button-add span
552 { 580 {
553 -moz-margin-start: 5px; 581 -moz-margin-start: 5px;
554 -webkit-margin-start: 5px; 582 -webkit-margin-start: 5px;
555 } 583 }
556 584
557 #whitelisting .button-add 585 #whitelisting .button-add
558 { 586 {
(...skipping 25 matching lines...) Expand all
584 color: #3A7BA6; 612 color: #3A7BA6;
585 cursor: pointer; 613 cursor: pointer;
586 } 614 }
587 615
588 /* 616 /*
589 Advanced tab content 617 Advanced tab content
590 */ 618 */
591 619
592 #custom-filters-header 620 #custom-filters-header
593 { 621 {
594 -moz-margin-start: 20px; 622 padding: 0px 20px;
595 -webkit-margin-start: 20px;
Thomas Greiner 2015/06/30 09:23:29 What about `padding: 0px 20px;` instead? We want t
saroyanm 2015/07/08 18:25:43 Done.
596 margin-bottom: 10px; 623 margin-bottom: 10px;
597 } 624 }
598 625
599 #custom-filters-textarea-controls, #custom-filters-edit-btn, 626 #custom-filters-raw-controls
600 #custom-filters-list-wrapper, #custom-filters-textarea 627 {
628 display: flex;
629 }
630
631 #custom-filters:not(.mode-edit) #custom-filters-raw,
632 #custom-filters:not(.mode-edit) #custom-filters-raw-controls,
633 #custom-filters.mode-edit #custom-filters-show-edit,
634 #custom-filters.mode-edit #custom-filters-list-wrapper
601 { 635 {
602 display: none; 636 display: none;
603 } 637 }
604 638
605 #custom-filters[data-view="edit"] #custom-filters-textarea, 639 #custom-filters-raw-save
606 #custom-filters[data-view="list"] #custom-filters-edit-btn, 640 {
607 #custom-filters[data-view="list"] #custom-filters-list-wrapper 641 padding: 0px 16px;
Thomas Greiner 2015/06/30 09:23:29 You could combine this, the block above and the bl
saroyanm 2015/07/08 18:25:42 Done.
608 {
609 display: block;
610 }
611
612 #custom-filters[data-view="edit"] #custom-filters-textarea-controls
613 {
614 display: flex;
615 }
616
617 #custom-filters-save-btn
618 {
619 -moz-margin-start: 16px;
620 -webkit-margin-start: 16px;
Thomas Greiner 2015/06/30 09:23:30 Again, what about `padding: 0px 16px;` instead?
saroyanm 2015/07/08 18:25:42 Done.
621 } 642 }
622 643
623 #custom-filters .table 644 #custom-filters .table
624 { 645 {
625 height: 290px; 646 height: 290px;
626 overflow: auto; 647 overflow: auto;
627 width: auto; 648 width: auto;
628 } 649 }
629 650
630 #custom-filter-add-wrapper 651 #custom-filters-add
631 { 652 {
632 display: flex; 653 display: flex;
633 padding: 0px; 654 padding: 0px;
634 border: none; 655 border: none;
635 } 656 }
636 657
637 #custom-filters .controls 658 #custom-filters .controls
638 { 659 {
639 border-top: none; 660 border-top: none;
640 } 661 }
641 662
642 #custom-filters-textarea 663 #custom-filters-raw
643 { 664 {
644 width: 100%; 665 width: 100%;
645 height: 328px; 666 height: 100%;
Thomas Greiner 2015/06/30 09:23:30 I assume you'll make this pixel value more dynamic
saroyanm 2015/07/08 18:25:43 Couldn't find better way to achieve this, currentl
646 } 667 }
647 668
648 #custom-filters input[type="text"], 669 #custom-filters-wrapper
649 #custom-filters input[type="text"]:focus 670 {
Thomas Greiner 2015/06/30 09:23:29 Please split up those two styles. I assume `:focus
saroyanm 2015/07/08 18:25:42 Done.
671 height: 330px;
672 }
673
674 #custom-filters input[type="text"]
650 { 675 {
651 border-width: 1px 0px 1px 0px; 676 border-width: 1px 0px 1px 0px;
652 border-bottom-style: solid; 677 border-bottom-style: solid;
653 border-top-style: solid; 678 border-top-style: solid;
654 border-color: #1E8728; 679 border-color: #1E8728;
655 height: 25px; 680 height: 25px;
656 outline: 0px;
657 -moz-padding-start: 10px; 681 -moz-padding-start: 10px;
658 -webkit-padding-start: 10px; 682 -webkit-padding-start: 10px;
659 -moz-padding-end: 60px; 683 -moz-padding-end: 60px;
660 -webkit-padding-end: 60px; 684 -webkit-padding-end: 60px;
661 padding-top: 18px; 685 padding-top: 18px;
662 padding-bottom: 18px; 686 padding-bottom: 18px;
663 width: 100%; 687 width: 100%;
664 } 688 }
665 689
666 #custom-filters-add-textbox 690 #custom-filters input[type="text"]:focus
691 {
692 outline: 0px;
693 }
694
695 #custom-filters-add input
667 { 696 {
668 font-size: 13px; 697 font-size: 13px;
Thomas Greiner 2015/06/30 09:23:30 Missing background color which is specified in des
saroyanm 2015/07/08 18:25:42 Done.
669 } 698 background-color: #F5F5F5;
670 699 }
671 #custom-filters-add-textbox::-webkit-input-placeholder 700
672 { 701 #custom-filters-add input::-webkit-input-placeholder
673 font-weight: bold; 702 {
Thomas Greiner 2015/06/30 09:23:29 Actually, we don't have fonts for bold (= `font-we
saroyanm 2015/07/08 18:25:43 Done.
674 } 703 font-weight: 600;
675 #custom-filters-add-textbox::-moz-placeholder 704 }
676 { 705 #custom-filters-add input::-moz-placeholder
677 font-weight: bold; 706 {
707 font-weight: 600;
678 } 708 }
679 709
680 #custom-filters-table 710 #custom-filters-table
681 { 711 {
682 border-top: 1px solid #CDCDCD; 712 border-top: 1px solid #CDCDCD;
683 } 713 }
684 714
685 #custom-filters-add-btn 715 #custom-filters-add button
Thomas Greiner 2015/06/30 09:23:29 The add-button doesn't occupy the entire block it'
saroyanm 2015/07/08 18:25:42 Done.
Thomas Greiner 2015/07/09 11:07:54 It still doesn't register it when you click on the
saroyanm 2015/07/09 16:31:40 Done.
686 { 716 {
687 font-size: 14px; 717 font-size: 14px;
688 position: absolute;
Thomas Greiner 2015/06/30 09:23:29 Doesn't this also work without `position:absolute`
saroyanm 2015/07/08 18:25:42 Exactly and they are fixing comment above :)
689 -webkit-margin-start: -60px; 718 -webkit-margin-start: -60px;
690 -moz-margin-start: -60px; 719 -moz-margin-start: -60px;
691 bottom: 11px; 720 -webkit-padding-end: 6px;
721 -moz-padding-end: 6px;
692 cursor: pointer; 722 cursor: pointer;
693 color: #3A7BA6; 723 color: #3A7BA6;
694 } 724 }
695 725
696 #custom-filters-add-btn::before 726 #custom-filters-add button::before
697 { 727 {
698 content: ""; 728 content: "";
699 display: inline-block; 729 display: inline-block;
700 -moz-border-end: 1px solid #CDCDCD; 730 -moz-border-end: 1px solid #CDCDCD;
701 -webkit-border-end: 1px solid #CDCDCD; 731 -webkit-border-end: 1px solid #CDCDCD;
702 height: 15px; 732 height: 15px;
703 -webkit-margin-end: 10px; 733 -webkit-margin-end: 10px;
704 -moz-margin-end: 10px; 734 -moz-margin-end: 10px;
705 margin-bottom: -2px; 735 margin-bottom: -2px;
706 width: 1px; 736 width: 1px;
707 } 737 }
708 738
709 #custom-filters-add-btn::after 739 #custom-filters-add button::after
saroyanm 2015/06/29 11:34:18 I do think we need to show icon for other buttons
Thomas Greiner 2015/06/30 09:23:29 Yep, agreed. I guess you already confirmed in http
710 { 740 {
711 content: ""; 741 content: "";
712 background-position: -28px -85px; 742 background-position: -28px -85px;
713 cursor: pointer; 743 cursor: pointer;
714 height: 10px; 744 height: 10px;
715 -webkit-margin-start: 6px; 745 -webkit-margin-start: 6px;
716 -moz-margin-start: 6px; 746 -moz-margin-start: 6px;
717 width: 10px; 747 width: 10px;
718 } 748 }
719 749
720 .tooltip, #block-element-explanation a 750 .tooltip, #block-element-explanation a
721 { 751 {
722 border-bottom: dotted 2px; 752 border-bottom: dotted 2px;
723 color: #3A7BA6; 753 color: #3A7BA6;
724 font-size: 12px; 754 font-size: 12px;
725 text-decoration: none; 755 text-decoration: none;
726 } 756 }
727 757
728 #content-advanced .tooltip 758 #content-advanced .tooltip
729 { 759 {
730 -moz-margin-start: 8px; 760 -moz-margin-start: 8px;
731 -webkit-margin-start: 8px; 761 -webkit-margin-start: 8px;
732 } 762 }
733 763
734 #block-element-explanation a 764 #block-element-explanation a
735 { 765 {
736 color: black; 766 color: black;
737 border-bottom-color: #3A7BA6; 767 border-bottom-color: #3A7BA6;
738 font-weight: bold; 768 font-weight: 600;
739 -moz-padding-start: 0px; 769 -moz-padding-start: 0px;
740 -webkit-padding-start: 0px; 770 -webkit-padding-start: 0px;
741 } 771 }
742 772
743 /* 773 /*
744 Help tab content 774 Help tab content
745 */ 775 */
746 776
747 #content-help 777 #content-help
748 { 778 {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 -moz-padding-end: 10px; 969 -moz-padding-end: 10px;
940 -webkit-padding-start: 0px; 970 -webkit-padding-start: 0px;
941 -moz-padding-start: 0px; 971 -moz-padding-start: 0px;
942 } 972 }
943 973
944 #other-language .display 974 #other-language .display
945 { 975 {
946 -webkit-margin-start: 10px; 976 -webkit-margin-start: 10px;
947 -moz-margin-start: 10px; 977 -moz-margin-start: 10px;
948 } 978 }
LEFTRIGHT
« options.js ('k') | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld