Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- | 1 <!-- |
| 2 -- Copyright 2014 The Chromium Authors. All rights reserved. | 2 -- Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 -- Use of this source code is governed by a BSD-style license that can be | 3 -- Use of this source code is governed by a BSD-style license that can be |
| 4 -- found in the LICENSE file. | 4 -- found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <title>#xFEFF;</title> | 9 <title>#xFEFF;</title> |
| 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 11 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> | 11 <link rel="stylesheet" type="text/css" href="css/media_controls.css"> |
| 12 <link rel="stylesheet" href="chrome://resources/css/menu.css"> | 12 <link rel="stylesheet" href="chrome://resources/css/menu.css"> |
| 13 | 13 |
| 14 <link rel="stylesheet" type="text/css" href="css/video_player.css"> | 14 <link rel="stylesheet" type="text/css" href="css/video_player.css"> |
| 15 <link rel="stylesheet" type="text/css" href="css/arrow_box.css"> | 15 <link rel="stylesheet" type="text/css" href="css/arrow_box.css"> |
| 16 <link rel="stylesheet" type="text/css" href="css/cast_menu.css"> | 16 <link rel="stylesheet" type="text/css" href="css/cast_menu.css"> |
| 17 | 17 |
| 18 <link rel="import" href="chrome://resources/polymer/v1_0/paper-slider/paper-sl ider.html"> | 18 <link rel="import" href="chrome://resources/polymer/v1_0/paper-slider/paper-sl ider.html"> |
| 19 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/f oreground/elements/files_icon_button.html"> | 19 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/f oreground/elements/files_icon_button.html"> |
| 20 | 20 |
| 21 <style is="custom-style"> | 21 <style is="custom-style"> |
| 22 paper-slider { | 22 paper-slider { |
| 23 --paper-slider-knob-color: rgb(64, 138, 241); | 23 --paper-slider-knob-color: rgb(64, 138, 241); |
| 24 --paper-slider-active-color: rgb(66, 133, 244); | 24 --paper-slider-active-color: rgb(66, 133, 244); |
| 25 } | 25 } |
| 26 files-icon-button { | |
|
oka
2016/11/07 10:24:32
nit: move this above paper-slider to sort lexicogr
yamaguchi
2016/11/07 11:08:32
Done.
| |
| 27 --files-ripple: { | |
| 28 background-color: black; | |
| 29 }; | |
| 30 --files-toggle-ripple: { | |
| 31 background-color: black; | |
| 32 }; | |
| 33 --files-toggle-ripple-activated: { | |
| 34 background-color: black; | |
| 35 }; | |
| 36 } | |
| 26 </style> | 37 </style> |
| 27 | 38 |
| 28 <script src="js/video_player_scripts.js"></script> | 39 <script src="js/video_player_scripts.js"></script> |
| 29 </head> | 40 </head> |
| 30 <body> | 41 <body> |
| 31 <div id="video-player" tools> | 42 <div id="video-player" tools> |
| 32 <cr-menu id='cast-menu' class='cast-menu tool' | 43 <cr-menu id='cast-menu' class='cast-menu tool' |
| 33 i18n-values="playon-text:VIDEO_PLAYER_PLAY_ON"></cr-menu> | 44 i18n-values="playon-text:VIDEO_PLAYER_PLAY_ON"></cr-menu> |
| 34 <div id="cast-container"> | 45 <div id="cast-container"> |
| 35 <div id="cast-info"> | 46 <div id="cast-info"> |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 51 <div class="arrow left tool"><div></div></div> | 62 <div class="arrow left tool"><div></div></div> |
| 52 <div class="arrow-spacer"></div> | 63 <div class="arrow-spacer"></div> |
| 53 <div class="arrow right tool"><div></div></div> | 64 <div class="arrow right tool"><div></div></div> |
| 54 </div> | 65 </div> |
| 55 <div id="error-wrapper"> | 66 <div id="error-wrapper"> |
| 56 <div id="error"></div> | 67 <div id="error"></div> |
| 57 </div> | 68 </div> |
| 58 </div> | 69 </div> |
| 59 </body> | 70 </body> |
| 60 </html> | 71 </html> |
| OLD | NEW |