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

Side by Side Diff: Source/core/css/view-source.css

Issue 603153003: Remove unused style rules from view-source.css (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 .html-doctype { 125 .html-doctype {
126 /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-doctype ) */ 126 /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-doctype ) */
127 color: rgb(192, 192, 192); 127 color: rgb(192, 192, 192);
128 } 128 }
129 129
130 .html-end-of-file { 130 .html-end-of-file {
131 /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-end-of- file) */ 131 /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-end-of- file) */
132 color: rgb(255, 0, 0); 132 color: rgb(255, 0, 0);
133 font-weight: bold; 133 font-weight: bold;
134 } 134 }
135
136 .html-message-bubble {
137 box-shadow: black 0px 2px 5px;
138 border-radius: 9px;
139 -webkit-border-fit: lines;
140 min-height: 13px;
141 font-size: 9px;
142 font-family: Lucida Grande, sans-serif;
143 font-weight: bold;
144 margin: 6px 25px;
145 padding: 0 7px 1px;
146 }
147
148 .html-warning-message {
149 background-color: rgb(100%, 62%, 42%);
150 border: 2px solid rgb(100%, 52%, 21%);
151 }
152
153 .html-error-message {
154 background-color: rgb(100%, 42%, 42%);
155 border: 2px solid rgb(100%, 31%, 31%);
156 }
157
158 .html-message-line {
159 padding-left: 23px;
160 text-indent: -20px;
161 }
162
163 .html-message-icon {
164 position: relative;
165 top: 2px;
166 margin: 0 4px;
167 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698