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

fix camera upload folder

This commit is contained in:
Luke Pulverenti 2015-11-02 23:34:47 -05:00
parent 81d876b3cd
commit cb8119840a
28 changed files with 520 additions and 105 deletions

View file

@ -29,24 +29,65 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<h1>&lt;iron-media-query&gt;</h1>
<template is="dom-bind">
<style>
.item {
margin: 8px;
border: 1px solid #ddd;
}
.item .title {
font-weight: bold;
font-size: 1.2em;
background-color: #eee;
padding: 8px;
}
.item[wide-layout] .title {
float: left;
margin: 0 8px 4px 0;
font-size: 1.4em;
}
.item .description {
padding: 8px;
}
.item::after {
content: '';
display: block;
clear: both;
}
</style>
<iron-media-query query="(min-width: 600px)" query-matches="{{wide}}"></iron-media-query>
<iron-media-query full query="print" query-matches="{{print}}"></iron-media-query>
<template is="dom-if" if="{{wide}}">
<p>The viewports width is greater than <code>600px</code></p>
</template>
<template is="dom-if" if="{{!wide}}">
<p>The viewports width is less than <code>600px</code></p>
</template>
<p>
This link's destination is visible when printed:
<a href="http://polymer-project.org">Polymer Project</a>
<template is="dom-if" if="{{print}}">
(http://polymer-project.org)
</template>
</p>
<div class="item" wide-layout$="{{wide}}">
<div class="title">Resize the window</div>
<div class="description">
<template is="dom-if" if="{{!wide}}">
The viewport is less than 600px wide, so the items' titles will
not float.
</template>
<template is="dom-if" if="{{wide}}">
The viewport is at least 600px, so the items' titles will float
to the left.
</template>
Here's another sentence; it's not very long.
</div>
</div>
<div class="item" wide-layout$="{{wide}}">
<div class="title"><code>print</code> example</div>
<div class="description">
<a href="http://polymer-project.org">
This link's destination is visible when this page is printed.
</a>
<template is="dom-if" if="{{print}}">
(http://polymer-project.org)
</template>
This is another sentence which is meant to help fill this box.
</div>
</div>
</template>
</div>