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

Side by Side Diff: block.html

Issue 5766275812818944: Issue 2173 - Fixed: "Block element" dialog isn't moved to correct position when dragging (Closed)
Patch Set: Created March 19, 2015, 2:45 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | block.js » ('j') | block.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <!-- 3 <!--
4 - This file is part of Adblock Plus <https://adblockplus.org/>, 4 - This file is part of Adblock Plus <https://adblockplus.org/>,
5 - Copyright (C) 2006-2015 Eyeo GmbH 5 - Copyright (C) 2006-2015 Eyeo GmbH
6 - 6 -
7 - Adblock Plus is free software: you can redistribute it and/or modify 7 - Adblock Plus is free software: you can redistribute it and/or modify
8 - it under the terms of the GNU General Public License version 3 as 8 - it under the terms of the GNU General Public License version 3 as
9 - published by the Free Software Foundation. 9 - published by the Free Software Foundation.
10 - 10 -
(...skipping 11 matching lines...) Expand all
22 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 22 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
23 <title>Block element</title> 23 <title>Block element</title>
24 <link type="text/css" href="jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css " rel="stylesheet" /> 24 <link type="text/css" href="jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css " rel="stylesheet" />
25 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> 25 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script>
26 <script type="text/javascript" src="jquery-ui/js/jquery-ui-1.8.16.custom.min.js" ></script> 26 <script type="text/javascript" src="jquery-ui/js/jquery-ui-1.8.16.custom.min.js" ></script>
27 <script type="text/javascript" src="ext/common.js"></script> 27 <script type="text/javascript" src="ext/common.js"></script>
28 <script type="text/javascript" src="ext/content.js"></script> 28 <script type="text/javascript" src="ext/content.js"></script>
29 <script type="text/javascript" src="i18n.js" charset="utf-8"></script> 29 <script type="text/javascript" src="i18n.js" charset="utf-8"></script>
30 <script type="text/javascript" src="block.js" charset="utf-8"></script> 30 <script type="text/javascript" src="block.js" charset="utf-8"></script>
31 <style type="text/css"> 31 <style type="text/css">
32 html, body /* The background color of the <html> and <body> */
33 { /* element must be set. Otherwise Safari renders */
34 background: #ffffff; /* the frame transparent while it is dragged. */
35 }
32 body 36 body
33 { 37 {
34 font-family: Arial, Helvetica, sans-serif; 38 font-family: Arial, Helvetica, sans-serif;
35 font-size: 13px; 39 font-size: 13px;
36 background: #ffffff;
37 margin: 0px; 40 margin: 0px;
38 padding: 5px; 41 padding: 5px;
39 display: inline-block; 42 display: inline-block;
40 } 43 }
41 #title, 44 #title,
42 #filters 45 #filters
43 { 46 {
44 margin-bottom: 3px; 47 margin-bottom: 3px;
45 } 48 }
46 #title > * 49 #title > *
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 81
79 <textarea id="filters"></textarea> 82 <textarea id="filters"></textarea>
80 83
81 <div id="buttons"> 84 <div id="buttons">
82 <button id="addButton" class="i18n_add"></button> 85 <button id="addButton" class="i18n_add"></button>
83 <button id="cancelButton" class="i18n_cancel"></button> 86 <button id="cancelButton" class="i18n_cancel"></button>
84 </div> 87 </div>
85 88
86 </body> 89 </body>
87 </html> 90 </html>
OLDNEW
« no previous file with comments | « no previous file | block.js » ('j') | block.js » ('J')

Powered by Google App Engine
This is Rietveld