Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: chrome/browser/resources/about_credits.html

Issue 1182001: Remove vendor specific CSS prefixes. (Closed)
Patch Set: ? Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/about_memory.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Credits</title> 5 <title>Credits</title>
6 <style> 6 <style>
7 body { 7 body {
8 font-family:Helvetica,Arial,sans-serif; 8 font-family:Helvetica,Arial,sans-serif;
9 background-color:white; 9 background-color:white;
10 font-size:84%; 10 font-size:84%;
11 max-width:1020px; 11 max-width:1020px;
12 } 12 }
13 .page-title { 13 .page-title {
14 font-size:164%; 14 font-size:164%;
15 font-weight:bold; 15 font-weight:bold;
16 } 16 }
17 .product { 17 .product {
18 background-color:#c3d9ff; 18 background-color:#c3d9ff;
19 overflow:auto; 19 overflow:auto;
20 padding:2px; 20 padding:2px;
21 margin-top:16px; 21 margin-top:16px;
22 -webkit-border-radius:5px; 22 border-radius:5px;
23 } 23 }
24 .product .title { 24 .product .title {
25 font-size:110%; 25 font-size:110%;
26 font-weight:bold; 26 font-weight:bold;
27 float:left; 27 float:left;
28 margin:3px; 28 margin:3px;
29 } 29 }
30 .product .homepage { 30 .product .homepage {
31 text-align:right; 31 text-align:right;
32 float:right; 32 float:right;
33 margin:3px; 33 margin:3px;
34 } 34 }
35 .product .homepage:after { 35 .product .homepage:after {
36 content:" - "; 36 content:" - ";
37 } 37 }
38 .product .show { 38 .product .show {
39 text-align:right; 39 text-align:right;
40 float:right; 40 float:right;
41 margin:3px; 41 margin:3px;
42 } 42 }
43 .licence { 43 .licence {
44 clear:both; 44 clear:both;
45 background-color:#e8eef7; 45 background-color:#e8eef7;
46 padding:16px; 46 padding:16px;
47 -webkit-border-radius:3px; 47 border-radius:3px;
48 display:none; 48 display:none;
49 } 49 }
50 .licence h3 { 50 .licence h3 {
51 margin-top:0px; 51 margin-top:0px;
52 } 52 }
53 </style> 53 </style>
54 <script> 54 <script>
55 function $(o) {return document.getElementById(o);} 55 function $(o) {return document.getElementById(o);}
56 function toggle(o) { 56 function toggle(o) {
57 var licence = o.nextSibling; 57 var licence = o.nextSibling;
(...skipping 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 1390 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1391 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 1391 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1392 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 1392 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1393 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p> 1393 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
1394 </div> 1394 </div>
1395 </div> 1395 </div>
1396 1396
1397 1397
1398 </body> 1398 </body>
1399 </html> 1399 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/about_memory.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698