Last active
December 13, 2015 18:28
-
-
Save rxaviers/4955345 to your computer and use it in GitHub Desktop.
Diff of jquery-ui.css from downloaded theme vs. found on themes bundle .zip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- ./jquery-ui-themes-1.10.0/themes/eggplant/jquery-ui.css 2013-01-17 16:29:20.000000000 -0200 | |
| +++ ./jquery-ui-1.10.0.custom/development-bundle/themes/eggplant/jquery-ui.css 2013-02-14 10:24:04.000000000 -0200 | |
| @@ -1,7 +1,8 @@ | |
| -/*! jQuery UI - v1.10.0 - 2013-01-17 | |
| +/*! jQuery UI - v1.10.0 - 2013-02-14 | |
| * http://jqueryui.com | |
| -* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css | |
| -* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ | |
| +* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css | |
| +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=30273a&bgTextureHeader=highlight_soft&bgImgOpacityHeader=25&borderColorHeader=231d2b&fcHeader=ffffff&iconColorHeader=a8a3ae&bgColorContent=3d3644&bgTextureContent=gloss_wave&bgImgOpacityContent=30&borderColorContent=7e7783&fcContent=ffffff&iconColorContent=ffffff&bgColorDefault=dcd9de&bgTextureDefault=highlight_soft&bgImgOpacityDefault=100&borderColorDefault=dcd9de&fcDefault=665874&iconColorDefault=8d78a5&bgColorHover=eae6ea&bgTextureHover=highlight_soft&bgImgOpacityHover=100&borderColorHover=d1c5d8&fcHover=734d99&iconColorHover=734d99&bgColorActive=5f5964&bgTextureActive=highlight_soft&bgImgOpacityActive=45&borderColorActive=7e7783&fcActive=ffffff&iconColorActive=454545&bgColorHighlight=fafafa&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=ffdb1f&fcHighlight=333333&iconColorHighlight=8d78a5&bgColorError=994d53&bgTextureError=flat&bgImgOpacityError=55&borderColorError=994d53&fcError=ffffff&iconColorError=ebccce&bgColorOverlay=eeeeee&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=60&thicknessShadow=4px&offsetTopShadow=-4px&offsetLeftShadow=-4px&cornerRadiusShadow=0px | |
| +* Copyright (c) 2013 jQuery Foundation and other contributors Licensed MIT */ | |
| /* Layout helpers | |
| ----------------------------------*/ | |
| @@ -84,7 +85,79 @@ | |
| width: 100%; | |
| height: 100%; | |
| } | |
| - | |
| +.ui-resizable { | |
| + position: relative; | |
| +} | |
| +.ui-resizable-handle { | |
| + position: absolute; | |
| + font-size: 0.1px; | |
| + display: block; | |
| +} | |
| +.ui-resizable-disabled .ui-resizable-handle, | |
| +.ui-resizable-autohide .ui-resizable-handle { | |
| + display: none; | |
| +} | |
| +.ui-resizable-n { | |
| + cursor: n-resize; | |
| + height: 7px; | |
| + width: 100%; | |
| + top: -5px; | |
| + left: 0; | |
| +} | |
| +.ui-resizable-s { | |
| + cursor: s-resize; | |
| + height: 7px; | |
| + width: 100%; | |
| + bottom: -5px; | |
| + left: 0; | |
| +} | |
| +.ui-resizable-e { | |
| + cursor: e-resize; | |
| + width: 7px; | |
| + right: -5px; | |
| + top: 0; | |
| + height: 100%; | |
| +} | |
| +.ui-resizable-w { | |
| + cursor: w-resize; | |
| + width: 7px; | |
| + left: -5px; | |
| + top: 0; | |
| + height: 100%; | |
| +} | |
| +.ui-resizable-se { | |
| + cursor: se-resize; | |
| + width: 12px; | |
| + height: 12px; | |
| + right: 1px; | |
| + bottom: 1px; | |
| +} | |
| +.ui-resizable-sw { | |
| + cursor: sw-resize; | |
| + width: 9px; | |
| + height: 9px; | |
| + left: -5px; | |
| + bottom: -5px; | |
| +} | |
| +.ui-resizable-nw { | |
| + cursor: nw-resize; | |
| + width: 9px; | |
| + height: 9px; | |
| + left: -5px; | |
| + top: -5px; | |
| +} | |
| +.ui-resizable-ne { | |
| + cursor: ne-resize; | |
| + width: 9px; | |
| + height: 9px; | |
| + right: -5px; | |
| + top: -5px; | |
| +} | |
| +.ui-selectable-helper { | |
| + position: absolute; | |
| + z-index: 100; | |
| + border: 1px dotted black; | |
| +} | |
| .ui-accordion .ui-accordion-header { | |
| display: block; | |
| cursor: pointer; | |
| @@ -113,14 +186,12 @@ | |
| border-top: 0; | |
| overflow: auto; | |
| } | |
| - | |
| .ui-autocomplete { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| cursor: default; | |
| } | |
| - | |
| .ui-button { | |
| display: inline-block; | |
| position: relative; | |
| @@ -225,7 +296,6 @@ | |
| border: 0; | |
| padding: 0; | |
| } | |
| - | |
| .ui-datepicker { | |
| width: 17em; | |
| padding: .2em .2em 0; | |
| @@ -394,7 +464,6 @@ | |
| border-right-width: 0; | |
| border-left-width: 1px; | |
| } | |
| - | |
| .ui-dialog { | |
| position: absolute; | |
| top: 0; | |
| @@ -454,7 +523,6 @@ | |
| .ui-draggable .ui-dialog-titlebar { | |
| cursor: move; | |
| } | |
| - | |
| .ui-menu { | |
| list-style: none; | |
| padding: 2px; | |
| @@ -522,7 +590,6 @@ | |
| position: static; | |
| float: right; | |
| } | |
| - | |
| .ui-progressbar { | |
| height: 2em; | |
| text-align: left; | |
| @@ -541,82 +608,6 @@ | |
| .ui-progressbar-indeterminate .ui-progressbar-value { | |
| background-image: none; | |
| } | |
| - | |
| -.ui-resizable { | |
| - position: relative; | |
| -} | |
| -.ui-resizable-handle { | |
| - position: absolute; | |
| - font-size: 0.1px; | |
| - display: block; | |
| -} | |
| -.ui-resizable-disabled .ui-resizable-handle, | |
| -.ui-resizable-autohide .ui-resizable-handle { | |
| - display: none; | |
| -} | |
| -.ui-resizable-n { | |
| - cursor: n-resize; | |
| - height: 7px; | |
| - width: 100%; | |
| - top: -5px; | |
| - left: 0; | |
| -} | |
| -.ui-resizable-s { | |
| - cursor: s-resize; | |
| - height: 7px; | |
| - width: 100%; | |
| - bottom: -5px; | |
| - left: 0; | |
| -} | |
| -.ui-resizable-e { | |
| - cursor: e-resize; | |
| - width: 7px; | |
| - right: -5px; | |
| - top: 0; | |
| - height: 100%; | |
| -} | |
| -.ui-resizable-w { | |
| - cursor: w-resize; | |
| - width: 7px; | |
| - left: -5px; | |
| - top: 0; | |
| - height: 100%; | |
| -} | |
| -.ui-resizable-se { | |
| - cursor: se-resize; | |
| - width: 12px; | |
| - height: 12px; | |
| - right: 1px; | |
| - bottom: 1px; | |
| -} | |
| -.ui-resizable-sw { | |
| - cursor: sw-resize; | |
| - width: 9px; | |
| - height: 9px; | |
| - left: -5px; | |
| - bottom: -5px; | |
| -} | |
| -.ui-resizable-nw { | |
| - cursor: nw-resize; | |
| - width: 9px; | |
| - height: 9px; | |
| - left: -5px; | |
| - top: -5px; | |
| -} | |
| -.ui-resizable-ne { | |
| - cursor: ne-resize; | |
| - width: 9px; | |
| - height: 9px; | |
| - right: -5px; | |
| - top: -5px; | |
| -} | |
| - | |
| -.ui-selectable-helper { | |
| - position: absolute; | |
| - z-index: 100; | |
| - border: 1px dotted black; | |
| -} | |
| - | |
| .ui-slider { | |
| position: relative; | |
| text-align: left; | |
| @@ -680,7 +671,6 @@ | |
| .ui-slider-vertical .ui-slider-range-max { | |
| top: 0; | |
| } | |
| - | |
| .ui-spinner { | |
| position: relative; | |
| display: inline-block; | |
| @@ -736,7 +726,6 @@ | |
| /* need to fix icons sprite */ | |
| background-position: -65px -16px; | |
| } | |
| - | |
| .ui-tabs { | |
| position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | |
| padding: .2em; | |
| @@ -779,7 +768,6 @@ | |
| padding: 1em 1.4em; | |
| background: none; | |
| } | |
| - | |
| .ui-tooltip { | |
| padding: 8px; | |
| position: absolute; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment