1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/paper-item/paper-item-shared-styles.html

71 lines
2 KiB
HTML
Raw Normal View History

2015-09-23 22:31:40 -04:00
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
2015-12-23 12:46:01 -05:00
<link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
<link rel="import" href="../paper-styles/color.html">
2016-04-13 01:28:45 -04:00
<link rel="import" href="../paper-styles/default-theme.html">
2016-04-16 12:51:35 -04:00
<link rel="import" href="../paper-styles/typography.html">
2015-12-23 12:46:01 -05:00
2015-09-23 22:31:40 -04:00
<dom-module id="paper-item-shared-styles">
<template>
<style>
2016-04-13 01:28:45 -04:00
:host, .paper-item {
2015-09-23 22:31:40 -04:00
display: block;
2015-12-23 12:46:01 -05:00
position: relative;
2015-09-23 22:31:40 -04:00
min-height: var(--paper-item-min-height, 48px);
padding: 0px 16px;
}
2016-04-13 01:28:45 -04:00
.paper-item {
@apply(--paper-font-subhead);
border:none;
outline: none;
background: white;
width: 100%;
text-align: left;
}
:host([hidden]), .paper-item[hidden] {
2015-12-23 12:46:01 -05:00
display: none !important;
}
2016-04-13 01:28:45 -04:00
:host(.iron-selected), .paper-item.iron-selected {
2015-12-14 10:43:03 -05:00
font-weight: var(--paper-item-selected-weight, bold);
2015-12-23 12:46:01 -05:00
2015-12-14 10:43:03 -05:00
@apply(--paper-item-selected);
}
2016-04-13 01:28:45 -04:00
:host([disabled]), .paper-item[disabled] {
2015-12-14 10:43:03 -05:00
color: var(--paper-item-disabled-color, --disabled-text-color);
2015-12-23 12:46:01 -05:00
2015-12-14 10:43:03 -05:00
@apply(--paper-item-disabled);
}
2016-04-13 01:28:45 -04:00
:host(:focus), .paper-item:focus {
2015-12-14 10:43:03 -05:00
position: relative;
outline: 0;
2015-12-23 12:46:01 -05:00
2015-12-14 10:43:03 -05:00
@apply(--paper-item-focused);
}
2016-04-13 01:28:45 -04:00
:host(:focus):before, .paper-item:focus:before {
2015-12-14 10:43:03 -05:00
@apply(--layout-fit);
2015-12-23 12:46:01 -05:00
2015-12-14 10:43:03 -05:00
background: currentColor;
2015-12-23 12:46:01 -05:00
content: '';
2015-12-14 10:43:03 -05:00
opacity: var(--dark-divider-opacity);
pointer-events: none;
@apply(--paper-item-focused-before);
2015-09-23 22:31:40 -04:00
}
</style>
</template>
</dom-module>