OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |