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

update video probing

This commit is contained in:
Luke Pulverenti 2015-09-23 00:00:30 -04:00
parent 8a32cc215f
commit b70aa4926c
25 changed files with 407 additions and 355 deletions

View file

@ -1,6 +1,6 @@
{
"name": "paper-toggle-button",
"version": "1.0.7",
"version": "1.0.8",
"description": "A material design toggle button control",
"authors": [
"The Polymer Authors"
@ -34,11 +34,11 @@
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0",
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0"
},
"_release": "1.0.7",
"_release": "1.0.8",
"_resolution": {
"type": "version",
"tag": "v1.0.7",
"commit": "9abc8568d25c83c77394d141b82ff1630649ee7c"
"tag": "v1.0.8",
"commit": "b1630a0597b9d55d09396c8636daf443890a46df"
},
"_source": "git://github.com/PolymerElements/paper-toggle-button.git",
"_target": "~1.0.5",

View file

@ -1,6 +1,6 @@
{
"name": "paper-toggle-button",
"version": "1.0.7",
"version": "1.0.8",
"description": "A material design toggle button control",
"authors": [
"The Polymer Authors"

View file

@ -98,7 +98,7 @@ Custom property | Description | Default
height: 14px;
}
#toggleBar {
.toggle-bar {
position: absolute;
height: 100%;
width: 100%;
@ -108,16 +108,16 @@ Custom property | Description | Default
transition: background-color linear .08s;
}
:host([checked]) #toggleBar {
:host([checked]) .toggle-bar {
opacity: 0.5;
}
:host([disabled]) #toggleBar {
:host([disabled]) .toggle-bar {
background-color: #000;
opacity: 0.12;
}
#toggleButton {
.toggle-button {
position: absolute;
top: -3px;
height: 20px;
@ -129,22 +129,22 @@ Custom property | Description | Default
will-change: transform;
}
#toggleButton.dragging {
.toggle-button.dragging {
-webkit-transition: none;
transition: none;
}
:host([checked]) #toggleButton {
:host([checked]) .toggle-button {
-webkit-transform: translate(16px, 0);
transform: translate(16px, 0);
}
:host([disabled]) #toggleButton {
:host([disabled]) .toggle-button {
background-color: #bdbdbd;
opacity: 1;
}
#ink {
.toggle-ink {
position: absolute;
top: -14px;
left: -14px;