1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-24 08:42:25 +02:00

@heff moved scss vars to be private. closes #2584

This commit is contained in:
heff 2015-09-14 18:26:14 -07:00
parent 313d18106b
commit c9974657a9
4 changed files with 18 additions and 17 deletions

View File

@ -128,6 +128,7 @@ CHANGELOG
* @forbesjo fixed webkit deprecation warnings ([view](https://github.com/videojs/video.js/pull/2558))
* @forbesjo added Android and iOS browser testing ([view](https://github.com/videojs/video.js/pull/2538))
* @heff improved css selector strengths ([view](https://github.com/videojs/video.js/pull/2583))
* @heff moved scss vars to be private ([view](https://github.com/videojs/video.js/pull/2584))
--------------------

View File

@ -0,0 +1,16 @@
$primary-text: #fff !default;
// currently just used for visited links in errors and such.
$secondary-text: #F4A460 !default;
$primary-bg: #000 !default;
$secondary-bg: lighten($primary-bg, 35%) !default;
$text-font-family: Arial, Helvetica, sans-serif !default;
$base-font-size: 10px !default;
$control-bar--bg: #2B333F !default;
$control-bar--transparency: 0.5 !default;
$big-play-button--width: 3em !default;
$big-play-button--height: 1.5em !default;
$big-play-button--transparency: 0.8 !default;

View File

@ -1,18 +1 @@
$primary-text: #fff !default;
// currently just used for visited links in errors and such.
$secondary-text: #F4A460 !default;
$primary-bg: #000 !default;
$secondary-bg: lighten($primary-bg, 35%) !default;
$text-font-family: Arial, Helvetica, sans-serif !default;
$base-font-size: 10px !default;
$control-bar--bg: #2B333F !default;
$control-bar--transparency: 0.5 !default;
$big-play-button--width: 3em !default;
$big-play-button--height: 1.5em !default;
$big-play-button--transparency: 0.8 !default;
$icon-font-path: 'font' !default;

View File

@ -1,4 +1,5 @@
@import "variables";
@import "private-variables";
@import "utilities";
@import "../../node_modules/videojs-font/scss/icons";