Files
shaka-player/ui/less/other_elements.less
T
Joey Parrish c1b109aabc fix: Correct license headers in CSS/LESS
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
2020-06-09 16:19:38 -07:00

25 lines
703 B
Plaintext

/** @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/* UI elements that did not fit into the buttons/range elements category. */
/* This is a spacer element used to separate elements within the control
* buttons panel. It's just an empty div of certain width. */
.shaka-spacer {
/* This should not have a pointer-style cursor like the other controls. */
cursor: default;
/* Make the element shrink to accommodate things to the right. */
.shrinkable();
/* Make the element grow to take up the remaining space. */
flex-grow: 1;
/* Margins don't shrink. Remove margins in order to be more flexible when
* shrinking. */
margin: 0;
}