Upgrades jquery and bootstrap

This commit is contained in:
mabashian
2018-09-12 13:22:32 -04:00
parent 2b5210842d
commit 9c20e1b494
130 changed files with 1301 additions and 1282 deletions

View File

@@ -174,6 +174,14 @@
grid-column-start: 1;
grid-column-end: 3;
}
/* The ng-transclude tag that gets injected as a part of at-Panel was throwing off the height
of the panel after Bootstrap's move to display: flex. This seemed like the most concise fix*/
ng-transclude {
display: flex;
flex-flow: column nowrap;
height: 100%;
}
}
.at-mixin-event() {

View File

@@ -10,7 +10,7 @@
ng-attr-placeholder="{{ vm.running ?
vm.strings.get('search.PLACEHOLDER_RUNNING') :
vm.strings.get('search.PLACEHOLDER_DEFAULT') }}">
<span class="input-group-btn">
<span class="input-group-btn input-group-append">
<button class="btn at-ButtonHollow--default at-Input-button"
ng-click="vm.submitSearch()"
ng-disabled="vm.disabled || !vm.value || vm.value === ''"