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

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

Issue 1642233002: [DevTools] Cleanup various bindInput implementations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@device-mode-cleanup-misc
Patch Set: Created 4 years, 10 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 } 101 }
102 102
103 .error-message { 103 .error-message {
104 color: red; 104 color: red;
105 } 105 }
106 106
107 .-theme-with-dark-background .error-message { 107 .-theme-with-dark-background .error-message {
108 color: hsl(0, 100%, 65%); 108 color: hsl(0, 100%, 65%);
109 } 109 }
110 110
111 .error-input {
112 background-color: rgb(220, 130, 130);
113 }
114
115 .panel { 111 .panel {
116 display: flex; 112 display: flex;
117 overflow: hidden; 113 overflow: hidden;
118 position: absolute; 114 position: absolute;
119 top: 0; 115 top: 0;
120 left: 0; 116 left: 0;
121 right: 0; 117 right: 0;
122 bottom: 0; 118 bottom: 0;
123 z-index: 0; 119 z-index: 0;
124 } 120 }
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 position: absolute !important; 546 position: absolute !important;
551 left: 0; 547 left: 0;
552 top: 0; 548 top: 0;
553 right: 0; 549 right: 0;
554 bottom: 0; 550 bottom: 0;
555 } 551 }
556 552
557 .drawer-toolbar { 553 .drawer-toolbar {
558 margin-right: -6px; 554 margin-right: -6px;
559 } 555 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698