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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorStyle.css

Issue 2351823003: [DevTools] Remove a bunch of styles from inspectorStyle.css. (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 .platform-mac { 54 .platform-mac {
55 color: rgb(48, 57, 66); 55 color: rgb(48, 57, 66);
56 font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans -serif; 56 font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans -serif;
57 } 57 }
58 58
59 .platform-windows { 59 .platform-windows {
60 font-family: 'Segoe UI', Tahoma, sans-serif; 60 font-family: 'Segoe UI', Tahoma, sans-serif;
61 } 61 }
62 62
63 label:hover input {
64 box-shadow: 0 0 3px highlight;
65 }
66
67 fieldset[disabled] label:hover input {
68 box-shadow: none;
69 }
70
71 .object-popover-container {
72 display: inline-block;
73 }
74
75 .error-message {
76 color: red;
77 }
78
79 .-theme-with-dark-background .error-message {
80 color: hsl(0, 100%, 65%);
81 }
82
83 .panel { 63 .panel {
84 display: flex; 64 display: flex;
85 overflow: hidden; 65 overflow: hidden;
86 position: absolute; 66 position: absolute;
87 top: 0; 67 top: 0;
88 left: 0; 68 left: 0;
89 right: 0; 69 right: 0;
90 bottom: 0; 70 bottom: 0;
91 z-index: 0; 71 z-index: 0;
92 } 72 }
93 73
94 .panel-sidebar { 74 .panel-sidebar {
95 overflow-x: hidden; 75 overflow-x: hidden;
96 background-color: #f3f3f3; 76 background-color: #f3f3f3;
97 } 77 }
98 78
99 iframe.extension { 79 iframe.extension {
100 flex: auto; 80 flex: auto;
101 width: 100%; 81 width: 100%;
102 height: 100%; 82 height: 100%;
103 } 83 }
104 84
105 iframe.panel.extension { 85 iframe.panel.extension {
106 display: block; 86 display: block;
107 height: 100%; 87 height: 100%;
108 } 88 }
109 89
110 .properties-accessor-property-name {
111 font-style: italic;
112 }
113
114 .child-editing {
115 color: #222 !important;
116 text-decoration: none !important;
117 overflow: visible !important;
118 }
119
120 .drawer-toolbar { 90 .drawer-toolbar {
121 margin-right: -6px; 91 margin-right: -6px;
122 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698