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

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: 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 2765 matching lines...) Expand 10 before | Expand all | Expand 10 after
2776 border-width: 0 0 11px 0; 2776 border-width: 0 0 11px 0;
2777 } 2777 }
2778 2778
2779 .console-context { 2779 .console-context {
2780 max-width: 200px; 2780 max-width: 200px;
2781 } 2781 }
2782 2782
2783 .root-view { 2783 .root-view {
2784 overflow: hidden; 2784 overflow: hidden;
2785 position: absolute !important; 2785 position: absolute !important;
2786 left: 0;
2787 top: 0;
2786 } 2788 }
2787 2789
2788 .search-bar { 2790 .search-bar {
2789 flex: 0 0 23px; 2791 flex: 0 0 23px;
2790 background-color: rgb(236, 236, 236); 2792 background-color: rgb(236, 236, 236);
2791 } 2793 }
2792 2794
2793 .search-bar.replaceable { 2795 .search-bar.replaceable {
2794 flex: 0 0 44px; 2796 flex: 0 0 44px;
2795 } 2797 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2845 } 2847 }
2846 2848
2847 .root-view > .split-view > .split-view-sidebar { 2849 .root-view > .split-view > .split-view-sidebar {
2848 position: relative; 2850 position: relative;
2849 } 2851 }
2850 2852
2851 select.drop-down-menu { 2853 select.drop-down-menu {
2852 border: none; 2854 border: none;
2853 -webkit-appearance: none; 2855 -webkit-appearance: none;
2854 } 2856 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698