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

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

Issue 2686713003: DevTools: Disable timeline network pane resizer when network group is collapsed. (Closed)
Patch Set: make it work for real Created 3 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 10 *
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 } 71 }
72 72
73 .shadow-split-widget.vbox.shadow-split-widget-first-is-sidebar { 73 .shadow-split-widget.vbox.shadow-split-widget-first-is-sidebar {
74 flex-direction: column-reverse !important; 74 flex-direction: column-reverse !important;
75 } 75 }
76 76
77 .shadow-split-widget-resizer-border { 77 .shadow-split-widget-resizer-border {
78 pointer-events: none; 78 pointer-events: none;
79 } 79 }
80 80
81 .shadow-split-widget.vbox > .shadow-split-widget-sidebar.no-default-splitter {
82 border: 0 !important;
83 }
84
81 .shadow-split-widget.vbox > .shadow-split-widget-sidebar:not(.maximized) { 85 .shadow-split-widget.vbox > .shadow-split-widget-sidebar:not(.maximized) {
82 border: 0; 86 border: 0;
83 border-top: 1px solid rgb(64%, 64%, 64%); 87 border-top: 1px solid rgb(64%, 64%, 64%);
84 } 88 }
85 89
86 .shadow-split-widget.vbox.shadow-split-widget-first-is-sidebar > .shadow-split-w idget-sidebar:not(.maximized) { 90 .shadow-split-widget.vbox.shadow-split-widget-first-is-sidebar > .shadow-split-w idget-sidebar:not(.maximized) {
87 border: 0; 91 border: 0;
88 border-bottom: 1px solid rgb(64%, 64%, 64%); 92 border-bottom: 1px solid rgb(64%, 64%, 64%);
89 } 93 }
90 94
91 .shadow-split-widget.hbox > .shadow-split-widget-sidebar:not(.maximized) { 95 .shadow-split-widget.hbox > .shadow-split-widget-sidebar:not(.maximized) {
92 border: 0; 96 border: 0;
93 border-left: 1px solid rgb(64%, 64%, 64%); 97 border-left: 1px solid rgb(64%, 64%, 64%);
94 } 98 }
95 99
96 .shadow-split-widget.hbox.shadow-split-widget-first-is-sidebar > .shadow-split-w idget-sidebar:not(.maximized) { 100 .shadow-split-widget.hbox.shadow-split-widget-first-is-sidebar > .shadow-split-w idget-sidebar:not(.maximized) {
97 border: 0; 101 border: 0;
98 border-right: 1px solid rgb(64%, 64%, 64%); 102 border-right: 1px solid rgb(64%, 64%, 64%);
99 } 103 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698