mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 18:01:01 +00:00
Merge pull request #16620 from overleaf/jel-sso-modal-notifications
[web] SSO form notifications GitOrigin-RevId: 3b9ced2430434adb3a4fa093ad04c56648e95c43
This commit is contained in:
parent
45d44d2fe6
commit
2d3b7c5846
2 changed files with 13 additions and 2 deletions
|
@ -187,9 +187,18 @@ input[type='date'] {
|
|||
//
|
||||
// Designed to help with the organization and spacing of vertical forms. For
|
||||
// horizontal forms, use the predefined grid classes.
|
||||
|
||||
@form-group-margin-bottom: 15px;
|
||||
.form-group {
|
||||
margin-bottom: 15px;
|
||||
margin-bottom: @form-group-margin-bottom;
|
||||
}
|
||||
|
||||
// Form alert
|
||||
//
|
||||
// adds top padding/mergin so that element has spacing when scrolled into
|
||||
// view, but no vertical spacing is applied to layout
|
||||
.form-group#form-alert {
|
||||
padding-top: @form-group-margin-bottom;
|
||||
margin-top: -@form-group-margin-bottom;
|
||||
}
|
||||
|
||||
// Checkboxes and radios
|
||||
|
|
2
services/web/test/frontend/bootstrap.js
vendored
2
services/web/test/frontend/bootstrap.js
vendored
|
@ -134,3 +134,5 @@ globalThis.fetch =
|
|||
// ignore CSS files
|
||||
const { addHook } = require('pirates')
|
||||
addHook(() => '', { exts: ['.css'], ignoreNodeModules: false })
|
||||
|
||||
globalThis.HTMLElement.prototype.scrollIntoView = () => {}
|
||||
|
|
Loading…
Reference in a new issue