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

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

Issue 713053002: DevTools: do not detach views that should be hidden upon detach. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } 55 }
56 56
57 .split-view.vbox > .split-view-resizer { 57 .split-view.vbox > .split-view-resizer {
58 position: absolute; 58 position: absolute;
59 left: 0; 59 left: 0;
60 right: 0; 60 right: 0;
61 height: 6px; 61 height: 6px;
62 z-index: 500; 62 z-index: 500;
63 } 63 }
64 64
65 .split-view.hbox.split-view-first-is-sidebar {
66 flex-direction: row-reverse !important;
67 }
68
69 .split-view.vbox.split-view-first-is-sidebar {
70 flex-direction: column-reverse !important;
71 }
72
65 .split-view-resizer-border { 73 .split-view-resizer-border {
66 pointer-events: none; 74 pointer-events: none;
67 } 75 }
68 76
69 .split-view.vbox > .split-view-resizer > .split-view-resizer-border { 77 .split-view.vbox > .split-view-resizer > .split-view-resizer-border {
70 width: 100%; 78 width: 100%;
71 margin-top: 3px; 79 margin-top: 3px;
72 height: 1px; 80 height: 1px;
73 border-top: 1px solid rgb(64%, 64%, 64%); 81 border-top: 1px solid rgb(64%, 64%, 64%);
74 } 82 }
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 157
150 .split-view button.bottom-sidebar-show-hide-button.toggled-show > .glyph { 158 .split-view button.bottom-sidebar-show-hide-button.toggled-show > .glyph {
151 -webkit-mask-position: -296px -76px; /* <| */ 159 -webkit-mask-position: -296px -76px; /* <| */
152 transform: rotate(90deg); 160 transform: rotate(90deg);
153 } 161 }
154 162
155 .split-view button.bottom-sidebar-show-hide-button.toggled-hide > .glyph { 163 .split-view button.bottom-sidebar-show-hide-button.toggled-hide > .glyph {
156 -webkit-mask-position: -264px -76px; /* >| */ 164 -webkit-mask-position: -264px -76px; /* >| */
157 transform: rotate(90deg); 165 transform: rotate(90deg);
158 } 166 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/ui/SplitView.js » ('j') | Source/devtools/front_end/ui/SplitView.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698