1/*
2
3    The following subclasses are used for list displays
4
5*/
6
7/* a class for the the cells containing recored programs in recorded_programs.php */
8.recorded {    background-color: #444444; } /*#506080*/
9
10/* a class for the the cells containing recorded programs in recorded_programs.php */
11.scheduled   { background-color: #506090; }
12.conflict    { background-color: #806050; }
13.duplicate   { background-color: #304050; }
14.deactivated { background-color: #508060; }
15
16.record_weekly            { border: 1px solid  #00F000; }
17.record_timeslot          { border: 1px solid  #00F000; }
18.record_once              { border: 1px solid  #00F000; }
19.record_always            { border: 1px solid  #00F000; }
20.will_record              { border: 1px solid  #00F000; }
21.record_conflicting       { border: 1px solid  #FF0000; }
22.record_duplicate         { border: 2px dashed #90B0A0; }
23.record_old_duplicate     { border: 1px dashed #90B0A0; }
24.record_suppressed        { border: 2px dotted #60B0B0; }
25.record_override_suppress { border: 2px dotted #D03060; }
26.record_override_record   { border: 2px solid  #00FF90; }
27
28
29/* There should be exactly one class in the next section corresponding to
30    each possible value of RecStatus_Types as defined in
31    includes/programs.php */
32.rec_class {
33    background:  transparent;
34    text-align:  center;
35    font-weight: bold;
36}
37.recording                { color: #00F000; }
38.willRecord               { color: #00F000; }
39.previousRecording        { color: #90B0A0; }
40.currentRecording         { color: #00F000; }
41.repeat                   { color: #90B0A0; }
42.earlierShowing           { color: #90B0A0; }
43.laterShowing             { color: #90B0A0; }
44.tooManyRecordings        { color: #60B0B0; }
45.cancelled                { color: #60B0B0; }
46.conflicting              { color: #FF0000; }
47.lowDiskSpace             { color: #60B0B0; }
48.tunerBusy                { color: #60B0B0; }
49.manualOverride           { color: #D03060; }
50.overlap                  { color: #FF0000; }
51
52.type_movie         { background-color: #A31418; } /*hsl(358,78%,36%)*/
53.type_series        { }
54.type_tvshow        { }
55
56.cat_Action         { background-color: #6B1E0F; } /*hsl(10,75%,24%)*/
57.cat_Adult          { background-color: #A34614; } /*hsl(21,78%,36%)*/
58.cat_Animals        { background-color: #6B400F; } /*hsl(32,75%,24%)*/
59.cat_Art_Music      { background-color: #A37A14; } /*hsl(43,78%,36%)*/
60.cat_Business       { background-color: #6B630F; } /*hsl(55,75%,24%)*/
61.cat_Children       { background-color: #95A314; } /*hsl(66,78%,36%)*/
62.cat_Comedy         { background-color: #516B0F; } /*hsl(77,75%,24%)*/
63.cat_Crime_Mystery  { background-color: #60A314; } /*hsl(88,78%,36%)*/
64.cat_Documentary    { background-color: #2D6B0F; } /*hsl(100,75%,24%)*/
65.cat_Drama          { background-color: #29A314; } /*hsl(111,78%,36%)*/
66.cat_Educational    { background-color: #0F6B12; } /*hsl(122,75%,24%)*/
67.cat_Food           { background-color: #14A333; } /*hsl(133,78%,36%)*/
68.cat_Game           { background-color: #0F6B35; } /*hsl(145,75%,24%)*/
69.cat_Health_Medical { background-color: #14A36A; } /*hsl(156,78%,36%)*/
70.cat_History        { background-color: #0F6B57; } /*hsl(167,75%,24%)*/
71.cat_HowTo          { background-color: #14A39E; } /*hsl(178,78%,36%)*/
72.cat_Horror         { background-color: #0F5B6B; } /*hsl(190,75%,24%)*/
73.cat_Misc           { background-color: #1471A3; } /*hsl(201,78%,36%)*/
74.cat_News           { background-color: #0F3A6B; } /*hsl(212,75%,24%)*/
75.cat_Reality        { background-color: #143CA3; } /*hsl(223,78%,36%)*/
76.cat_Romance        { background-color: #0F166B; } /*hsl(235,75%,24%)*/
77.cat_Science_Nature { background-color: #2214A3; } /*hsl(246,78%,36%)*/
78.cat_SciFi_Fantasy  { background-color: #290F6B; } /*hsl(257,75%,24%)*/
79.cat_Shopping       { background-color: #5714A3; } /*hsl(268,78%,36%)*/
80.cat_Soaps          { background-color: #4C0F6B; } /*hsl(280,75%,24%)*/
81.cat_Spiritual      { background-color: #8D14A3; } /*hsl(291,78%,36%)*/
82.cat_Sports         { background-color: #6B0F68; } /*hsl(302,75%,24%)*/
83.cat_Talk           { background-color: #A31484; } /*hsl(313,78%,36%)*/
84.cat_Travel         { background-color: #6B0F44; } /*hsl(325,75%,24%)*/
85.cat_War            { background-color: #A3144D; } /*hsl(336,78%,36%)*/
86.cat_Western        { background-color: #6B0F23; } /*hsl(347,75%,24%)*/
87.cat_Unknown        { background-color: #303030; } /*hsl(0,0%,19%)*/
88
89/* deprecated show categories that need to be integreted into the above list via regex, or have new categories created for them */
90.tv_Cine           { background-color: blue;            }
91.tv_Classic        { background-color: gray;            }
92.tv_Collectibles   { background-color: slategray;       }
93.tv_Magazine       { background-color: mediumturquoise; }
94.tv_Movies         { background-color: blue;            }
95.tv_Serie          { background-color: darkorchid;      }
96.tv_SHOW           { background-color: sienna;          }
97.tv_Tiempo         { background-color: #33ff99;         }
98
99
100