Skip to content

Commit db2658a

Browse files
committed
Merge branch 'master' of github.com:midgetspy/Sick-Beard into windows_binaries
2 parents b2f2c5b + 31ceaf1 commit db2658a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1633
-614
lines changed
-1.7 KB
Binary file not shown.

data/css/lib/jquery-ui-1.10.4.custom.css renamed to data/css/lib/jquery-ui-1.11.1.custom.css

Lines changed: 55 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/*! jQuery UI - v1.10.4 - 2014-02-03
1+
/*! jQuery UI - v1.11.1 - 2014-09-08
22
* http://jqueryui.com
3-
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.tabs.css, jquery.ui.theme.css
3+
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, autocomplete.css, button.css, dialog.css, menu.css, progressbar.css, tabs.css, theme.css
44
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=%23ffffff&bgTextureHeader=flat&bgImgOpacityHeader=0&borderColorHeader=%23aaaaaa&fcHeader=%23222222&iconColorHeader=%23222222&bgColorContent=%23dcdcdc&bgTextureContent=highlight_soft&bgImgOpacityContent=75&borderColorContent=%23aaaaaa&fcContent=%23222222&iconColorContent=%23222222&bgColorDefault=%23efefef&bgTextureDefault=highlight_soft&bgImgOpacityDefault=75&borderColorDefault=%23aaaaaa&fcDefault=%23222222&iconColorDefault=%238c291d&bgColorHover=%23dddddd&bgTextureHover=highlight_soft&bgImgOpacityHover=75&borderColorHover=%23999999&fcHover=%23222222&iconColorHover=%23222222&bgColorActive=%23dfdfdf&bgTextureActive=inset_soft&bgImgOpacityActive=75&borderColorActive=%23aaaaaa&fcActive=%23140f06&iconColorActive=%238c291d&bgColorHighlight=%23fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=%23aaaaaa&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=%23fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=%23aaaaaa&fcError=%238c291d&iconColorError=%23cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=35&bgColorShadow=%23000000&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=35&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px&ctl=themeroller
55
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
66

@@ -48,7 +48,7 @@
4848
left: 0;
4949
position: absolute;
5050
opacity: 0;
51-
filter:Alpha(Opacity=0);
51+
filter:Alpha(Opacity=0); /* support: IE8 */
5252
}
5353

