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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 left: 4px; | 103 left: 4px; |
104 } | 104 } |
105 | 105 |
106 .split-view button.left-sidebar-show-hide-button:active, | 106 .split-view button.left-sidebar-show-hide-button:active, |
107 .split-view button.top-sidebar-show-hide-button:active { | 107 .split-view button.top-sidebar-show-hide-button:active { |
108 top: 5px; | 108 top: 5px; |
109 left: 3px; | 109 left: 3px; |
110 } | 110 } |
111 | 111 |
112 .split-view button.right-sidebar-show-hide-button { | 112 .split-view button.right-sidebar-show-hide-button { |
113 top: 4px; | 113 top: 3px; |
114 right:2px; | 114 right:2px; |
115 } | 115 } |
116 | 116 |
117 .split-view button.right-sidebar-show-hide-button:active { | 117 .split-view button.right-sidebar-show-hide-button:active { |
118 top: 5px; | 118 top: 5px; |
119 right: 1px; | 119 right: 1px; |
120 } | 120 } |
121 | 121 |
122 .split-view button.bottom-sidebar-show-hide-button { | 122 .split-view button.bottom-sidebar-show-hide-button { |
123 bottom: 0px; | 123 bottom: 1px; |
124 right: 1px; | 124 right: 1px; |
125 } | 125 } |
126 | 126 |
127 .split-view button.bottom-sidebar-show-hide-button:active { | 127 .split-view button.bottom-sidebar-show-hide-button:active { |
128 bottom: 0; | 128 bottom: 0; |
129 right: 0; | 129 right: 0; |
130 } | 130 } |
131 | 131 |
132 .split-view button.left-sidebar-show-hide-button.toggled-show > .glyph { | 132 .split-view button.left-sidebar-show-hide-button.toggled-show > .glyph { |
133 -webkit-mask-position: -168px -76px; /* |> */ | 133 -webkit-mask-position: -168px -76px; /* |> */ |
(...skipping 23 matching lines...) Expand all Loading... |
157 | 157 |
158 .split-view button.bottom-sidebar-show-hide-button.toggled-show > .glyph { | 158 .split-view button.bottom-sidebar-show-hide-button.toggled-show > .glyph { |
159 -webkit-mask-position: -296px -76px; /* <| */ | 159 -webkit-mask-position: -296px -76px; /* <| */ |
160 transform: rotate(90deg); | 160 transform: rotate(90deg); |
161 } | 161 } |
162 | 162 |
163 .split-view button.bottom-sidebar-show-hide-button.toggled-hide > .glyph { | 163 .split-view button.bottom-sidebar-show-hide-button.toggled-hide > .glyph { |
164 -webkit-mask-position: -264px -76px; /* >| */ | 164 -webkit-mask-position: -264px -76px; /* >| */ |
165 transform: rotate(90deg); | 165 transform: rotate(90deg); |
166 } | 166 } |
OLD | NEW |