Ticket #11506: 0002-Inverted-all-colours-in-negative-skin.patch
| File 0002-Inverted-all-colours-in-negative-skin.patch, 56.4 KB (added by , 13 years ago) |
|---|
-
skins/negative/backend_log.css
From 4e90c263670b6a8e0214538c654799679720c7a6 Mon Sep 17 00:00:00 2001 From: Tim Phipps <tim@phipps-hutton.freeserve.co.uk> Date: Wed, 24 Apr 2013 12:28:22 +0100 Subject: [PATCH 2/2] Inverted all colours in 'negative' skin. --- skins/negative/backend_log.css | 22 ++--- skins/negative/header.css | 44 +++++----- skins/negative/menus.css | 6 +- skins/negative/music.css | 174 ++++++++++++++++++++-------------------- skins/negative/programming.css | 150 +++++++++++++++++----------------- skins/negative/remote.css | 62 +++++++------- skins/negative/settings.css | 48 +++++------ skins/negative/stats.css | 14 ++-- skins/negative/status.css | 38 ++++----- skins/negative/style.css | 110 ++++++++++++------------- skins/negative/tv_channel.css | 12 +-- skins/negative/tv_detail.css | 78 +++++++++--------- skins/negative/tv_list.css | 14 ++-- skins/negative/tv_recorded.css | 18 ++--- skins/negative/tv_schedule.css | 14 ++-- skins/negative/tv_search.css | 6 +- skins/negative/tv_upcoming.css | 14 ++-- skins/negative/welcome.css | 14 ++-- 18 files changed, 419 insertions(+), 419 deletions(-) diff --git a/skins/negative/backend_log.css b/skins/negative/backend_log.css index b694bb6..2f5980d 100644
a b 1 1 #backend_logs { 2 2 margin: 10px auto; 3 border: 1px solid # 48f;4 border-right: 2px solid # 48f;3 border: 1px solid #b70; 4 border-right: 2px solid #b70; 5 5 border-collapse: collapse; 6 color: white;6 color: black; 7 7 width: 99%; 8 8 } 9 9 10 10 #backend_logs td { 11 11 padding: 2px; 12 border: 1px solid # 48f;13 border-right: 1px solid # 04a;12 border: 1px solid #b70; 13 border-right: 1px solid #fb5; 14 14 } 15 15 #backend_logs th { 16 16 padding: 2px 5px; 17 border: 1px solid # 48f;18 border-right: 1px solid # 04a;17 border: 1px solid #b70; 18 border-right: 1px solid #fb5; 19 19 text-align: left; 20 20 } 21 21 22 22 #backend_logs tr.header { 23 background-color: # 134;24 color: # ffb;23 background-color: #ecb; 24 color: #004; 25 25 } 26 26 27 27 #backend_logs tr.odd { 28 background-color: # 475;28 background-color: #b8a; 29 29 } 30 30 31 31 #backend_logs tr.even { 32 background-color: # 355;32 background-color: #caa; 33 33 } -
skins/negative/header.css
diff --git a/skins/negative/header.css b/skins/negative/header.css index 0ff6f6b..a83c0e4 100644
a b 20 20 float: left; 21 21 margin: 0px 5px; 22 22 padding: 5px; 23 background-color: # 347;24 border-top: 1px solid # 8ad;25 border-right: 1px solid # 003;26 border-bottom: 1px solid # 000;27 border-left: 1px solid # 79c;23 background-color: #cb8; 24 border-top: 1px solid #752; 25 border-right: 1px solid #ffc; 26 border-bottom: 1px solid #fff; 27 border-left: 1px solid #863; 28 28 -moz-border-radius: 8px; 29 29 text-align: center; 30 30 height: 48px; 31 31 width: 48px; 32 32 } 33 33 #sections a:hover { 34 background-color: # 458;34 background-color: #ba7; 35 35 } 36 36 #sections a img { 37 37 border: none; … … 39 39 } 40 40 41 41 #sections a.current_section { 42 background-color: # 164;43 border-top: 1px solid # 7b9;44 border-right: 1px solid # 030;45 border-bottom: 1px solid # 000;46 border-left: 1px solid # 6a8;42 background-color: #e9b; 43 border-top: 1px solid #846; 44 border-right: 1px solid #fcf; 45 border-bottom: 1px solid #fff; 46 border-left: 1px solid #957; 47 47 } 48 48 #sections a.current_section:hover { 49 background-color: # 275;49 background-color: #d8a; 50 50 } 51 51 52 52 #tv_link { … … 74 74 #help_wrapper { 75 75 height: 21px; 76 76 margin-bottom: 3px; 77 background-color: # 247;78 border-top: 1px solid # 013;79 border-right: 1px solid # 79c;80 border-bottom: 1px solid # 68b;81 border-left: 1px solid # 002;77 background-color: #db8; 78 border-top: 1px solid #fec; 79 border-right: 1px solid #863; 80 border-bottom: 1px solid #974; 81 border-left: 1px solid #ffd; 82 82 -moz-border-radius: 6px; 83 83 min-width: 225px; 84 84 } … … 92 92 margin-top: 2px; 93 93 padding: 3px 5px; 94 94 height: 26px; 95 background-color: # 247;96 border-top: 1px solid # 013;97 border-right: 1px solid # 79c;98 border-bottom: 1px solid # 68b;99 border-left: 1px solid # 002;95 background-color: #db8; 96 border-top: 1px solid #fec; 97 border-right: 1px solid #863; 98 border-bottom: 1px solid #974; 99 border-left: 1px solid #ffd; 100 100 -moz-border-radius: 8px; 101 101 min-width: 225px; 102 102 white-space: nowrap; -
skins/negative/menus.css
diff --git a/skins/negative/menus.css b/skins/negative/menus.css index d2a7e67..d749760 100644
a b 9 9 10 10 .popup dl { 11 11 min-width: 40em; 12 color: # dedede;13 background-color: # 265990;14 border: 2px ridge # 127;12 color: #212121; 13 background-color: #d9a66f; 14 border: 2px ridge #ed8; 15 15 padding: 5px; 16 16 } -
skins/negative/music.css
diff --git a/skins/negative/music.css b/skins/negative/music.css index bfd8a9d..2fccc5c 100644
a b 1 1 mp3act { 2 2 padding: 22px; 3 3 margin:0; 4 color: # 333;4 color: #ccc; 5 5 text-align: center; 6 6 font: 65% Verdana, Sans-serif; 7 7 } … … ul.music{ 16 16 list-style-type: none; 17 17 } 18 18 a.music{ 19 color: blue;19 color: #ff0; 20 20 } 21 21 22 22 a.music:hover{ 23 /*color: # fff;24 background: # F21518;23 /*color: #000; 24 background: #0deae7; 25 25 text-decoration: none;*/ 26 color: # F21518;26 color: #0deae7; 27 27 } 28 28 img{ 29 29 border: 0; 30 30 } 31 31 input,select{ 32 border: 1px solid # ccc;33 border-color: # aaa #ccc #ccc #aaa;34 background: # f3f3f3;35 color: # 555;32 border: 1px solid #333; 33 border-color: #555 #333 #333 #555; 34 background: #0c0c0c; 35 color: #aaa; 36 36 font-size: 100%; 37 37 padding: 2px 3px; 38 38 vertical-align: middle; … … select{ 47 47 padding: 2px 0 2px 3px; 48 48 } 49 49 input:focus{ 50 border: 1px solid # 999;51 background: # FBF9D3;52 color: # 000;53 border-color: # 777 #bbb #bbb #777;50 border: 1px solid #666; 51 background: #04064c; 52 color: #fff; 53 border-color: #888 #444 #444 #888; 54 54 } 55 55 56 56 input.btn,input.redbtn{ 57 background: # 244A79;58 color: # fff;57 background: #dbb586; 58 color: #000; 59 59 padding: 2px; 60 border-color: # 0E2F58;60 border-color: #f1d0a7; 61 61 font: normal 10px sans-serif; 62 62 } 63 63 input.redbtn{ 64 background: # F21518;64 background: #0deae7; 65 65 } 66 66 input.redbtn:hover{ 67 background: # BE0D0F;67 background: #41f2f0; 68 68 } 69 69 input.btn:hover{ 70 background: # 0E2F58;70 background: #f1d0a7; 71 71 } 72 72 73 73 input.btn2{ … … input.btn2{ 76 76 } 77 77 78 78 input.btn2:hover{ 79 background: # eee;80 border-color: # 888;81 color: # 222;79 background: #111; 80 border-color: #777; 81 color: #ddd; 82 82 } 83 83 84 84 .left{ … … input.btn2:hover{ 94 94 clear: both; 95 95 } 96 96 .error{ 97 color: # E63838;97 color: #19c7c7; 98 98 font-weight: bold; 99 99 } 100 100 p#error{ 101 color: # f20000;101 color: #0dffff; 102 102 font-weight: bold; 103 103 } 104 104 #breadcrumb{ … … position: relative; 113 113 } 114 114 #breadcrumb ul{ 115 115 z-index: 5; 116 border: 1px solid # 333;116 border: 1px solid #ccc; 117 117 display: none; 118 118 top:12px; 119 119 left:0; 120 120 position: absolute; 121 121 background: transparent url("./img/music/libg.png"); 122 color: # fff;122 color: #000; 123 123 margin:-1px 0 0 0; 124 124 padding:0; 125 125 width: 150px; … … width: 100%; 142 142 #breadcrumb ul li a{ 143 143 display: block; 144 144 padding: 2px 4px; 145 color: # fff;145 color: #000; 146 146 margin:0; 147 147 z-index: 5; 148 148 text-decoration: none; … … width: 100%; 159 159 160 160 } 161 161 #breadcrumb ul li a:hover{ 162 background: # FCF7A5;163 color: # 000;162 background: #03085a; 163 color: #fff; 164 164 } 165 165 #breadcrumb ul#letters li a:hover{ 166 background: # FCF7A5;167 color: # 000;166 background: #03085a; 167 color: #fff; 168 168 } 169 169 #topinfo{ 170 170 171 171 font-size: 90%; 172 color: # 666;172 color: #999; 173 173 text-align: left; 174 174 padding: 0 0 4px 0; 175 175 … … p.pad{ 179 179 } 180 180 181 181 #wrap{ 182 /*background: # fff;183 border: 1px solid # ccc;*/182 /*background: #000; 183 border: 1px solid #333;*/ 184 184 text-align: left; 185 185 padding: 0px; 186 186 margin:0; 187 187 position: relative; 188 188 189 color: # 333;189 color: #ccc; 190 190 } 191 191 192 192 #header{ 193 193 position: relative; 194 /* background: # 0E2F58;*/194 /* background: #f1d0a7;*/ 195 195 height: 50px; 196 color: # fff;196 color: #000; 197 197 padding: 8px 0 0px 15px; 198 198 } 199 199 #header #controls{ … … p.pad{ 204 204 width: 48%; 205 205 font-size: 90%; 206 206 line-height: 1.1em; 207 color: # fff;207 color: #000; 208 208 } 209 209 210 210 #header #controls .buttons{ … … p.pad{ 217 217 218 218 } 219 219 #header h1{ 220 color: # 9ABEE5;220 color: #65411a; 221 221 padding: 0; 222 222 margin:0; 223 223 font-size: 150%; … … ul#nav li{ 235 235 } 236 236 ul#nav li a{ 237 237 display: block; 238 background: # 265990; /* #244A79; */238 background: #d9a66f; /* #dbb586; */ 239 239 padding: 4px 5px; 240 color: # dedede;240 color: #414141; 241 241 text-decoration: none; 242 242 margin:0; 243 243 } 244 244 ul#nav li a:hover{ 245 background: # 416899;246 color: # fff;245 background: #be9766; 246 color: #000; 247 247 } 248 248 ul#nav li a.c{ 249 background: # fff;250 color: # F48603;249 background: #000; 250 color: #0b79fc; 251 251 font-weight: bold; 252 252 } 253 253 #loading{ 254 254 display: none; 255 255 position: absolute; 256 256 top: 80px; 257 color: # 78B855;257 color: #8747aa; 258 258 padding: 10px; 259 background: # CCFF99;260 border: 1px solid # 78B855;259 background: #330066; 260 border: 1px solid #8747aa; 261 261 z-index: 4; 262 262 left: 30%; 263 263 } … … ul#nav li a.c{ 276 276 277 277 } 278 278 .box{ 279 background: # E0E0E0;280 border: 1px solid # ccc;279 background: #1f1f1f; 280 border: 1px solid #333; 281 281 padding: 0 0 8px 0; 282 282 position: relative; 283 283 } … … ul#nav li a.c{ 290 290 width: 450px; 291 291 height: 230px; 292 292 background: transparent url("./img/music/libg.png"); 293 color: # fff;293 color: #000; 294 294 font-size: 110%; 295 295 padding: 5px; 296 296 } … … ul#nav li a.c{ 298 298 font-size: 120%; 299 299 } 300 300 #box_extra input{ 301 background: # 333;302 border-color: # 999;303 color: # fff;301 background: #ccc; 302 border-color: #666; 303 color: #000; 304 304 } 305 305 306 306 #box_extra select{ 307 background: # 333;308 border-color: # 999;309 color: # fff;307 background: #ccc; 308 border-color: #666; 309 color: #000; 310 310 } 311 311 312 312 .box ul{ 313 313 margin: 0 10px; 314 314 padding: 0px 0px; 315 background: # f3f3f3;315 background: #0c0c0c; 316 316 clear: both; 317 317 } 318 318 .box ul li{ … … ul#nav li a.c{ 320 320 border: 1px solid transparent; 321 321 border-width: 1px 0px 1px 0px; 322 322 position: relative; 323 background: # f3f3f3;323 background: #0c0c0c; 324 324 } 325 325 326 326 .box ul li.alt{ 327 background: # DEE6EC;327 background: #411913; 328 328 } 329 329 .box ul li span.user{ 330 330 float: left; 331 331 width: 200px; 332 332 } 333 333 .box ul li small{ 334 color: # 888;334 color: #777; 335 335 letter-spacing: -1px; 336 336 } 337 337 338 338 .box ul li span.links a{ 339 339 text-decoration: underline; 340 color: blue;340 color: #ff0; 341 341 } 342 342 .box ul li span.links a:hover{ 343 color: red;343 color: #0ff; 344 344 } 345 345 .box ul li:hover{ 346 background: # FCF7A5;346 background: #03085a; 347 347 color: #000; 348 border-color: # 999;348 border-color: #666; 349 349 } 350 350 .box ul li.currentplay{ 351 background: # 96D1EF;352 color: # 000;353 border-color: # 666;351 background: #694e10; 352 color: #fff; 353 border-color: #999; 354 354 } 355 355 356 356 .box ul li p{ … … ul#nav li a.c{ 363 363 right: 15px; 364 364 width: 145px; 365 365 background: transparent url("./img/music/libg.png"); 366 color: # fff;366 color: #000; 367 367 } 368 368 369 369 .box ul li:hover p{ … … ul#nav li a.c{ 372 372 373 373 .box ul li a{ 374 374 text-decoration: none; 375 color: # 333;375 color: #ccc; 376 376 } 377 377 .box ul li a:hover{ 378 color: # 000;378 color: #fff; 379 379 } 380 380 .box ul#letters{ 381 381 height: 18px; … … ul#nav li a.c{ 390 390 } 391 391 392 392 .box ul#letters li:hover{ 393 background: # FCF7A5;394 border-color: # 999;393 background: #03085a; 394 border-color: #666; 395 395 } 396 396 397 397 .box p{ … … ul#nav li a.c{ 404 404 width: 60px; 405 405 float: right; 406 406 padding: 2px; 407 background: # f3f3f3;408 border: 1px solid # 999;407 background: #0c0c0c; 408 border: 1px solid #666; 409 409 margin-bottom: 4px; 410 410 } 411 411 .box img#bigart{ 412 412 display: none; 413 413 position: absolute; 414 414 z-index: 2; 415 background: # f3f3f3;415 background: #0c0c0c; 416 416 padding: 3px; 417 border: 1px solid # 666;417 border: 1px solid #999; 418 418 top:10px; 419 419 right: 80px; 420 420 } 421 421 .box p img:hover{ 422 border-color: # 555;422 border-color: #aaa; 423 423 cursor: pointer; 424 424 } 425 425 426 426 .box .head{ 427 427 padding: 4px; 428 background: # ccc;428 background: #333; 429 429 } 430 430 .box .head a{ 431 background: # 244A79;432 color: # fff;431 background: #dbb586; 432 color: #000; 433 433 padding: 2px; 434 434 text-decoration: none; 435 435 font: normal 9px sans-serif; 436 436 } 437 437 .box .head a:hover{ 438 background: # 0E2F58;438 background: #f1d0a7; 439 439 } 440 440 .box .head a.red{ 441 background: # F21518;441 background: #0deae7; 442 442 } 443 443 .box .head a.red:hover{ 444 background: # BE0D0F;444 background: #41f2f0; 445 445 } 446 446 .box .head h2{ 447 447 font-size: 120%; … … ul#nav li a.c{ 451 451 padding: 0 0 0 0px; 452 452 margin: 0 10px 0 10px; 453 453 font-size: 120%; 454 border-bottom: 1px solid # ccc;454 border-bottom: 1px solid #333; 455 455 } 456 456 457 457 .loginbox{ 458 458 width: 250px; 459 459 margin:0 auto; 460 background: # fff;461 border: 1px solid # ccc;460 background: #000; 461 border: 1px solid #333; 462 462 text-align: left; 463 463 } 464 464 .loginbox p{ -
skins/negative/programming.css
diff --git a/skins/negative/programming.css b/skins/negative/programming.css index 60042a7..8607c92 100644
a b 6 6 /*/ 7 7 8 8 /* some classes for various list displays */ 9 .list { background-color: # 191c26}9 .list { background-color: #e6e3d9 } 10 10 .list_separator { 11 background-color: # 203670;11 background-color: #dfc98f; 12 12 border-top: 4px; 13 13 } 14 14 … … 41 41 width: 9em; 42 42 padding-top: 3px; 43 43 text-align: right; 44 color: # ffe;44 color: #001; 45 45 white-space: nowrap; 46 46 } 47 47 dl.details_list dd { … … 53 53 .hdtv_icon { 54 54 font-size: 9pt; 55 55 float: right; 56 color: yellow;56 color: #00f; 57 57 display: inline; 58 58 font-weight: bold; 59 59 } 60 60 61 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; }62 .scheduled { background-color: #af9f6f; } 63 .conflict { background-color: #7f9faf; } 64 .duplicate { background-color: #cfbfaf; } 65 .deactivated { background-color: #af7f9f; } 66 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_channel { border: 1px solid # 00F000!important; }72 .record_always { border: 1px solid # 00F000!important; }73 .record_conflicting { border: 1px solid # FF0000!important; }74 .record_duplicate { border: 2px dashed # 90B0A0!important; }75 .record_old_duplicate { border: 1px dashed # 90B0A0!important; }76 .record_suppressed { border: 2px dotted # 60B0B0!important; }77 .record_override_suppress { border: 2px dotted # D03060!important; }78 .record_override_record { border: 2px solid # 00FF90!important; }67 .will_record { border: 1px solid #ff0fff !important; } 68 .record_weekly { border: 1px solid #ff0fff !important; } 69 .record_timeslot { border: 1px solid #ff0fff !important; } 70 .record_once { border: 1px solid #ff0fff !important; } 71 .record_channel { border: 1px solid #ff0fff !important; } 72 .record_always { border: 1px solid #ff0fff !important; } 73 .record_conflicting { border: 1px solid #00ffff !important; } 74 .record_duplicate { border: 2px dashed #6f4f5f !important; } 75 .record_old_duplicate { border: 1px dashed #6f4f5f !important; } 76 .record_suppressed { border: 2px dotted #9f4f4f !important; } 77 .record_override_suppress { border: 2px dotted #2fcf9f !important; } 78 .record_override_record { border: 2px solid #ff006f !important; } 79 79 80 80 81 81 /* There should be exactly one class in the next section corresponding to … … 87 87 } 88 88 .rec_class.WillRecord { font-weight: bold; } 89 89 .rec_class.Recording { font-weight: bold; } 90 .Recording { color: # 00FF00; border-width: 2px }91 .WillRecord { color: # 00FF00; }92 .PreviousRecording { color: # 90B0A0; }93 .CurrentRecording { color: # 90D0A0; }94 .Repeat { color: # 90B0A0; }95 .EarlierShowing { color: # 90FFA0; }96 .LaterShowing { color: # 90FFA0; }97 .TooManyRecordings { color: # 60B0B0; }98 .Cancelled { color: # 60B0B0; }99 .Conflicting { color: # FF0000; }100 .LowDiskSpace { color: # 60B0B0; }101 .TunerBusy { color: # 60B0B0; }102 .ManualOverride { color: # D03060; }103 .Overlap { color: # FF0000; }90 .Recording { color: #ff00ff; border-width: 2px } 91 .WillRecord { color: #ff00ff; } 92 .PreviousRecording { color: #6f4f5f; } 93 .CurrentRecording { color: #6f2f5f; } 94 .Repeat { color: #6f4f4f; } 95 .EarlierShowing { color: #6f005f; } 96 .LaterShowing { color: #6f005f; } 97 .TooManyRecordings { color: #9f4f4f; } 98 .Cancelled { color: #9f4f4f; } 99 .Conflicting { color: #00ffff; } 100 .LowDiskSpace { color: #9f4f4f; } 101 .TunerBusy { color: #9fbfbf; } 102 .ManualOverride { color: #2fcf9f; } 103 .Overlap { color: #00ffff; } 104 104 105 .cat_Action { background-color: # 906020; }106 .cat_Adult { background-color: # 702020; }107 .cat_Animals { background-color: # 609060; }108 .cat_Art_Music { background-color: # 801060; }109 .cat_Business { background-color: # 703010; }110 .cat_Children { background-color: # B00010; }111 .cat_Comedy { background-color: # 006080; }112 .cat_Crime_Mystery { background-color: # 105050; }113 .cat_Documentary { background-color: # 504020; }114 .cat_Drama { background-color: # 400060; }115 .cat_Educational { background-color: # 606060; }116 .cat_Food { background-color: # 208040; }117 .cat_Game { background-color: # 701010; }118 .cat_Health_Medical { background-color: # 806060; }119 .cat_History { background-color: # 807020; }120 .cat_HowTo { background-color: # A0A000; }121 .cat_Horror { background-color: # 101040; }122 .cat_Misc { background-color: # 403060; }123 .cat_News { background-color: # 606040; }124 .cat_Reality { background-color: # 304040; }125 .cat_Romance { background-color: # A02050; }126 .cat_Science_Nature { background-color: # 008050; }127 .cat_SciFi_Fantasy { background-color: # 606090; }128 .cat_Shopping { background-color: # 103010; }129 .cat_Soaps { background-color: # 508080; }130 .cat_Spiritual { background-color: # 804080; }131 .cat_Sports { background-color: # 005030; }132 .cat_Talk { background-color: # 203040; }133 .cat_Travel { background-color: # 2060B0; }134 .cat_War { background-color: # B06050; }135 .cat_Western { background-color: # 806040; }136 .cat_Unknown { background-color: # 303030; }105 .cat_Action { background-color: #6f9fdf; } 106 .cat_Adult { background-color: #8fdfdf; } 107 .cat_Animals { background-color: #9f6f9f; } 108 .cat_Art_Music { background-color: #7fef9f; } 109 .cat_Business { background-color: #8fcfef; } 110 .cat_Children { background-color: #4fffef; } 111 .cat_Comedy { background-color: #ff9f7f; } 112 .cat_Crime_Mystery { background-color: #efafaf; } 113 .cat_Documentary { background-color: #afbfdf; } 114 .cat_Drama { background-color: #bfff9f; } 115 .cat_Educational { background-color: #9f9f9f; } 116 .cat_Food { background-color: #df7fbf; } 117 .cat_Game { background-color: #8fefef; } 118 .cat_Health_Medical { background-color: #7f9f9f; } 119 .cat_History { background-color: #7f8fef; } 120 .cat_HowTo { background-color: #5f5fff; } 121 .cat_Horror { background-color: #efefbf; } 122 .cat_Misc { background-color: #bfcf9f; } 123 .cat_News { background-color: #9f9fbf; } 124 .cat_Reality { background-color: #cfbfbf; } 125 .cat_Romance { background-color: #5fefaf; } 126 .cat_Science_Nature { background-color: #ff7faf; } 127 .cat_SciFi_Fantasy { background-color: #9f9f6f; } 128 .cat_Shopping { background-color: #efcfef; } 129 .cat_Soaps { background-color: #af7f7f; } 130 .cat_Spiritual { background-color: #7fbf7f; } 131 .cat_Sports { background-color: #ffafcf; } 132 .cat_Talk { background-color: #dfcfbf; } 133 .cat_Travel { background-color: #df9f4f; } 134 .cat_War { background-color: #4f9faf; } 135 .cat_Western { background-color: #7f9fbf; } 136 .cat_Unknown { background-color: #cfcfcf; } 137 137 138 .cat_movie { background-color: # 809090!important; }138 .cat_movie { background-color: #7f6f6f !important; } 139 139 .cat_series { } 140 140 .cat_tvshow { } 141 141 142 142 /* deprecated show categories that need to be integreted into the above list via regex, or have new categories created for them */ 143 .tv_Cine { background-color: blue; }144 .tv_Classic { background-color: gray; }145 .tv_Collectibles { background-color: # 708090; }146 .tv_Magazine { background-color: # 48D1CC; }147 .tv_Movies { background-color: blue; }148 .tv_Serie { background-color: # 9932CC; }149 .tv_SHOW { background-color: # A0522D; }150 .tv_Tiempo { background-color: # 33ff99; }143 .tv_Cine { background-color: #ff0; } 144 .tv_Classic { background-color: #777; } 145 .tv_Collectibles { background-color: #8f7f6f; } 146 .tv_Magazine { background-color: #b72e33; } 147 .tv_Movies { background-color: #ff0; } 148 .tv_Serie { background-color: #66cd33; } 149 .tv_SHOW { background-color: #5fadd2; } 150 .tv_Tiempo { background-color: #cc0066; } -
skins/negative/remote.css
diff --git a/skins/negative/remote.css b/skins/negative/remote.css index b3d44cf..e487453 100644
a b 2 2 * A class for the the cells containing settings in the various settings files 3 3 /*/ 4 4 .settings { 5 background-color: # 506080;5 background-color: #af9f7f; 6 6 } 7 7 8 8 /* The main box surrounding all settings editors */ … … 36 36 #remote .x-modules a { 37 37 display: block; 38 38 padding: .2em 1em; 39 background-color: # 345;40 border: 1px dotted # 9090B0;39 background-color: #cba; 40 border: 1px dotted #6f6f4f; 41 41 margin-top: 1px; 42 42 margin-bottom: 11px; 43 43 } 44 44 #remote .x-modules a:hover, #remote .x-modules a.x-selected { 45 background-color: # 023;45 background-color: #fdc; 46 46 margin-top: -1px; 47 47 margin-bottom: 10px; 48 48 border-width: 2px; 49 border-color: # abd;49 border-color: #542; 50 50 } 51 51 #remote .x-modules a.x-selected { 52 52 border-style: solid; … … 56 56 57 57 #remote .x-sections { 58 58 padding: 0px 1em; 59 border-bottom: 1px solid # 9090B0;59 border-bottom: 1px solid #6f6f4f; 60 60 height: 2.25em; 61 61 vertical-align: bottom; 62 62 } … … 69 69 } 70 70 #remote .x-sections a { 71 71 float: left; 72 color: #cc d;73 background-color: # 405953;72 color: #cc2; 73 background-color: #bfa6ac; 74 74 padding: 2px 6px; 75 75 margin: 3px 5px 0px 0px; 76 border: 2px solid # 578;76 border: 2px solid #a87; 77 77 border-bottom: none; 78 78 white-space: nowrap; 79 79 -moz-border-radius-topleft: 8px; 80 80 -moz-border-radius-topright: 8px; 81 81 } 82 82 #remote .x-sections a:hover, #remote .x-sections a.x-selected { 83 color: white;84 background-color: # 102923;85 border-color: # 9090B0;83 color: black; 84 background-color: #efd6dc; 85 border-color: #6f6f4f; 86 86 } 87 87 #remote .x-sections a.x-selected { 88 border-bottom: 1px solid # 102923;88 border-bottom: 1px solid #efd6dc; 89 89 margin-bottom: -1px; 90 90 } 91 91 92 92 #remote .x-sections a.active { 93 color: white;93 color: black; 94 94 font-weight: bold; 95 background-color: # 102923;96 border: 2px solid # 9090B0;97 border-bottom: 1px solid # 102923;95 background-color: #efd6dc; 96 border: 2px solid #6f6f4f; 97 border-bottom: 1px solid #efd6dc; 98 98 margin-bottom: -1px; 99 99 } 100 100 … … 102 102 103 103 #remote .x-host { 104 104 text-align: right; 105 border-bottom: 1px solid # 9090B0;105 border-bottom: 1px solid #6f6f4f; 106 106 } 107 107 108 108 /* A notification/warning */ … … 111 111 margin: 1em; 112 112 padding: .5em; 113 113 text-align: center; 114 color: # fbb;115 background-color: # 360000;116 border: 1px solid # F03030;114 color: #044; 115 background-color: #c9ffff; 116 border: 1px solid #0fcfcf; 117 117 } 118 118 119 119 /* The content of the settings that are being edited */ 120 120 121 121 #remote .x-content { 122 background-color: # 102923;123 border: 1px solid # 9090B0;122 background-color: #efd6dc; 123 border: 1px solid #6f6f4f; 124 124 border-top: none; 125 125 padding: .5em; 126 126 } … … 139 139 } 140 140 141 141 #remote .x-content tr.x-sep th, #remote .x-content tr.x-sep td { 142 border-bottom: 1px solid # 304943;142 border-bottom: 1px solid #cfb6bc; 143 143 } 144 144 145 145 /* Key controls */ … … 153 153 min-width: 2em; 154 154 padding: .25em .5em; 155 155 font-weight: bold; 156 border: 1px solid # 7b8;157 background-color: # 263;156 border: 1px solid #847; 157 background-color: #d9c; 158 158 } 159 159 #remote_keys table a:hover { 160 border: 1px solid # 9da;161 background-color: #4 85;160 border: 1px solid #625; 161 background-color: #47a; 162 162 text-decoration: none; 163 163 } 164 164 #remote_keys table a.pressed { 165 border: 1px solid # 9da;166 background-color: # 685;165 border: 1px solid #625; 166 background-color: #97a; 167 167 } 168 168 #remote_keys table a.pressed:hover { 169 background-color: # 8a7;169 background-color: #758; 170 170 } 171 171 #remote_keys table a.noshift { 172 172 } -
skins/negative/settings.css
diff --git a/skins/negative/settings.css b/skins/negative/settings.css index d5e977b..72c05c7 100644
a b 2 2 * A class for the the cells containing settings in the various settings files 3 3 /*/ 4 4 .settings { 5 background-color: # 506080;5 background-color: #af9f7f; 6 6 } 7 7 8 8 /* The main box surrounding all settings editors */ … … 36 36 #settings .x-modules a { 37 37 display: block; 38 38 padding: .2em 1em; 39 background-color: # 345;40 border: 1px dotted # 9090B0;39 background-color: #cba; 40 border: 1px dotted #6f6f4f; 41 41 margin-top: 1px; 42 42 margin-bottom: 11px; 43 43 } 44 44 #settings .x-modules a:hover, #settings .x-modules a.x-selected { 45 background-color: # 023;45 background-color: #fdc; 46 46 margin-top: -1px; 47 47 margin-bottom: 10px; 48 48 border-width: 2px; 49 border-color: # abd;49 border-color: #542; 50 50 } 51 51 #settings .x-modules a.x-selected { 52 52 border-style: solid; … … 56 56 57 57 #settings .x-sections { 58 58 padding: 0px 1em; 59 border-bottom: 1px solid # 9090B0;59 border-bottom: 1px solid #6f6f4f; 60 60 height: 2.25em; 61 61 vertical-align: bottom; 62 62 min-width: 60%; … … 70 70 } 71 71 #settings .x-sections a { 72 72 float: left; 73 color: # ccd;74 background-color: # 405953;73 color: #332; 74 background-color: #bfa6ac; 75 75 padding: 2px 6px; 76 76 margin: 3px 5px 0px 0px; 77 border: 2px solid # 578;77 border: 2px solid #a87; 78 78 border-bottom: none; 79 79 white-space: nowrap; 80 80 -moz-border-radius-topleft: 8px; 81 81 -moz-border-radius-topright: 8px; 82 82 } 83 83 #settings .x-sections a:hover, #settings .x-sections a.x-selected { 84 color: white;85 background-color: # 102923;86 border-color: # 9090B0;84 color: black; 85 background-color: #efd6dc; 86 border-color: #6f6f4f; 87 87 } 88 88 #settings .x-sections a.x-selected { 89 border-bottom: 1px solid # 102923;89 border-bottom: 1px solid #efd6dc; 90 90 margin-bottom: -1px; 91 91 } 92 92 93 93 #settings .x-sections a.active { 94 color: white;94 color: black; 95 95 font-weight: bold; 96 background-color: # 102923;97 border: 2px solid # 9090B0;98 border-bottom: 1px solid # 102923;96 background-color: #efd6dc; 97 border: 2px solid #6f6f4f; 98 border-bottom: 1px solid #efd6dc; 99 99 margin-bottom: -1px; 100 100 } 101 101 … … 103 103 104 104 #settings .x-host { 105 105 text-align: right; 106 border-bottom: 1px solid # 9090B0;106 border-bottom: 1px solid #6f6f4f; 107 107 } 108 108 109 109 /* A notification/warning */ … … 112 112 margin: 1em; 113 113 padding: .5em; 114 114 text-align: center; 115 color: # fbb;116 background-color: # 360000;117 border: 1px solid # F03030;115 color: #044; 116 background-color: #c9ffff; 117 border: 1px solid #0fcfcf; 118 118 } 119 119 120 120 /* The content of the settings that are being edited */ 121 121 122 122 #settings .x-content { 123 background-color: # 102923;124 border: 1px solid # 9090B0;123 background-color: #efd6dc; 124 border: 1px solid #6f6f4f; 125 125 border-top: none; 126 126 } 127 127 … … 139 139 } 140 140 141 141 #settings .x-content tr.x-sep th, #settings .x-content tr.x-sep td { 142 border-bottom: 1px solid # 304943;142 border-bottom: 1px solid #cfb6bc; 143 143 } -
skins/negative/stats.css
diff --git a/skins/negative/stats.css b/skins/negative/stats.css index 1557e1e..c702dc8 100644
a b h2 { 26 26 max-width: 35em; 27 27 margin: 1em auto; 28 28 padding: .2em .5em .5em .5em; 29 border: 1px dotted # 9090B0;29 border: 1px dotted #6f6f4f; 30 30 } 31 31 32 32 #general_stats dt { … … h2 { 43 43 } 44 44 45 45 #stats { 46 border: 1px solid # 9090B0;46 border: 1px solid #6f6f4f; 47 47 border-collapse: collapse; 48 48 margin: auto; 49 49 } 50 50 51 51 .caption { 52 border: 1px dotted # 9090B0;52 border: 1px dotted #6f6f4f; 53 53 font-weight: bold; 54 54 text-align: center; 55 55 } … … h2 { 59 59 } 60 60 61 61 #stats td { 62 border: 1px dotted # 9090B0;62 border: 1px dotted #6f6f4f; 63 63 padding: 0px .5em; 64 64 } 65 65 66 66 #stats th { 67 border: 1px solid # 9090B0;68 border-right: 1px dotted # 9090B0;69 border-left: 1px dotted # 9090B0;67 border: 1px solid #6f6f4f; 68 border-right: 1px dotted #6f6f4f; 69 border-left: 1px dotted #6f6f4f; 70 70 padding: 0px .5em; 71 71 } -
skins/negative/status.css
diff --git a/skins/negative/status.css b/skins/negative/status.css index 2d36bc0..e898672 100644
a b 6 6 h1 { 7 7 font-size: 28px; 8 8 font-weight: 900; 9 color: # ccc;9 color: #333; 10 10 letter-spacing: 0.5em; 11 11 margin-bottom: 30px; 12 12 width: 70%; … … h1 { 15 15 h2 { 16 16 font-size: 18px; 17 17 font-weight: 800; 18 color: # 7c4;18 color: #83b; 19 19 border: none; 20 20 letter-spacing: 0.3em; 21 21 padding: 0px; … … hr { 27 27 } 28 28 div.content { 29 29 width: 90%; 30 border-top: 1px solid # 88a;31 border-right: 1px solid # 88a;32 border-bottom: 1px solid # 88a;33 border-left: 10px solid # 88a;30 border-top: 1px solid #775; 31 border-right: 1px solid #775; 32 border-bottom: 1px solid #775; 33 border-left: 10px solid #775; 34 34 padding: 10px; 35 35 margin-bottom: 30px; 36 36 -moz-border-radius: 8px 0px 0px 8px; … … div.content { 38 38 div.schedule a { 39 39 position: relative; 40 40 display: block; 41 color: white;41 color: black; 42 42 text-decoration: none; 43 43 padding: .2em .8em; 44 border: thin solid # 668;44 border: thin solid #997; 45 45 margin-right: 280px; 46 46 /*width: 340px;*/ 47 47 } … … div.schedule a span { 49 49 display:none; 50 50 } 51 51 div.schedule a:hover { 52 background-color: # 204670;53 border-top: thin solid # 668;54 border-bottom: thin solid # 668;55 border-left: thin solid # 668;52 background-color: #dfb98f; 53 border-top: thin solid #997; 54 border-bottom: thin solid #997; 55 border-left: thin solid #997; 56 56 cursor: default; 57 57 } 58 58 div.schedule a:hover span { 59 59 display: block; 60 60 position: absolute; 61 background-color: # 204670;62 color: white;61 background-color: #dfb98f; 62 color: black; 63 63 right: -291px; 64 64 margin-top: -20px; 65 65 width: 280px; 66 66 padding: 5px; 67 border: thin dashed # 88a;67 border: thin dashed #775; 68 68 } 69 69 div.diskstatus { 70 70 /* width: 325px; */ … … div.loadstatus { 76 76 height: 7em; 77 77 float: right; 78 78 } 79 .jobfinished { color: white; }80 .jobaborted { color: # ff2222; }81 .joberrored { color: # ff4444; }82 .jobrunning { color: # 00ff00; }79 .jobfinished { color: black; } 80 .jobaborted { color: #00dddd; } 81 .joberrored { color: #00bbbb; } 82 .jobrunning { color: #ff00ff; } 83 83 -
skins/negative/style.css
diff --git a/skins/negative/style.css b/skins/negative/style.css index 7353351..c92ce92 100644
a b 8 8 padding: 0; 9 9 font-size: 9pt; 10 10 font-family: Arial, Helvetica, sans-serif; 11 background-color: # 191c26;12 color: # dedede;11 background-color: #e6e3d9; 12 color: #212121; 13 13 } 14 14 15 15 /* For some reason, settings for the main body element doesn't always work for … … 24 24 * We should try to keep links and labels looking consistent across the app. 25 25 /*/ 26 26 27 a, a:link, .link { color: # E0E0FF; text-decoration: none; cursor: pointer;}28 a:active { color: # 990033; text-decoration: none; }29 a:visited { color: # E0E0FF; text-decoration: none; }30 a:hover { color: # F0F000; text-decoration: underline; }27 a, a:link, .link { color: #1f1f00; text-decoration: none; cursor: pointer;} 28 a:active { color: #66ffcc; text-decoration: none; } 29 a:visited { color: #1f1f00; text-decoration: none; } 30 a:hover { color: #0f0fff; text-decoration: underline; } 31 31 32 label { color: # E0E0FF; text-decoration: none; }33 label:hover { color: # F0F000; text-decoration: underline; }32 label { color: #1f1f00; text-decoration: none; } 33 label:hover { color: #0f0fff; text-decoration: underline; } 34 34 35 35 /* a class for the menu across the top of the page as well as menu headers throughout the page */ 36 .menu { background-color: # 265990}37 .menu_border_t { border-top: 2px solid # 9090B0}38 .menu_border_b { border-bottom: 2px solid # 9090B0}39 .menu_border_l { border-left: 2px solid # 9090B0}40 .menu_border_r { border-right: 2px solid # 9090B0}36 .menu { background-color: #d9a66f } 37 .menu_border_t { border-top: 2px solid #6f6f4f } 38 .menu_border_b { border-bottom: 2px solid #6f6f4f } 39 .menu_border_l { border-left: 2px solid #6f6f4f } 40 .menu_border_r { border-right: 2px solid #6f6f4f } 41 41 42 42 /* a class for commands and other user input boxes */ 43 43 44 44 /* @deprecated old classes */ 45 .command { background-color: # 1040A0}46 .command_border_t { border-top: 2px solid # 9090B0}47 .command_border_b { border-bottom: 2px solid # 9090B0}48 .command_border_l { border-left: 2px solid # 9090B0}49 .command_border_r { border-right: 2px solid # 9090B0}50 .activecommand { background-color: # 108040}45 .command { background-color: #efbf5f } 46 .command_border_t { border-top: 2px solid #6f6f4f } 47 .command_border_b { border-bottom: 2px solid #6f6f4f } 48 .command_border_l { border-left: 2px solid #6f6f4f } 49 .command_border_r { border-right: 2px solid #6f6f4f } 50 .activecommand { background-color: #ef7fbf } 51 51 52 52 /* New command classes */ 53 53 54 54 /* Box to hold commands */ 55 55 .commandbox { 56 background-color: # 102923;57 color: # E0E0FF;58 border: 1px solid # 9090B0;56 background-color: #efd6dc; 57 color: #1f1f00; 58 border: 1px solid #6f6f4f; 59 59 } 60 60 61 61 /* Commands themselves */ … … 63 63 .commands { /* Placeholder for handling sub-elements */ } 64 64 65 65 .commands input.x-submit { 66 border: 2px outset # 7b8;66 border: 2px outset #847; 67 67 padding: 0 .5em; 68 68 height: 2em; 69 background-color: # 263;70 color: # E0E0FF;69 background-color: #d9c; 70 color: #1f1f00; 71 71 } 72 72 .commands input.x-submit:hover { 73 border: 1px outset # 9da;74 background-color: # 485;75 color: # F0F000;73 border: 1px outset #625; 74 background-color: #b7a; 75 color: #0f0fff; 76 76 text-decoration: underline; 77 77 } 78 78 79 79 .commands a { 80 80 font-weight: bold; 81 border: 1px solid # 7b8;81 border: 1px solid #847; 82 82 padding: .15em .5em; 83 background-color: # 263;83 background-color: #d9c; 84 84 } 85 85 .commands a:hover { 86 border: 1px solid # 9da;87 background-color: # 485;86 border: 1px solid #625; 87 background-color: #b7a; 88 88 } 89 89 90 90 /* … … 96 96 97 97 /* A special class for submit buttons */ 98 98 .submit { 99 border: 2px outset # 7b8;99 border: 2px outset #847; 100 100 padding: 0 .5em; 101 background-color: # 263;102 color: # E0E0FF;101 background-color: #d9c; 102 color: #1f1f00; 103 103 font-weight: bold; 104 104 height: 2em; 105 105 } 106 106 .submit:hover { 107 107 border: 2px outset #9da; 108 background-color: # 485;109 color: # F0F000;108 background-color: #b7a; 109 color: #0f0fff; 110 110 text-decoration: underline; 111 111 } 112 112 … … 114 114 .radio { 115 115 height: 14px !important; 116 116 width: 14px !important; 117 color: # 002000;118 background-color: # C0D0C0;117 color: #ffdfff; 118 background-color: #3f2f2f; 119 119 } 120 120 121 121 /* Default styles for form fields */ 122 122 select { 123 123 font-family: Arial, Helvetica, sans-serif; 124 color: # 002000;125 background-color: # C0D0C0;124 color: #ffdfff; 125 background-color: #3f2f3f; 126 126 font-size: 9pt; 127 127 } 128 128 129 129 input { 130 130 padding-left: .25em; 131 131 font-family: Arial, Helvetica, sans-serif; 132 color: # 002000;133 background-color: # C0D0C0;132 color: #ffdfff; 133 background-color: #3f2f3f; 134 134 font-size: 9pt; 135 135 } 136 136 137 137 textarea { 138 138 font-family: courier, courier-new; 139 color: # 002000;140 background-color: # C0D0C0;139 color: #ffdfff; 140 background-color: #3f2f3f; 141 141 font-size: 9pt; 142 142 } 143 143 … … 152 152 /*/ 153 153 154 154 #error, .error { 155 color: # F03030;156 background-color: # 360000;157 border-color: # F03030;158 border: thin groove # F03030;155 color: #0fcfcf; 156 background-color: #c9ffff; 157 border-color: #0fcfcf; 158 border: thin groove #0fcfcf; 159 159 padding: 8px; 160 160 } 161 161 … … 205 205 /* Ajax little popup request thing style */ 206 206 #ajax_working { 207 207 position: fixed; 208 background-color: green;208 background-color: #f0f; 209 209 bottom: 0px; 210 210 left: 1em; 211 211 padding: 1em; … … 237 237 } 238 238 239 239 #dialog-overlay { 240 background-color: # 506090;240 background-color: #af9f6f; 241 241 } 242 242 243 243 #dialog-top { 244 background-color: # 203670;245 border: 1px solid # 203670;244 background-color: #dfc98f; 245 border: 1px solid #dfc98f; 246 246 } 247 247 248 248 #dialog-title { 249 color: white;249 color: black; 250 250 251 251 } 252 252 253 253 #dialog-content { 254 background-color: # 265990;254 background-color: #d9a66f; 255 255 text-align: center; 256 256 } -
skins/negative/tv_channel.css
diff --git a/skins/negative/tv_channel.css b/skins/negative/tv_channel.css index 6860a96..6b3d40f 100644
a b 40 40 #x-jumpto td.x-jumpto { 41 41 font-size: 110%; 42 42 font-weight: bold; 43 border-right: 1px solid # 304943;43 border-right: 1px solid #cfb6bc; 44 44 } 45 45 #x-jumpto td.x-hour { 46 border-right: 1px solid # 304943;46 border-right: 1px solid #cfb6bc; 47 47 } 48 48 #x-jumpto td.x-hour select { 49 49 text-align: right; … … 62 62 height: 20px; 63 63 width: 20px; 64 64 padding: 2px; 65 border: 1px solid # 7b8;66 background-color: # 263;65 border: 1px solid #847; 66 background-color: #d9c; 67 67 } 68 68 #x-jumpto a:hover { 69 border: 1px solid # 9da;70 background-color: # 485;69 border: 1px solid #625; 70 background-color: #b7a; 71 71 } -
skins/negative/tv_detail.css
diff --git a/skins/negative/tv_detail.css b/skins/negative/tv_detail.css index ca84088..feacde8 100644
a b 7 7 padding: 0px; 8 8 width: 45em; 9 9 margin: 10px 0px 10px 10px; 10 background-color: # 101a29;11 color: # E0E0FF;12 border: 1px solid # 9090B0;10 background-color: #efe5d6; 11 color: #1f1f00; 12 border: 1px solid #6f6f4f; 13 13 } 14 14 15 15 /* … … 21 21 width: 8em; 22 22 padding: 0 !important; 23 23 vertical-align: middle; 24 background-color: # 202a49;24 background-color: #dfd5b6; 25 25 white-space: nowrap; 26 border-right: 1px solid # 9090B0;27 border-bottom: 1px solid # 9090B0;26 border-right: 1px solid #6f6f4f; 27 border-bottom: 1px solid #6f6f4f; 28 28 } 29 29 .x-channel img { 30 30 position: relative; … … 45 45 46 46 #x-title { 47 47 padding: .2em .5em; 48 border-bottom: 1px solid # 9090B0;48 border-bottom: 1px solid #6f6f4f; 49 49 } 50 50 #x-title a { 51 51 font-size: 175% !important; … … 54 54 55 55 #x-time { 56 56 margin-top: .2em; 57 color: # E0E0FF;57 color: #1f1f00; 58 58 white-space: nowrap; 59 59 } 60 60 #x-description { 61 61 padding: .5em; 62 border-bottom: 1px solid # 9090B0;62 border-bottom: 1px solid #6f6f4f; 63 63 } 64 64 #x-progflags td { 65 65 padding: .5em; 66 border-bottom: 1px solid # 9090B0;66 border-bottom: 1px solid #6f6f4f; 67 67 } 68 68 #x-progflags img { 69 69 margin-right: .3em; … … 72 72 border: 1px solid transparent; 73 73 } 74 74 #x-progflags a:hover img { 75 border: 1px solid # F0F000;75 border: 1px solid #0f0fff; 76 76 } 77 77 78 78 #x-status { 79 background-color: # 102923;79 background-color: #efd6dc; 80 80 } 81 81 82 82 … … 86 86 text-align: right; 87 87 padding: .25em; 88 88 white-space: nowrap; 89 border-top: 1px solid # 9090B0;89 border-top: 1px solid #6f6f4f; 90 90 } 91 91 #x-status td { 92 92 padding: .25em; 93 border-top: 1px solid # 9090B0;93 border-top: 1px solid #6f6f4f; 94 94 } 95 95 #x-status td a { 96 96 float: left; 97 97 margin-right: .5em; 98 98 font-weight: bold; 99 border: 1px solid # 7b8;99 border: 1px solid #847; 100 100 padding: .15em .5em; 101 background-color: # 263;101 background-color: #d9c; 102 102 } 103 103 #x-status td a:hover { 104 border: 1px solid # 9da;105 background-color: # 485;104 border: 1px solid #645; 105 background-color: #b7a; 106 106 } 107 107 108 108 #x-info .x-extras { … … 113 113 text-align: right; 114 114 padding: .25em; 115 115 white-space: nowrap; 116 border-top: 1px solid # 202933;116 border-top: 1px solid #dfd6cc; 117 117 } 118 118 #x-info .x-extras td { 119 119 padding: .25em; 120 border-top: 1px solid # 202933;120 border-top: 1px solid #dfd6cc; 121 121 } 122 122 123 123 #x-conflicts th { … … 126 126 text-align: right; 127 127 white-space: nowrap; 128 128 padding: .5em .25em; 129 border-top: 1px solid # 9090B0;129 border-top: 1px solid #6f6f4f; 130 130 } 131 131 #x-conflicts td { 132 132 padding: .25em; 133 133 padding-bottom: 0; 134 border-top: 1px solid # 9090B0;134 border-top: 1px solid #6f6f4f; 135 135 } 136 136 #x-conflicts td a { 137 137 display: block; … … 147 147 text-align: right; 148 148 white-space: nowrap; 149 149 padding: .4em .25em; 150 border-top: 1px solid # 9090B0;150 border-top: 1px solid #6f6f4f; 151 151 } 152 152 #x-info .x-links td { 153 153 padding: .25em; 154 154 padding-bottom: 0; 155 border-top: 1px solid # 9090B0;155 border-top: 1px solid #6f6f4f; 156 156 } 157 157 #x-info .x-links td a { 158 158 display: block; … … 166 166 min-width: 350px; 167 167 max-width: 500px; 168 168 margin: 10px 0px 10px 10px; 169 background-color: # 101a29;170 color: # E0E0FF;171 border: 1px solid # 9090B0;169 background-color: #efe5d6; 170 color: #2f2f00; 171 border: 1px solid #6f6f4f; 172 172 } 173 173 #x-downloads img { 174 174 margin-right: .3em; … … 180 180 border: 1px solid transparent; 181 181 } 182 182 #x-downloads a:hover img { 183 border: 1px solid # F0F000;183 border: 1px solid #0f0fff; 184 184 } 185 185 #x-downloads div.x-pixmap { 186 186 padding: 1em 1em 0em 1em; 187 background-color: black;187 background-color: white; 188 188 text-align: center; 189 189 } 190 190 #x-downloads div.x-pixmap a.x-pixmap { … … 193 193 194 194 #x-downloads div.x-links { 195 195 padding: .5em; 196 background-color: black;196 background-color: white; 197 197 text-align: center; 198 198 } 199 199 … … 212 212 } 213 213 #x-downloads div.x-links a:hover { 214 214 background-color: #121; 215 border: 1px solid # F0F000;215 border: 1px solid #0f0fff; 216 216 text-decoration: none; 217 217 } 218 218 #x-downloads div.x-jobs { 219 border-top: 1px solid # 9090B0;219 border-top: 1px solid #6f6f4f; 220 220 padding: .5em; 221 221 } 222 222 223 223 #x-downloads div.x-jobs a { 224 224 margin-right: .5em; 225 225 font-weight: bold; 226 border: 1px solid # 7b8;226 border: 1px solid #847; 227 227 padding: .15em .5em; 228 background-color: # 263;228 background-color: #d9c; 229 229 } 230 230 #x-downloads div.x-jobs a:hover { 231 border: 1px solid # 9da;232 background-color: # 485;231 border: 1px solid #625; 232 background-color: #b7a; 233 233 } 234 234 235 235 #x-downloads div.x-jobs ul { … … 259 259 } 260 260 261 261 #x-downloads div.x-frontends ul li a { 262 background-color: # 226633;263 border: 1px solid # 77BB88;262 background-color: #dd99cc; 263 border: 1px solid #884477; 264 264 font-weight: bold; 265 265 margin-right: 0.5em; 266 266 padding: 0.15em 0.5em; 267 267 } 268 268 269 269 #x-downloads div.x-frontends ul li a:hover { 270 color: # F0F000;270 color: #0f0fff; 271 271 text-decoration: underline; 272 272 } 273 273 -
skins/negative/tv_list.css
diff --git a/skins/negative/tv_list.css b/skins/negative/tv_list.css index e86c13c..ecc1854 100644
a b 16 16 height: 70px; 17 17 padding: 0 !important; 18 18 vertical-align: middle; 19 background-color: # 202a49;19 background-color: #dfd5b6; 20 20 white-space: nowrap; 21 21 } 22 22 .x-channel img { … … 59 59 #x-jumpto td.x-jumpto { 60 60 font-size: 110%; 61 61 font-weight: bold; 62 border-right: 1px solid # 304943;62 border-right: 1px solid #cfb6bc; 63 63 } 64 64 #x-jumpto td.x-hour { 65 border-right: 1px solid # 304943;65 border-right: 1px solid #cfb6bc; 66 66 } 67 67 #x-jumpto td.x-hour select { 68 68 text-align: right; … … 81 81 height: 20px; 82 82 width: 20px; 83 83 padding: 2px; 84 border: 1px solid # 7b8;85 background-color: # 263;84 border: 1px solid #847; 85 background-color: #d9c; 86 86 } 87 87 #x-jumpto a:hover { 88 border: 1px solid # 9da;89 background-color: # 485;88 border: 1px solid #625; 89 background-color: #b7a; 90 90 } -
skins/negative/tv_recorded.css
diff --git a/skins/negative/tv_recorded.css b/skins/negative/tv_recorded.css index f8f173c..1ab0c15 100644
a b 11 11 #title_choices td.x-group, #title_choices td.x-recordings { 12 12 font-size: 110%; 13 13 font-weight: bold; 14 border-right: 1px solid # 304943;14 border-right: 1px solid #cfb6bc; 15 15 } 16 16 #title_choices td.x-recordings { 17 border-left: 1px solid # 304943;17 border-left: 1px solid #cfb6bc; 18 18 } 19 19 20 20 /* This is the table that holds the list of recorded shows */ … … 25 25 26 26 #recorded_list td { 27 27 padding: 4px; 28 border: 1px solid # 191c26;28 border: 1px solid #e6e3d9; 29 29 } 30 30 #recorded_list th { 31 31 padding: 0; 32 border: 1px solid # 191c26;32 border: 1px solid #e6e3d9; 33 33 text-align: left; 34 34 font-weight: normal; 35 35 } … … 51 51 border: 1px solid transparent; 52 52 } 53 53 #recorded_list td.x-pixmap a:hover { 54 background-color: # 121;55 border: 1px solid # F0F000;54 background-color: #ede; 55 border: 1px solid #0f0fff; 56 56 } 57 57 58 58 #recorded_list td.x-pixmap a.x-pixmap { … … 103 103 white-space: nowrap; 104 104 text-align: center; 105 105 vertical-align: top; 106 background-color: # 191c26;106 background-color: #e6e3d9; 107 107 } 108 108 #recorded_list td.x-commands a { 109 109 display: block; … … 123 123 } 124 124 125 125 /* a class for the the cells containing recored programs in recorded_programs.php */ 126 .recorded { background-color: # 506080; }126 .recorded { background-color: #af9f7f; } 127 127 128 128 .recorded .x-progflags img { 129 129 padding: .3em; … … 133 133 border: 1px solid transparent; 134 134 } 135 135 .recorded .x-progflags a:hover img { 136 border: 1px solid # F0F000;136 border: 1px solid #0f0fff; 137 137 } 138 138 139 139 #recorded_pager { -
skins/negative/tv_schedule.css
diff --git a/skins/negative/tv_schedule.css b/skins/negative/tv_schedule.css index 2740816..5192928 100644
a b 6 6 #schedule { 7 7 float: left; 8 8 margin: 10px; 9 background-color: # 102923;10 color: # E0E0FF;11 border: 1px solid # 9090B0;9 background-color: #efd6dc; 10 color: #1f1f00; 11 border: 1px solid #6f6f4f; 12 12 } 13 13 #schedule h3 { 14 14 margin: 0px; … … 23 23 } 24 24 25 25 #schedule .x-options { 26 border-bottom: 1px solid # 304943;26 border-bottom: 1px solid #cfb6bc; 27 27 padding: .5em 1em; 28 28 margin: .5em 0 .5em 0; 29 29 } … … 91 91 width: 500px; 92 92 min-height: 150px; 93 93 margin: 0px 15px 10px 0px; 94 border: 1px solid white;94 border: 1px solid black; 95 95 } 96 96 97 97 .metadata-item.hover { 98 background-color: white;98 background-color: black; 99 99 cursor: pointer; 100 color: # 265990;100 color: #d9a66f; 101 101 } 102 102 103 103 .metadata-item img { -
skins/negative/tv_search.css
diff --git a/skins/negative/tv_search.css b/skins/negative/tv_search.css index 4f06a31..0648b9b 100644
a b 7 7 white-space: nowrap; 8 8 } 9 9 #search_options td.x-advanced { 10 border-right: 1px solid # 304943;10 border-right: 1px solid #cfb6bc; 11 11 } 12 12 #search_options td.x-timeopts { 13 border-right: 1px solid # 304943;13 border-right: 1px solid #cfb6bc; 14 14 } 15 15 #search_options td.x-progtype { 16 border-right: 1px solid # 304943;16 border-right: 1px solid #cfb6bc; 17 17 } 18 18 #search_options td.x-submit { 19 19 vertical-align: middle; -
skins/negative/tv_upcoming.css
diff --git a/skins/negative/tv_upcoming.css b/skins/negative/tv_upcoming.css index 1514562..24dfcad 100644
a b 12 12 } 13 13 #display_options td.x-check { 14 14 padding: .35em .5em; 15 border-left: 1px solid # 304943;15 border-left: 1px solid #cfb6bc; 16 16 height: 2em; 17 17 } 18 18 #display_options td.x-check label { 19 border: 1px solid # 7b8;20 background-color: # 263;19 border: 1px solid #847; 20 background-color: #d9c; 21 21 padding-top: .15em; 22 22 padding-bottom: .15em; 23 23 padding-left: .5em; … … 28 28 margin-right: 0em; 29 29 } 30 30 #display_options td.x-check label:hover { 31 border: 1px solid # 9da;32 background-color: # 485;31 border: 1px solid #645; 32 background-color: #b7a; 33 33 } 34 34 #display_options td.x-check input { 35 35 float: none; … … 88 88 padding: 2px; 89 89 text-align: center; 90 90 white-space: nowrap; 91 background-color: # 191c26;91 background-color: #e6e3d9; 92 92 } 93 93 #listings td.x-commands a { 94 94 display: block; … … 96 96 margin: 0; 97 97 } 98 98 #listings td.x-recording a { 99 border: 1px solid # 0f0;99 border: 1px solid #f0f; 100 100 } -
skins/negative/welcome.css
diff --git a/skins/negative/welcome.css b/skins/negative/welcome.css index 6e47ed9..f862d7a 100644
a b 28 28 white-space: nowrap; 29 29 } 30 30 #module_names li.selected { 31 background-color: # 475;32 border-top: 2px solid # 48f;33 border-right: 2px solid # 688;34 border-bottom: 2px solid # 48f;35 border-left: 2px solid # 48f;31 background-color: #b8a; 32 border-top: 2px solid #b70; 33 border-right: 2px solid #977; 34 border-bottom: 2px solid #b70; 35 border-left: 2px solid #b70; 36 36 -moz-border-radius: 8px; 37 37 } 38 38 #module_names li.selected a { … … 40 40 } 41 41 42 42 #module_info { 43 background-color: # 355;43 background-color: #caa; 44 44 margin-left: 14em; 45 border: 2px solid # 48f;45 border: 2px solid #b70; 46 46 min-width: 314px; 47 47 height: 30em; 48 48 padding: .5em 1em;
