1/*
2
3    The following subclasses are used for list displays
4
5*/
6
7/* a class for the the cells containing recorded programs in recorded_programs.php */
8.scheduled   { background-color: #506090; }
9.conflict    { background-color: #806050; }
10.duplicate   { background-color: #304050; }
11.deactivated { background-color: #508060; }
12
13.will_record              { border: 1px solid  #00F000; }
14.record_weekly            { border: 1px solid  #00F000; }
15.record_timeslot          { border: 1px solid  #00F000; }
16.record_once              { border: 1px solid  #00F000; }
17.record_always            { border: 1px solid  #00F000; }
18.record_conflicting       { border: 1px solid  #FF0000; }
19.record_duplicate         { border: 2px dashed #90B0A0; }
20.record_old_duplicate     { border: 1px dashed #90B0A0; }
21.record_suppressed        { border: 2px dotted #60B0B0; }
22.record_override_suppress { border: 2px dotted #D03060; }
23.record_override_record   { border: 2px solid  #00FF90; }
24
25
26/* There should be exactly one class in the next section corresponding to
27    each possible value of RecStatus_Types as defined in
28    includes/programs.php */
29.rec_class {
30    background:  transparent;
31    text-align:  center;
32}
33.rec_class.WillRecord     { font-weight: bold; }
34.rec_class.Recording      { font-weight: bold; }
35.Recording                { color: #00FF00; border-width: 2px }
36.WillRecord               { color: #00FF00; }
37.PreviousRecording        { color: #90B0A0; }
38.CurrentRecording         { color: #90D0A0; }
39.Repeat                   { color: #90B0A0; }
40.EarlierShowing           { color: #90FFA0; }
41.LaterShowing             { color: #90FFA0; }
42.TooManyRecordings        { color: #60B0B0; }
43.Cancelled                { color: #60B0B0; }
44.Conflicting              { color: #FF0000; }
45.LowDiskSpace             { color: #60B0B0; }
46.TunerBusy                { color: #60B0B0; }
47.ManualOverride           { color: #D03060; }
48.Overlap                  { color: #FF0000; }
49
50.type_movie         { background-color: #809090; }
51.type_series        { }
52.type_tvshow        { }
53
54.cat_Action         { background-color: #906020; }
55.cat_Adult          { background-color: #702020; }
56.cat_Animals        { background-color: #609060; }
57.cat_Art_Music      { background-color: #801060; }
58.cat_Business       { background-color: #703010; }
59.cat_Children       { background-color: #B00010; }
60.cat_Comedy         { background-color: #006080; }
61.cat_Crime_Mystery  { background-color: #105050; }
62.cat_Documentary    { background-color: #504020; }
63.cat_Drama          { background-color: #400060; }
64.cat_Educational    { background-color: #606060; }
65.cat_Food           { background-color: #208040; }
66.cat_Game           { background-color: #701010; }
67.cat_Health_Medical { background-color: #806060; }
68.cat_History        { background-color: #807020; }
69.cat_HowTo          { background-color: #A0A000; }
70.cat_Horror         { background-color: #101040; }
71.cat_Misc           { background-color: #403060; }
72.cat_News           { background-color: #606040; }
73.cat_Reality        { background-color: #304040; }
74.cat_Romance        { background-color: #A02050; }
75.cat_Science_Nature { background-color: #008050; }
76.cat_SciFi_Fantasy  { background-color: #606090; }
77.cat_Shopping       { background-color: #103010; }
78.cat_Soaps          { background-color: #508080; }
79.cat_Spiritual      { background-color: #804080; }
80.cat_Sports         { background-color: #005030; }
81.cat_Talk           { background-color: #203040; }
82.cat_Travel         { background-color: #2060B0; }
83.cat_War            { background-color: #B06050; }
84.cat_Western        { background-color: #806040; }
85.cat_Unknown        { background-color: #303030; }
86
87/* deprecated show categories that need to be integreted into the above list via regex, or have new categories created for them */
88.tv_Cine           { background-color: blue;            }
89.tv_Classic        { background-color: gray;            }
90.tv_Collectibles   { background-color: slategray;       }
91.tv_Magazine       { background-color: mediumturquoise; }
92.tv_Movies         { background-color: blue;            }
93.tv_Serie          { background-color: darkorchid;      }
94.tv_SHOW           { background-color: sienna;          }
95.tv_Tiempo         { background-color: #33ff99;         }
96
97
98