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

added recording logging

This commit is contained in:
Luke Pulverenti 2015-08-04 23:43:54 -04:00
parent a2fe57466c
commit 3d3df5717d
7 changed files with 20 additions and 16 deletions

View file

@ -78,6 +78,8 @@ Custom property | Description | Default
`--paper-input-container-label` | Mixin applied to the label | `{}`
`--paper-input-container-label-focus` | Mixin applied to the label when the input is focused | `{}`
`--paper-input-container-input` | Mixin applied to the input | `{}`
`--paper-input-container-prefix` | Mixin applied to the input prefix | `{}`
`--paper-input-container-suffix` | Mixin applied to the input suffix | `{}`
`--paper-input-container-underline` | Mixin applied to the underline | `{}`
`--paper-input-container-underline-focus` | Mixin applied to the underline when the input is focued | `{}`
`--paper-input-container-underline-disabled` | Mixin applied to the underline when the input is disabled | `{}`
@ -231,10 +233,14 @@ This element is `display:block` by default, but you can set the `inline` attribu
@apply(--paper-input-container-input);
}
::content [prefix],
::content [prefix] {
@apply(--paper-font-subhead);
@apply(--paper-input-prefix);
}
::content [suffix] {
@apply(--paper-font-subhead);
@apply(--paper-input-container-input);
@apply(--paper-input-suffix);
}
/* Firefox sets a min-width on the input, which can cause layout issues */