| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * Copyright (C) 2011 Google Inc. All rights reserved. | 4 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 cursor: pointer !important; | 215 cursor: pointer !important; |
| 216 } | 216 } |
| 217 | 217 |
| 218 .tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-tab.selected { | 218 .tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-tab.selected { |
| 219 color: inherit; | 219 color: inherit; |
| 220 border: none transparent; | 220 border: none transparent; |
| 221 border-left: 6px solid #666; | 221 border-left: 6px solid #666; |
| 222 } | 222 } |
| 223 | 223 |
| 224 .tabbed-pane-tab-slider { | 224 .tabbed-pane-tab-slider { |
| 225 width: 1px; | |
| 226 height: 2px; | 225 height: 2px; |
| 227 position: absolute; | 226 position: absolute; |
| 228 bottom: 0; | 227 bottom: 0; |
| 229 background-color: #3E82F7; | 228 background-color: #3E82F7; |
| 230 left: 0; | 229 left: 0; |
| 231 z-index: 50; | 230 z-index: 50; |
| 232 transform-origin: 0 0; | 231 transform-origin: 0 0; |
| 233 transition: transform 150ms cubic-bezier(0, 0, 0.2, 1); | 232 transition: transform 150ms cubic-bezier(0, 0, 0.2, 1); |
| 234 visibility: hidden; | 233 visibility: hidden; |
| 235 } | 234 } |
| 236 | 235 |
| 237 .tabbed-pane-tab-slider.enabled { | 236 .tabbed-pane-tab-slider.enabled { |
| 238 visibility: visible; | 237 visibility: visible; |
| 239 } | 238 } |
| 240 | 239 |
| 241 .tabbed-pane-header.tabbed-pane-no-header-background { | 240 .tabbed-pane-header.tabbed-pane-no-header-background { |
| 242 background-color: transparent; | 241 background-color: transparent; |
| 243 } | 242 } |
| OLD | NEW |