1/*
2 *
3 * The following subclasses are used for list displays that deal with tv
4 * programming.
5 *
6/*/
7
8/* some classes for various list displays */
9    .list {    background-color: #191c26 }
10    .list_separator {
11        background-color: #203670;
12        border-top:       4px;
13    }
14
15/* The category legend, and its associated popup */
16    #command_choices a {
17        white-space: nowrap;
18    }
19
20    #category_legend_popup {
21        position:         absolute;
22        visibility:       hidden;
23        top:              0px;
24        left:             0px;
25        padding:          2px;
26        white-space:      nowrap;
27    }
28    #category_legend_popup table {
29        font-size:        9pt;
30    }
31
32/* A class for the left-cleared <dl> lists used for program details popups */
33    dl.details_list {
34        font-size:  9pt;
35        margin:     .125em;
36        max-width:  41em;
37    }
38    dl.details_list dt {
39        clear:       left;
40        float:       left;
41        width:       9em;
42        padding-top: 3px;
43        text-align:  right;
44        color:       #ffe;
45        white-space: nowrap;
46    }
47    dl.details_list dd {
48        padding-top: 3px;
49        margin-left: 9.5em;
50    }
51
52/* Control the look of the text-based HDTV stamp throughout MythWeb */
53    .hdtv_icon {
54        font-size:   9pt;
55        float:       right;
56        color:       yellow;
57        display:     inline;
58        font-weight: bold;
59    }
60
61/* a class for the the cells containing recorded programs in recorded_programs.php */
62.scheduled   { background-color: #506090; }
63.conflict    { background-color: #806050; }
64.duplicate   { background-color: #304050; }
65.deactivated { background-color: #508060; }
66
67.will_record              { border: 1px solid  #00F000 !important; }
68.record_weekly            { border: 1px solid  #00F000 !important; }
69.record_timeslot          { border: 1px solid  #00F000 !important; }
70.record_once              { border: 1px solid  #00F000 !important; }
71.record_always            { border: 1px solid  #00F000 !important; }
72.record_conflicting       { border: 1px solid  #FF0000 !important; }
73.record_duplicate         { border: 2px dashed #90B0A0 !important; }
74.record_old_duplicate     { border: 1px dashed #90B0A0 !important; }
75.record_suppressed        { border: 2px dotted #60B0B0 !important; }
76.record_override_suppress { border: 2px dotted #D03060 !important; }
77.record_override_record   { border: 2px solid  #00FF90 !important; }
78
79
80/* There should be exactly one class in the next section corresponding to
81    each possible value of RecStatus_Types as defined in
82    includes/programs.php */
83.rec_class {
84    background:  transparent;
85    text-align:  center;
86}
87.rec_class.WillRecord     { font-weight: bold; }
88.rec_class.Recording      { font-weight: bold; }
89.Recording                { color: #00FF00; border-width: 2px }
90.WillRecord               { color: #00FF00; }
91.PreviousRecording        { color: #90B0A0; }
92.CurrentRecording         { color: #90D0A0; }
93.Repeat                   { color: #90B0A0; }
94.EarlierShowing           { color: #90FFA0; }
95.LaterShowing             { color: #90FFA0; }
96.TooManyRecordings        { color: #60B0B0; }
97.Cancelled                { color: #60B0B0; }
98.Conflicting              { color: #FF0000; }
99.LowDiskSpace             { color: #60B0B0; }
100.TunerBusy                { color: #60B0B0; }
101.ManualOverride           { color: #D03060; }
102.Overlap                  { color: #FF0000; }
103
104.type_movie         { background-color: #809090; }
105.type_series        { }
106.type_tvshow        { }
107
108.cat_Action         { background-color: #906020; }
109.cat_Adult          { background-color: #702020; }
110.cat_Animals        { background-color: #609060; }
111.cat_Art_Music      { background-color: #801060; }
112.cat_Business       { background-color: #703010; }
113.cat_Children       { background-color: #B00010; }
114.cat_Comedy         { background-color: #006080; }
115.cat_Crime_Mystery  { background-color: #105050; }
116.cat_Documentary    { background-color: #504020; }
117.cat_Drama          { background-color: #400060; }
118.cat_Educational    { background-color: #606060; }
119.cat_Food           { background-color: #208040; }
120.cat_Game           { background-color: #701010; }
121.cat_Health_Medical { background-color: #806060; }
122.cat_History        { background-color: #807020; }
123.cat_HowTo          { background-color: #A0A000; }
124.cat_Horror         { background-color: #101040; }
125.cat_Misc           { background-color: #403060; }
126.cat_News           { background-color: #606040; }
127.cat_Reality        { background-color: #304040; }
128.cat_Romance        { background-color: #A02050; }
129.cat_Science_Nature { background-color: #008050; }
130.cat_SciFi_Fantasy  { background-color: #606090; }
131.cat_Shopping       { background-color: #103010; }
132.cat_Soaps          { background-color: #508080; }
133.cat_Spiritual      { background-color: #804080; }
134.cat_Sports         { background-color: #005030; }
135.cat_Talk           { background-color: #203040; }
136.cat_Travel         { background-color: #2060B0; }
137.cat_War            { background-color: #B06050; }
138.cat_Western        { background-color: #806040; }
139.cat_Unknown        { background-color: #303030; }
140
141/* deprecated show categories that need to be integreted into the above list via regex, or have new categories created for them */
142.tv_Cine           { background-color: blue;            }
143.tv_Classic        { background-color: gray;            }
144.tv_Collectibles   { background-color: #708090;         }
145.tv_Magazine       { background-color: #48D1CC;         }
146.tv_Movies         { background-color: blue;            }
147.tv_Serie          { background-color: #9932CC;         }
148.tv_SHOW           { background-color: #A0522D;         }
149.tv_Tiempo         { background-color: #33ff99;         }
150