Commit graph

52 commits

Author SHA1 Message Date
Krinkle
684c45e1ed Merge "fix bug 29002 - in RTL wikis resizable are flipped" 2012-05-09 06:59:32 +00:00
Eranroz
81d81c1053 fix bug 29002 - in RTL wikis resizable are flipped
Change-Id: I7e00cfd924803e690f3d086f71313bfb0fbdcc7c
2012-05-03 20:58:49 +03:00
Reedy
4ba2754b9e Upgrade to jQuery UI 1.8.20
http://blog.jqueryui.com/2012/04/jquery-ui-1-8-20/

Change-Id: I719e645e69e57b04f206219da90c151335c28867
2012-05-02 18:04:56 +01:00
Reedy
4f46561714 Update jQuery UI to 1.8.19
http://blog.jqueryui.com/2012/04/jquery-ui-1-8-19/

Change-Id: Ib79baabc57c67c8bf96fc6d4f9304af39224fdc9
2012-04-27 01:07:56 +01:00
Timo Tijhof
024b27f638 Removing button-float-right rule from jquery.ui/vector theme
- Fixes:
 * (bug 35046) [Regression] jquery.ui buttons order reversed in Vector

The Vector css has this non-standard rule:
> .ui-dialog .ui-dialog-buttonpane button { float: right; }

That rule was causing the first button to be on the right, the second button
to be on the left of that and so forth. Per jQuery UI documentation and all
other scripts, plugins and skins ever written by and for jQuery UI, the order
is wrong in Vector, and right in all other skins.

See for example: http://jqueryui.com/demos/dialog/#modal-confirmation

$( "<div>" ).dialog({
	height: 140,
	buttons: {
		"Delete all items": function() {
			$( this ).dialog( "close" );
		},
		Cancel: function() {
			$( this ).dialog( "close" );
		}
	}
});

The "Delete all items" is the first button and "Cancel" to the right of that (as it should be).

That is restored in Vector by removing said css rule from
 /resources/jquery.ui/themes/vector/jquery.ui.dialog.css

and instead adding a float rule for the button container, copied from
the default jQuery UI theme:

 /resources/jquery.ui/themes/default/jquery.ui.dialog.css : line 18

Other plugins/skins are not affected.

Change-Id: I18752aa0fe21dd3c5bc5bd4a830faaa4c836f9cd
2012-04-12 00:01:32 +02:00
Reedy
522814502d Bug 35681 - Upgrade jQuery UI to 1.8.18
http://blog.jqueryui.com/2012/02/jquery-ui-1-8-18/

