| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. | 3 * Copyright (C) 2009 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 background-color: transparent; | 232 background-color: transparent; |
| 233 min-width: 15px; | 233 min-width: 15px; |
| 234 border: initial; | 234 border: initial; |
| 235 color: inherit; | 235 color: inherit; |
| 236 } | 236 } |
| 237 | 237 |
| 238 /* FIXME these shouldn't use special pseudoShadowIds, but nicer rules. | 238 /* FIXME these shouldn't use special pseudoShadowIds, but nicer rules. |
| 239 https://code.google.com/p/chromium/issues/detail?id=112508 | 239 https://code.google.com/p/chromium/issues/detail?id=112508 |
| 240 https://bugs.webkit.org/show_bug.cgi?id=62218 | 240 https://bugs.webkit.org/show_bug.cgi?id=62218 |
| 241 */ | 241 */ |
| 242 input[type="range"]::-webkit-media-slider-container { | 242 input[type="range" i]::-webkit-media-slider-container { |
| 243 display: flex; | 243 display: flex; |
| 244 align-items: center; | 244 align-items: center; |
| 245 flex-direction: row; /* This property is updated by C++ code. */ | 245 flex-direction: row; /* This property is updated by C++ code. */ |
| 246 box-sizing: border-box; | 246 box-sizing: border-box; |
| 247 height: 100%; | 247 height: 100%; |
| 248 width: 100%; | 248 width: 100%; |
| 249 border: 1px solid rgba(230, 230, 230, 0.35); | 249 border: 1px solid rgba(230, 230, 230, 0.35); |
| 250 border-radius: 4px; | 250 border-radius: 4px; |
| 251 background-color: transparent; /* Background drawing is managed by C++ code
to draw ranges. */ | 251 background-color: transparent; /* Background drawing is managed by C++ code
to draw ranges. */ |
| 252 } | 252 } |
| 253 | 253 |
| 254 /* The negative right margin causes the track to overflow its container. */ | 254 /* The negative right margin causes the track to overflow its container. */ |
| 255 input[type="range"]::-webkit-media-slider-container > div { | 255 input[type="range" i]::-webkit-media-slider-container > div { |
| 256 margin-right: -14px; | 256 margin-right: -14px; |
| 257 } | 257 } |
| 258 | 258 |
| 259 input[type="range"]::-webkit-media-slider-thumb { | 259 input[type="range" i]::-webkit-media-slider-thumb { |
| 260 margin-left: -7px; | 260 margin-left: -7px; |
| 261 margin-right: -7px; | 261 margin-right: -7px; |
| 262 } | 262 } |
| 263 | 263 |
| 264 audio::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-f
ullscreen-button { | 264 audio::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-f
ullscreen-button { |
| 265 -webkit-appearance: media-enter-fullscreen-button; | 265 -webkit-appearance: media-enter-fullscreen-button; |
| 266 display: flex; | 266 display: flex; |
| 267 flex: none; | 267 flex: none; |
| 268 border: none; | 268 border: none; |
| 269 box-sizing: border-box; | 269 box-sizing: border-box; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 font-weight: bold; | 378 font-weight: bold; |
| 379 } | 379 } |
| 380 | 380 |
| 381 video::-webkit-media-text-track-container u { | 381 video::-webkit-media-text-track-container u { |
| 382 text-decoration: underline; | 382 text-decoration: underline; |
| 383 } | 383 } |
| 384 | 384 |
| 385 video::-webkit-media-text-track-container i { | 385 video::-webkit-media-text-track-container i { |
| 386 font-style: italic; | 386 font-style: italic; |
| 387 } | 387 } |
| OLD | NEW |