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

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

Issue 197823010: [DevTools] Add minimum size to WebInspector.View. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@splitdip2
Patch Set: rebase Created 6 years, 9 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 2754 matching lines...) Expand 10 before | Expand all | Expand 10 after
2765 border-width: 0 0 11px 0; 2765 border-width: 0 0 11px 0;
2766 } 2766 }
2767 2767
2768 .console-context { 2768 .console-context {
2769 max-width: 200px; 2769 max-width: 200px;
2770 } 2770 }
2771 2771
2772 .root-view { 2772 .root-view {
2773 overflow: hidden; 2773 overflow: hidden;
2774 position: absolute !important; 2774 position: absolute !important;
2775 left: 0;
2776 top: 0;
2775 } 2777 }
2776 2778
2777 .search-bar { 2779 .search-bar {
2778 flex: 0 0 23px; 2780 flex: 0 0 23px;
2779 background-color: rgb(236, 236, 236); 2781 background-color: rgb(236, 236, 236);
2780 } 2782 }
2781 2783
2782 .search-bar.replaceable { 2784 .search-bar.replaceable {
2783 flex: 0 0 44px; 2785 flex: 0 0 44px;
2784 } 2786 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2834 } 2836 }
2835 2837
2836 .root-view > .split-view > .split-view-sidebar { 2838 .root-view > .split-view > .split-view-sidebar {
2837 position: relative; 2839 position: relative;
2838 } 2840 }
2839 2841
2840 select.drop-down-menu { 2842 select.drop-down-menu {
2841 border: none; 2843 border: none;
2842 -webkit-appearance: none; 2844 -webkit-appearance: none;
2843 } 2845 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698