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

add help text

This commit is contained in:
Luke Pulverenti 2016-04-06 00:22:57 -04:00
parent e6aeced26f
commit c96edef27f
4 changed files with 46 additions and 26 deletions

View file

@ -23,16 +23,22 @@
}
:host:not([icon]) #titleIcon {
display: none!important;
display: none !important;
}
:host #titleIcon {
margin-right: 1em;
}
:host #expandButton {
margin: 0;
display: flex;
align-items: center;
}
</style>
<div>
<paper-button on-tap="toggleExpand" id="expandButton" class="emby-collapsible-button" style="margin:0;display: flex; align-items: center;">
<iron-icon id="titleIcon" icon="[[icon]]"></iron-icon>
<paper-button on-tap="toggleExpand" id="expandButton" class="emby-collapsible-button">
<iron-icon id="titleIcon" icon="[[icon]]" style="[[iconstyle]]"></iron-icon>
<h3 class="emby-collapsible-title" title="[[title]]">[[title]]</h3>
<iron-icon id="expandIcon" style="margin-left: auto; margin-right: .5em;"></iron-icon>
</paper-button>

View file

@ -31,6 +31,8 @@
</div>
<div id="fldDateAdded" style="display: none;">
<paper-input id="txtDateAdded" type="date" label="${LabelDateAdded}"></paper-input>
<div class="fieldDescription">${ConfigureDateAdded}</div>
<br/>
</div>
<div id="fldStatus" style="display: none;margin:1em 0;">
<label for="selectStatus" class="selectLabel">${LabelStatus}</label>

View file

@ -458,10 +458,13 @@ body:not(.dashboardDocument) .btnNotifications {
.adminDrawerPanel #drawer .emby-collapsible-title {
font-size: inherit;
text-transform: none;
color: #333;
margin: .7em 0;
}
.adminDrawerPanel #drawer #expandButton {
color: #333;
}
.adminDrawerLogo {
padding: 1.5em 1em 1.2em;
border-bottom: 1px solid #e0e0e0;
@ -477,9 +480,12 @@ body:not(.dashboardDocument) .btnNotifications {
height: 30px;
}
.adminDrawerPanel #drawer #titleIcon {
color: #666;
height: 20px;
.adminDrawerPanel #drawer #expandIcon {
color: #000;
}
.adminDrawerPanel #drawer emby-collapsible > .style-scope {
margin: .7em 0;
}
.adminDrawerPanel:not([narrow]) .libraryMenuButtonText {
@ -517,22 +523,22 @@ body:not(.dashboardDocument) .btnNotifications {
padding-top: 1em !important;
}
.adminAppsButton{
display: block;
color: inherit!important;
font-weight: normal!important;
text-align: center;
}
.adminAppsButton{
width: 5.3vw;
}
.adminAppsButton + .adminAppsButton {
margin-left: 1.5em;
.adminAppsButton {
display: block;
color: inherit !important;
font-weight: normal !important;
text-align: center;
}
.adminAppsButton paper-icon-button{
width: 4.5vh;
height: 4.5vh;
.adminAppsButton {
width: 5.3vw;
}
.adminAppsButton + .adminAppsButton {
margin-left: 1.5em;
}
.adminAppsButton paper-icon-button {
width: 4.5vh;
height: 4.5vh;
}

View file

@ -690,11 +690,11 @@ var Dashboard = {
if (item.items) {
var style = item.color ? ' iconstyle="color:' + item.color + '"' : '';
if (item.icon) {
var style = item.color ? ' style="color:' + item.color + '"' : '';
menuHtml += '<emby-collapsible icon="' + item.icon + '" title="' + item.name + '">';
menuHtml += '<emby-collapsible icon="' + item.icon + '" title="' + item.name + '"' + style + '>';
} else {
menuHtml += '<emby-collapsible title="' + item.name + '">';
menuHtml += '<emby-collapsible title="' + item.name + '"' + style + '>';
}
menuHtml += item.items.map(Dashboard.getToolsLinkHtml).join('');
menuHtml += '</emby-collapsible>';
@ -746,6 +746,7 @@ var Dashboard = {
}, {
name: Globalize.translate('TabLibrary'),
icon: 'folder',
color: '#ECA403',
items: [
{
name: Globalize.translate('TabFolders'),
@ -793,6 +794,7 @@ var Dashboard = {
}, {
name: Globalize.translate('DLNA'),
icon: 'live-tv',
color: '#E5342E',
items: [
{
name: Globalize.translate('TabSettings'),
@ -810,6 +812,7 @@ var Dashboard = {
}, {
name: Globalize.translate('TabLiveTV'),
icon: 'dvr',
color: '#293AAE',
items: [
{
name: Globalize.translate('TabSettings'),
@ -833,6 +836,7 @@ var Dashboard = {
}, {
name: Globalize.translate('TabPlayback'),
icon: 'play-circle-filled',
color: '#E5342E',
items: [
{
name: Globalize.translate('TabCinemaMode'),
@ -862,6 +866,7 @@ var Dashboard = {
}, {
name: Globalize.translate('TabPlugins'),
icon: 'add-shopping-cart',
color: '#9D22B1',
items: [
{
name: Globalize.translate('TabMyPlugins'),
@ -904,6 +909,7 @@ var Dashboard = {
}, {
name: Globalize.translate('TabAdvanced'),
icon: 'settings',
color: '#F16834',
items: [
{
name: Globalize.translate('TabAutoOrganize'),