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

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

Issue 197823010: [DevTools] Add minimum size to WebInspector.View. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@splitdip2
Patch Set: width/height -> right/bottom 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) 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 > .split-view-resizer > .split-view-resizer-border { 65 .split-view-resizer-border {
66 width: 100%;
67 height: 100%;
68 pointer-events: none; 66 pointer-events: none;
69 } 67 }
70 68
71 .split-view.vbox > .split-view-resizer > .split-view-resizer-border { 69 .split-view.vbox > .split-view-resizer > .split-view-resizer-border {
72 margin: 3px 0; 70 width: 100%;
71 margin-top: 3px;
72 height: 1px;
73 border-top: 1px solid rgb(64%, 64%, 64%); 73 border-top: 1px solid rgb(64%, 64%, 64%);
74 } 74 }
75 75
76 .split-view.hbox > .split-view-resizer > .split-view-resizer-border { 76 .split-view.hbox > .split-view-resizer > .split-view-resizer-border {
77 margin: 0 3px; 77 height: 100%;
78 margin-left: 3px;
79 width: 1px;
78 border-left: 1px solid rgb(64%, 64%, 64%); 80 border-left: 1px solid rgb(64%, 64%, 64%);
79 } 81 }
80 82
81 .split-view button.sidebar-show-hide-button { 83 .split-view button.sidebar-show-hide-button {
82 position: absolute; 84 position: absolute;
83 background-image: none; 85 background-image: none;
84 height: 16px; 86 height: 16px;
85 width: 16px; 87 width: 16px;
86 border: none; 88 border: none;
87 z-index: 10; 89 z-index: 10;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 149
148 .split-view button.bottom-sidebar-show-hide-button.toggled-show > .glyph { 150 .split-view button.bottom-sidebar-show-hide-button.toggled-show > .glyph {
149 -webkit-mask-position: -296px -76px; /* <| */ 151 -webkit-mask-position: -296px -76px; /* <| */
150 -webkit-transform: rotate(90deg); 152 -webkit-transform: rotate(90deg);
151 } 153 }
152 154
153 .split-view button.bottom-sidebar-show-hide-button.toggled-hide > .glyph { 155 .split-view button.bottom-sidebar-show-hide-button.toggled-hide > .glyph {
154 -webkit-mask-position: -264px -76px; /* >| */ 156 -webkit-mask-position: -264px -76px; /* >| */
155 -webkit-transform: rotate(90deg); 157 -webkit-transform: rotate(90deg);
156 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698