5454
.ui-front {
@@ -86,13 +86,19 @@
8686
width: 100%;
8787
height: 100%;
8888
}
89+
.ui-draggable-handle {
90+
-ms-touch-action: none;
91+
touch-action: none;
92+
}
8993
.ui-resizable {
9094
position: relative;
9195
}
9296
.ui-resizable-handle {
9397
position: absolute;
9498
font-size: 0.1px;
9599
display: block;
100+
-ms-touch-action: none;
101+
touch-action: none;
96102
}
97103
.ui-resizable-disabled .ui-resizable-handle,
98104
.ui-resizable-autohide .ui-resizable-handle {
@@ -154,11 +160,19 @@
154160
right: -5px;
155161
top: -5px;
156162
}
163+
.ui-selectable {
164+
-ms-touch-action: none;
165+
touch-action: none;
166+
}
157167
.ui-selectable-helper {
158168
position: absolute;
159169
z-index: 100;
160170
border: 1px dotted black;
161171
}
172+
.ui-sortable-handle {
173+
-ms-touch-action: none;
174+
touch-action: none;
175+
}
162176
.ui-autocomplete {
163177
position: absolute;
164178
top: 0;
@@ -331,72 +345,56 @@ button.ui-button::-moz-focus-inner {
331345
}
332346
.ui-menu {
333347
list-style: none;
334-
padding: 2px;
348+
padding: 0;
335349
margin: 0;
336350
display: block;
337351
outline: none;
338352
}
339353
.ui-menu .ui-menu {
340-
margin-top: -3px;
341354
position: absolute;
342355
}
343356
.ui-menu .ui-menu-item {
357+
position: relative;
344358
margin: 0;
345-
padding: 0;
346-
width: 100%;
359+
padding: 3px 1em 3px .4em;
360+
cursor: pointer;
361+
min-height: 0; /* support: IE7 */
347362
/* support: IE10, see #8844 */
348-
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
363+
list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
349364
}
350365
.ui-menu .ui-menu-divider {
351-
margin: 5px -2px 5px -2px;
366+
margin: 5px 0;
352367
height: 0;
353368
font-size: 0;
354369
line-height: 0;
355370
border-width: 1px 0 0 0;
356371
}
357-
.ui-menu .ui-menu-item a {
358-
text-decoration: none;
359-
display: block;
360-
padding: 2px .4em;
361-
line-height: 1.5;
362-
min-height: 0; /* support: IE7 */
363-
font-weight: normal;
364-
}
365-
.ui-menu .ui-menu-item a.ui-state-focus,
366-
.ui-menu .ui-menu-item a.ui-state-active {
367-
font-weight: normal;
372+
.ui-menu .ui-state-focus,
373+
.ui-menu .ui-state-active {
368374
margin: -1px;
369375
}
370376

371-
.ui-menu .ui-state-disabled {
372-
font-weight: normal;
373-
margin: .4em 0 .2em;
374-
line-height: 1.5;
375-
}
376-
.ui-menu .ui-state-disabled a {
377-
cursor: default;
378-
}
379-
380377
/* icon support */
381378
.ui-menu-icons {
382379
position: relative;
383380
}
384-
.ui-menu-icons .ui-menu-item a {
385-
position: relative;
381+
.ui-menu-icons .ui-menu-item {
386382
padding-left: 2em;
387383
}
388384

389385
/* left-aligned */
390386
.ui-menu .ui-icon {
391387
position: absolute;
392-
top: .2em;
388+
top: 0;
389+
bottom: 0;
393390
left: .2em;
391+
margin: auto 0;
394392
}
395393

396394
/* right-aligned */
397395
.ui-menu .ui-menu-icon {
398-
position: static;
399-
float: right;
396+
left: auto;
397+
right: 0;
400398
}
401399
.ui-progressbar {
402400
height: 2em;
@@ -408,9 +406,9 @@ button.ui-button::-moz-focus-inner {
408406
height: 100%;
409407
}
410408
.ui-progressbar .ui-progressbar-overlay {
411-
/* background: url("images/animated-overlay.gif"); */
409+
background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
412410
height: 100%;
413-
filter: alpha(opacity=25);
411+
filter: alpha(opacity=25); /* support: IE8 */
414412
opacity: 0.25;
415413
}
416414
.ui-progressbar-indeterminate .ui-progressbar-value {
@@ -476,15 +474,15 @@ button.ui-button::-moz-focus-inner {
476474
}
477475
.ui-widget-content {
478476
border: 1px solid #aaaaaa;
479-
/* background: #dcdcdc url(images/ui-bg_highlight-soft_75_dcdcdc_1x100.png) 50% top repeat-x; */
477+
/* background: #dcdcdc url("images/ui-bg_highlight-soft_75_dcdcdc_1x100.png") 50% top repeat-x; */
480478
color: #222222;
481479
}
482480
.ui-widget-content a {
483481
color: #222222;
484482
}
485483
.ui-widget-header {
486484
border: 1px solid #aaaaaa;
487-
/* background: #ffffff url(images/ui-bg_flat_0_ffffff_40x100.png) 50% 50% repeat-x; */
485+
/* background: #ffffff url("images/ui-bg_flat_0_ffffff_40x100.png") 50% 50% repeat-x; */
488486
color: #222222;
489487
font-weight: bold;
490488
}
@@ -498,7 +496,7 @@ button.ui-button::-moz-focus-inner {
498496
.ui-widget-content .ui-state-default,
499497
.ui-widget-header .ui-state-default {
500498
border: 1px solid #aaaaaa;
501-
/* background: #efefef url(images/ui-bg_highlight-soft_75_efefef_1x100.png) 50% 50% repeat-x; */
499+
/* background: #efefef url("images/ui-bg_highlight-soft_75_efefef_1x100.png") 50% 50% repeat-x; */
502500
font-weight: bold;
503501
color: #222222;
504502
}
@@ -515,7 +513,7 @@ button.ui-button::-moz-focus-inner {
515513
.ui-widget-content .ui-state-focus,
516514
.ui-widget-header .ui-state-focus {
517515
border: 1px solid #999999;
518-
/* background: #dddddd url(images/ui-bg_highlight-soft_75_dddddd_1x100.png) 50% 50% repeat-x; */
516+
/* background: #dddddd url("images/ui-bg_highlight-soft_75_dddddd_1x100.png") 50% 50% repeat-x; */
519517
font-weight: bold;
520518
color: #222222;
521519
}
@@ -534,7 +532,7 @@ button.ui-button::-moz-focus-inner {
534532
.ui-widget-content .ui-state-active,
535533
.ui-widget-header .ui-state-active {
536534
border: 1px solid #aaaaaa;
537-
background: #dfdfdf url(images/ui-bg_inset-soft_75_dfdfdf_1x100.png) 50% 50% repeat-x;
535+
/* background: #dfdfdf url("images/ui-bg_inset-soft_75_dfdfdf_1x100.png") 50% 50% repeat-x; */
538536
font-weight: bold;
539537
color: #140f06;
540538
}
@@ -551,7 +549,7 @@ button.ui-button::-moz-focus-inner {
551549
.ui-widget-content .ui-state-highlight,
552550
.ui-widget-header .ui-state-highlight {
553551
border: 1px solid #aaaaaa;
554-
/* background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; */
552+
/* background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x; */
555553
color: #363636;
556554
}
557555
.ui-state-highlight a,
@@ -563,7 +561,7 @@ button.ui-button::-moz-focus-inner {
563561
.ui-widget-content .ui-state-error,
564562
.ui-widget-header .ui-state-error {
565563
border: 1px solid #aaaaaa;
566-
/* background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; */
564+
/* background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x; */
567565
color: #8c291d;
568566
}
569567
.ui-state-error a,
@@ -585,18 +583,18 @@ button.ui-button::-moz-focus-inner {
585583
.ui-widget-content .ui-priority-secondary,
586584
.ui-widget-header .ui-priority-secondary {
587585
opacity: .7;
588-
filter:Alpha(Opacity=70);
586+
filter:Alpha(Opacity=70); /* support: IE8 */
589587
font-weight: normal;
590588
}
591589
.ui-state-disabled,
592590
.ui-widget-content .ui-state-disabled,
593591
.ui-widget-header .ui-state-disabled {
594592
opacity: .35;
595-
filter:Alpha(Opacity=35);
593+
filter:Alpha(Opacity=35); /* support: IE8 */
596594
background-image: none;
597595
}
598596
.ui-state-disabled .ui-icon {
599-
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
597+
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
600598
}
601599

602600
/* Icons
@@ -610,27 +608,27 @@ button.ui-button::-moz-focus-inner {
610608
/*
611609
.ui-icon,
612610
.ui-widget-content .ui-icon {
613-
background-image: url(images/ui-icons_222222_256x240.png);
611+
background-image: url("images/ui-icons_222222_256x240.png");
614612
}
615613
.ui-widget-header .ui-icon {
616-
background-image: url(images/ui-icons_222222_256x240.png);
614+
background-image: url("images/ui-icons_222222_256x240.png");
617615
}
618616
.ui-state-default .ui-icon {
619-
background-image: url(images/ui-icons_8c291d_256x240.png);
617+
background-image: url("images/ui-icons_8c291d_256x240.png");
620618
}
621619
.ui-state-hover .ui-icon,
622620
.ui-state-focus .ui-icon {
623-
background-image: url(images/ui-icons_222222_256x240.png);
621+
background-image: url("images/ui-icons_222222_256x240.png");
624622
}
625623
.ui-state-active .ui-icon {
626-
background-image: url(images/ui-icons_8c291d_256x240.png);
624+
background-image: url("images/ui-icons_8c291d_256x240.png");
627625
}
628626
.ui-state-highlight .ui-icon {
629-
background-image: url(images/ui-icons_2e83ff_256x240.png);
627+
background-image: url("images/ui-icons_2e83ff_256x240.png");
630628
}
631629
.ui-state-error .ui-icon,
632630
.ui-state-error-text .ui-icon {
633-
background-image: url(images/ui-icons_cd0a0a_256x240.png);
631+
background-image: url("images/ui-icons_cd0a0a_256x240.png");
634632
}
635633
*/
636634

@@ -844,15 +842,15 @@ button.ui-button::-moz-focus-inner {
844842

845843
/* Overlays */
846844
.ui-widget-overlay {
847-
/* background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; */
845+
/* background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x; */
848846
opacity: .35;
849-
filter: Alpha(Opacity=35);
847+
filter: Alpha(Opacity=35); /* support: IE8 */
850848
}
851849
.ui-widget-shadow {
852850
margin: -8px 0 0 -8px;
853851
padding: 8px;
854-
/* background: #000000 url(images/ui-bg_flat_0_000000_40x100.png) 50% 50% repeat-x; */
852+
/* background: #000000 url("images/ui-bg_flat_0_000000_40x100.png") 50% 50% repeat-x; */
855853
opacity: .35;
856-
filter: Alpha(Opacity=35);
854+
filter: Alpha(Opacity=35); /* support: IE8 */
857855
border-radius: 8px;
858856
}

0 commit comments

Comments
 (0)