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

Side by Side Diff: Source/devtools/front_end/inspector.css

Issue 71633003: DevTools: added "overlayContents" mode, where DevTools content is placed around and underneath inse… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 2782 matching lines...) Expand 10 before | Expand all | Expand 10 after
2793 display: inline-block; 2793 display: inline-block;
2794 float: right; 2794 float: right;
2795 padding-right: 4px; 2795 padding-right: 4px;
2796 padding-top: 4px; 2796 padding-top: 4px;
2797 padding-left: 2px; 2797 padding-left: 2px;
2798 } 2798 }
2799 2799
2800 body.undocked .toolbar-close-button-item { 2800 body.undocked .toolbar-close-button-item {
2801 display: none; 2801 display: none;
2802 } 2802 }
2803
2804 body.dock-to-bottom #inspector-split-view .split-view-resizer {
2805 border-top: 1px solid rgb(64%, 64%, 64%);
2806 }
2807
2808 body.dock-to-right #inspector-split-view .split-view-resizer {
2809 border-left: 1px solid rgb(64%, 64%, 64%);
2810 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698