1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

get api libs from bower

This commit is contained in:
Luke Pulverenti 2015-12-16 00:30:14 -05:00
parent def418714f
commit f36e664503
97 changed files with 16860 additions and 197 deletions

View file

@ -1,6 +1,6 @@
{
"name": "paper-styles",
"version": "1.0.13",
"version": "1.1.0",
"description": "Common (global) styles for Material Design elements.",
"authors": [
"The Polymer Authors"
@ -29,11 +29,11 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
"iron-component-page": "polymerelements/iron-component-page#^1.0.0"
},
"_release": "1.0.13",
"_release": "1.1.0",
"_resolution": {
"type": "version",
"tag": "v1.0.13",
"commit": "dd998025a0fc01bfe157dd72d5b91c7b5a70b909"
"tag": "1.1.0",
"commit": "4104485003ccbcf2c3c9eb542156930974294525"
},
"_source": "git://github.com/PolymerElements/paper-styles.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "paper-styles",
"version": "1.0.13",
"version": "1.1.0",
"description": "Common (global) styles for Material Design elements.",
"authors": [
"The Polymer Authors"

View file

@ -162,7 +162,7 @@ styles. All other styles should exist as single lines."
.paper-font-code1 {
font-size: 14px;
font-weight: 700;
font-weight: 500;
line-height: 20px;
}

View file

@ -10,30 +10,51 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<link rel="import" href="../polymer/polymer.html">
<!-- Taken from https://www.google.com/design/spec/style/color.html#color-ui-color-application -->
<style is="custom-style">
:root {
/*
* Light background theme
*/
--light-theme-background-color: #ffffff;
--light-theme-base-color: #000000;
--light-theme-text-color: #212121;
--light-theme-secondary-color: #737373; /* for secondary text and icons */
--light-theme-disabled-color: #9b9b9b; /* disabled/hint text */
--light-theme-divider-color: #dbdbdb;
--dark-primary-color: #303f9f;
/*
* Dark background theme
*/
--dark-theme-background-color: #212121;
--dark-theme-base-color: #ffffff;
--dark-theme-text-color: #ffffff;
--dark-theme-secondary-color: #bcbcbc; /* for secondary text and icons */
--dark-theme-disabled-color: #646464; /* disabled/hint text */
--dark-theme-divider-color: #3c3c3c;
--default-primary-color: #3f51b5;
/*
* Primary and accent colors. Also see color.html for more colors.
*/
--light-primary-color: #c5cae9; /* --paper-indigo-100 */
--default-primary-color: #3f51b5; /* --paper-indigo-500 */
--dark-primary-color: #303f9f; /* --paper-indigo-700 */
--light-primary-color: #c5cae9;
--text-primary-color: #ffffff;
--accent-color: #ff4081;
--primary-background-color: #ffffff;
--primary-text-color: #212121;
--secondary-text-color: #757575;
--disabled-text-color: #bdbdbd;
--divider-color: #e0e0e0;
--accent-color: #ff4081; /* --paper-pink-a200 */
--light-accent-color: #ff80ab; /* --paper-pink-a100 */
--dark-accent-color: #f50057; /* --paper-pink-a400 */
/*
* Deprecated values because of their confusing names.
*/
--primary-text-color: var(--light-theme-text-color);
--text-primary-color: var(--dark-theme-text-color);
--primary-background-color: var(--light-theme-background-color);
--secondary-text-color: var(--light-theme-secondary-color);
--disabled-text-color:var(--light-theme-disabled-color);
--divider-color: var(--light-theme-divider-color);
}
</style>

View file

@ -19,7 +19,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<style is="custom-style">
body {
font-family: 'Roboto', 'Noto', sans-serif;
@apply(--paper-font-common-base);
font-size: 14px;
margin: 0;
padding: 24px;

View file

@ -16,11 +16,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
:root {
/* Shared Styles */
/*
Unfortunately, we can't use nested rules
See https://github.com/Polymer/polymer/issues/1399
*/
--paper-font-common-base: {
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@ -44,14 +39,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
/* Material Font Styles */
--paper-font-display4: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
/* @apply(--paper-font-common-nowrap); */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@apply(--paper-font-common-base);
@apply(--paper-font-common-nowrap);
font-size: 112px;
font-weight: 300;
@ -60,14 +49,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-display3: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
/* @apply(--paper-font-common-nowrap); */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@apply(--paper-font-common-base);
@apply(--paper-font-common-nowrap);
font-size: 56px;
font-weight: 400;
@ -76,10 +59,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-display2: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-base);
font-size: 45px;
font-weight: 400;
@ -88,10 +68,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-display1: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-base);
font-size: 34px;
font-weight: 400;
@ -100,10 +77,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-headline: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-base);
font-size: 24px;
font-weight: 400;
@ -112,14 +86,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-title: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
/* @apply(--paper-font-common-nowrap); */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@apply(--paper-font-common-base);
@apply(--paper-font-common-nowrap);
font-size: 20px;
font-weight: 500;
@ -127,10 +95,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-subhead: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-base);
font-size: 16px;
font-weight: 400;
@ -138,9 +103,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-body2: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-base);
font-size: 14px;
font-weight: 500;
@ -148,9 +111,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-body1: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-base);
font-size: 14px;
font-weight: 400;
@ -158,13 +119,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-caption: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
/* @apply(--paper-font-common-nowrap); */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@apply(--paper-font-common-base);
@apply(--paper-font-common-nowrap);
font-size: 12px;
font-weight: 400;
@ -173,14 +129,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-menu: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
/* @apply(--paper-font-common-nowrap); */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@apply(--paper-font-common-base);
@apply(--paper-font-common-nowrap);
font-size: 13px;
font-weight: 500;
@ -188,14 +138,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-button: {
/* @apply(--paper-font-common-base) */
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
/* @apply(--paper-font-common-nowrap); */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@apply(--paper-font-common-base);
@apply(--paper-font-common-nowrap);
font-size: 14px;
font-weight: 500;
@ -205,9 +149,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-code2: {
/* @apply(--paper-font-common-code); */
font-family: 'Roboto Mono', 'Consolas', 'Menlo', monospace;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-code);
font-size: 14px;
font-weight: 700;
@ -215,9 +157,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
--paper-font-code1: {
/* @apply(--paper-font-common-code); */
font-family: 'Roboto Mono', 'Consolas', 'Menlo', monospace;
-webkit-font-smoothing: antialiased;
@apply(--paper-font-common-code);
font-size: 14px;
font-weight: 500;