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

make sure ._ osx files are properly ignored

This commit is contained in:
Luke Pulverenti 2015-11-04 18:49:06 -05:00
parent cb8119840a
commit 67524136ed
48 changed files with 1239 additions and 387 deletions

View file

@ -0,0 +1,41 @@
<dom-module id="paper-tabs-demo-styles">
<template>
<style>
:root {
--paper-toolbar-background: #00bcd4;
}
body {
font-family: sans-serif;
margin: 0;
padding: 24px;
color: #333;
}
paper-tabs, paper-toolbar {
background-color: #00bcd4;
color: #fff;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
paper-toolbar paper-tabs {
box-shadow: none;
}
paper-tabs[noink][no-bar] paper-tab.iron-selected {
color: #ffff8d;
}
paper-tabs[align-bottom] {
box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.15);
}
h3 {
font-size: 16px;
font-weight: 400;
padding-top: 20px;
}
</style>
</template>
</dom-module>