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

Unified Diff: chrome/resources/Inspector/html4-overrides.css

Issue 334023: Remove Inspector directory in prep for ref build rev. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/reference_builds/
Patch Set: Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/resources/Inspector/View.js ('k') | chrome/resources/Inspector/inspector.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/resources/Inspector/html4-overrides.css
===================================================================
--- chrome/resources/Inspector/html4-overrides.css (revision 29943)
+++ chrome/resources/Inspector/html4-overrides.css (working copy)
@@ -1,68 +0,0 @@
-/* Copyright 2008 Google Inc. All Rights Reserved. */
-/* Author: ojan@google.com (Ojan Vafai) */
-
-/* These styles override the default styling for HTML elements as defined in
- WebCore/css/html4.css. So far we have used this file exclusively for
- making our form elements match Firefoxes. If we find other needs for this
- file we should seriously consider if this is the right place of them. */
-
-input:not([type]),
-input[type="text"],
-input[type="password"],
-input[type="search"] {
- margin:0;
- padding:1px 0;
-}
-
-input[type="checkbox"] {
- margin:3px 3px 3px 4px;
-}
-
-input[type="radio"] {
- margin:3px 3px 0 5px;
-}
-
-/* Not sure this is the right color. #EBEBE4 is what Firefox uses.
- TODO(ojan): Figure out how to support legacy input rendering.
- TODO(ojan): Add input[type="file"] once we figure out our file inputs.
- TODO(ojan): Add input[type="image"] once we figure out our image inputs.
- TODO(ojan): We probably do the wrong thing if you put an invalid input type.
- do we care?
-*/
-textarea:disabled,
-input:not([type]):disabled,
-input[type="text"]:disabled,
-input[type="password"]:disabled,
-input[type="search"]:disabled {
- background-color: #EBEBE4;
-}
-
-/* Chrome should render input[type="search"] the same as input with no type.
- This search thing is an Apple-ism to get mac style search inputs. */
-input[type="search"] {
- -webkit-appearance: textfield;
- -webkit-box-sizing: content-box;
-}
-
-input[type="button"], input[type="submit"], input[type="reset"], input[type="file"]::-webkit-file-upload-button, button {
- /* Matches Firefox */
- padding: 0 6px;
- margin: 0;
-}
-
-/* Chrome selects are not rounded. Custom borders for them shouldn't be either. */
-keygen,
-select,
-select[size="0"],
-select[size="1"] {
- -webkit-border-radius: 0;
- margin: 0;
-}
-
-textarea {
- font-family: monospace;
- margin: 1px 0;
-
- /* Matches IE */
- padding: 2px;
-}
« no previous file with comments | « chrome/resources/Inspector/View.js ('k') | chrome/resources/Inspector/inspector.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698