Change-Id: I31e870279e239733437c7222c5e69be112e8aba1
2012-04-03 22:49:36 +01:00
Sam Reed
1f67da21d2 Squishing resources/ images 2012-03-01 20:04:42 +00:00
Ryan Kaldari
2730e89017 making sure colored buttons get white icons, implementing a smarter css selector scheme for large colored buttons (less redundancy) 2012-02-28 23:48:36 +00:00
Ryan Kaldari
7bb9c3112d fixing bug 34609 - datepicker should always be set to display:none by default 2012-02-25 03:02:23 +00:00
Ryan Kaldari
a1e6900e13 changing jquery.ui buttons to match assets from brandon, also adding separate graphics for large buttons 2012-02-17 01:34:53 +00:00
Trevor Parscal
adb5c0e207 Fixed green button styles to match colors in actual image files. You're welcome werdna! 2012-02-15 00:14:45 +00:00
Sam Reed
592b5204c2 Delete images not in 1.8.17 download of jQuery-ui 2011-12-08 19:25:08 +00:00
Sam Reed
04b0f02225 Update jQuery.ui from 1.8.16 to 1.8.17 2011-12-08 19:17:59 +00:00
Brandon Harris
c864e13f05 Update green buttons to a color that doesn't clash with Vector. 2011-10-23 22:49:03 +00:00
Sam Reed
186d083be8 Update jquery.ui to 1.8.16
Added new Datepicker languages where appropriate (ie stuff we support)
2011-10-03 21:01:18 +00:00
Ryan Kaldari
456be8273e syncing updates from vector jquery.ui skin with default jquery.ui skin - forgot to change it in both places. Changes in vector jquery.ui skin are already reviewed and deployed. These changes are to make the handling of icons within buttons consistant and more in line with how jquery.ui skins normally handle this. 2011-08-23 21:33:23 +00:00
Neil Kandalgaonkar
0fed64c900 breaks in this file cause odd things to happen with RTL, removing line breaks 2011-08-02 00:38:36 +00:00
Ryan Kaldari
d9a506ba91 follow-up to r91499 - set padding for the elements inside the button rather than for the button itself - this is how normal jquery.UI skins handle it, as it prevents the button padding from screwing up the positioning of the icons. 2011-07-22 02:11:49 +00:00
Leo Koppelkamm
ab39749db5 Update j.ui.autocomplete which partially broke due to jQuery update in r89866 2011-07-08 13:50:11 +00:00
Leo Koppelkamm
ba3816d8df Redo r91721: Backport jQuery UI CSS fix for weird Webkit reflow bug. See a090faa833/ 2011-07-08 13:32:06 +00:00
Leo Koppelkamm
5e3294f664 Revert botched commit r91721 2011-07-08 13:27:40 +00:00
Leo Koppelkamm
346e0f1c5e Backport jQuery UI CSS fix for weird Webkit reflow bug. See a090faa833/ 2011-07-08 13:24:05 +00:00
Ryan Kaldari
2d725cd1f1 another fix for old jQuery UI on live 2011-07-05 22:03:38 +00:00
Ryan Kaldari
f67dcef119 forgot one, follow-up to r91204 2011-06-30 21:10:31 +00:00
Ryan Kaldari
1ab4d2ce86 fixing jQuery UI button styles for the old version of jQuery UI that is on live - still forward compatible as well 2011-06-30 19:37:17 +00:00
Sam Reed
8753999aac Revert r89120 2011-05-29 18:00:59 +00:00
Thomas Gries
398040e75d added jquery.ui.droppable.js which was missing in jquery.ui.dialog.js;fixes LiquidThreads drag to new location not working bug28407 *hopefully this breaks nothing else* my first commit to core *pls. check that nothing breaks as consequence from this commit 2011-05-29 17:19:25 +00:00
Krinkle
932f928c40 Applying patch by Ryan Kaldari (bug 28690): Adding border to jQuery UI 'vector' theme dialog 2011-05-18 19:19:35 +00:00
Ryan Kaldari
490ec48752 further update to skin due to module update, also some margin/padding tweaks to account for formatting differences unique to our skin 2011-05-16 12:18:54 +00:00
Ryan Kaldari
4f5950c509 updating our jquery ui button skin to match changes in jquery.ui.button functionality, per current version in trunk 2011-05-16 10:11:58 +00:00
Roan Kattouw
662c4b29ef (bug 26742) Add @noflip to RTL-specific rules in jquery.ui.datepicker.css 2011-05-15 16:19:39 +00:00
Krinkle
ee2ab77412 Partial revert of r87345. Causing unreadable buttons in ArticleFeedback (http://i.imgur.com/PyxOw.png ), likely breaks other things as well. 2011-05-04 17:23:17 +00:00
Leo Koppelkamm
ec1b18ef1a r87345: Restore black link color 2011-05-03 21:26:30 +00:00
Leo Koppelkamm
6fd7d7c1df Revert r86473 and redo more cleanly. Fix black link color complained about in Bug 28690 2011-05-03 19:11:23 +00:00
Ryan Kaldari
daeb5852b9 a bit more polish on the datepicker styling 2011-04-20 23:28:40 +00:00
Ryan Kaldari
f242118523 adding a little padding (1px) to the select lists so that they dont look ugly 2011-04-20 23:15:37 +00:00
Leo Koppelkamm
46681399bb Fix Bug 28537: JUI buttons now have black as text-color 2011-04-20 12:27:26 +00:00
Neil Kandalgaonkar
fb0df526c2 followup to r86046 -- reverting upgrade of datepicker. In UploadWizard, new version causes the calendar to not be hidden once upload created 2011-04-19 23:45:22 +00:00
Leo Koppelkamm
3897fa0691 Updating jQuery UI to 1.8.11 (was 1.8.2). Also loosening button css, since j.ui.button works for non <button> elements as well 2011-04-14 13:09:02 +00:00
Trevor Parscal
7771f2d25e * Increased the size of the tipsy callout, removed the shadow and made the background of tips white to try and improve the visibility of tips.
* Added ui-button-green, ui-button-blue, ui-button-red classes to the Vector jquery ui theme
2011-03-08 02:02:27 +00:00
Roan Kattouw
e57730cd67 Per r79581 CR, add @embed comments to jQuery UI's default theme's CSS too, and combine a few background rules to prevent duplicate embedding. 2011-01-08 15:54:41 +00:00
Trevor Parscal
86d9d6c331 Improves on r79766, and thus also r79582 - the original only applied the width and height to the .icon selector. 2011-01-06 22:46:05 +00:00
Trevor Parscal
27d5500039 Improves on r79582 - no need to delete the rules, just merge them! Do you really want to second-guess why jQuery UI put them there? 2011-01-06 22:42:30 +00:00
Roan Kattouw
53f7653d83 Remove two useless CSS rules that would cause one image to be embedded thrice 2011-01-04 14:28:31 +00:00
Roan Kattouw
0d41856eb1 Add /* @embed */ comments for URLs in all RL-ified CSS files, except in jQuery UI's default theme. This'll reduce the number of images loaded, especially for jQuery UI. 2011-01-04 14:25:35 +00:00
Roan Kattouw
8c15b1b1bc Fix jQuery UI dialog CSS for close-x.png -> close.png rename in Vector theme 2011-01-04 12:58:15 +00:00
Trevor Parscal
ea6a849b1f Moved button styles from dialog specific areas to button specific areas to make all buttons look similar. 2010-12-08 19:33:12 +00:00
Trevor Parscal
0e5d176219 Integrated some jquery.ui customizations from UsabilityInitiative 2010-09-16 22:07:25 +00:00
Trevor Parscal
8875f3a8ae Ported more customizations from UsabilityInitiative/css/vector 2010-09-16 21:29:46 +00:00
Trevor Parscal
05fc9f8685 Got rid of glowing ball background image for overlays 2010-09-16 21:17:39 +00:00