mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 04:10:44 -03:30
Fixed spinners after jquery-ui upgrade
This commit is contained in:
parent
f7259a1e78
commit
706b370f7e
@ -2334,4 +2334,9 @@ body {
|
||||
|
||||
.btn {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-spinner-input {
|
||||
margin-top: .3em;
|
||||
margin-bottom: .3em;
|
||||
}
|
||||
|
||||
@ -355,7 +355,7 @@
|
||||
.Form-numberInputButton {
|
||||
color: @default-icon!important;
|
||||
font-size: 14px;
|
||||
|
||||
display: block;
|
||||
}
|
||||
|
||||
.Form-dropDown {
|
||||
|
||||
@ -18,8 +18,16 @@ global.$ = global.jQuery;
|
||||
|
||||
require('jquery-resize');
|
||||
require('jquery-ui');
|
||||
require('jquery-ui/ui/widgets/button');
|
||||
require('jquery-ui/ui/widgets/spinner');
|
||||
require('bootstrap');
|
||||
require('bootstrap-datepicker');
|
||||
|
||||
// jquery-ui and bootstrap both define $.fn.button
|
||||
// the code below resolves that namespace clash
|
||||
const btn = $.fn.button.noConflict();
|
||||
$.fn.btn = btn;
|
||||
|
||||
require('select2');
|
||||
|
||||
// Standalone libs
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user