mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-16 16:16:40 +03:00
c1b109aabc
This corrects/normalizes the license headers in CSS and LESS files. The LESS tool respects the same "/*!" syntax for forcing the inclusion of a license header, but will not dedup these licenses. So the LESS files generally will not use this syntax. Instead, the build system prepends a license header after compilation. The exception is for our SVG spinner, which is based on third-party CSS from codepen. The copyright header for this is forced into the output to give proper credit to the original author. Issue #2638 Change-Id: I4c58e2b082f2d5e550a6f0a30feaaf9ebf82a53a
18 lines
577 B
Plaintext
18 lines
577 B
Plaintext
/** @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
@import "less/general.less";
|
|
@import "less/containers.less";
|
|
@import "less/buttons.less";
|
|
@import "less/range_elements.less";
|
|
@import "less/spinner.less";
|
|
@import "less/other_elements.less";
|
|
@import "less/overflow_menu.less";
|
|
@import "less/ad_controls.less";
|
|
@import (css, inline) "https://fonts.googleapis.com/css?family=Roboto";
|
|
// NOTE: Working around google/material-design-icons#958
|
|
@import (css, inline) "https://fonts.googleapis.com/icon?family=Material+Icons+Round";
|