Commit 4027599c authored by Sascha Grossenbacher's avatar Sascha Grossenbacher Committed by Théodore Biadala
Browse files

Issue #3277748 by nod_, balintpekker: Drupal 10 compatibility

parent a7b32b53
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
node_modules/
+5 −0
Original line number Diff line number Diff line
@@ -35,6 +35,11 @@ code, and instead to select a replacement solution as soon as possible.
  - [jQuery UI Spinner](https://www.drupal.org/project/jquery_ui_spinner)
  - [jQuery UI Tooltip](https://www.drupal.org/project/jquery_ui_tooltip)


## Update assets.
yarn install
yarn build

## Current maintainers:
* Jeff Robbins (jjeff)
* Angela Byron (webchick)
+23 −0
Original line number Diff line number Diff line
/*!
 * jQuery UI Accordion 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/accordion/#theming
 */
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
+12 −0
Original line number Diff line number Diff line
/*!
 * jQuery UI CSS Framework 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
@import "base.css";
@import "theme.css";
+16 −0
Original line number Diff line number Diff line
/*!
 * jQuery UI Autocomplete 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/autocomplete/#theming
 */
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
Loading