mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
IMPR: Show scrolls to prevent jumping
This commit is contained in:
parent
c710fb02ff
commit
83952d4c83
@ -7,9 +7,6 @@ After:
|
|||||||
A2nt\CMSNiceties\Extensions\SiteMemberLoginForm:
|
A2nt\CMSNiceties\Extensions\SiteMemberLoginForm:
|
||||||
enable_captcha: false
|
enable_captcha: false
|
||||||
|
|
||||||
SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension:
|
|
||||||
default_spam_protector: UndefinedOffset\NoCaptcha\Forms\NocaptchaProtector
|
|
||||||
|
|
||||||
UndefinedOffset\NoCaptcha\Forms\NocaptchaField:
|
UndefinedOffset\NoCaptcha\Forms\NocaptchaField:
|
||||||
site_key: '`NOCAPTCHA_SITE_KEY`' #Your site key (required)
|
site_key: '`NOCAPTCHA_SITE_KEY`' #Your site key (required)
|
||||||
secret_key: '`NOCAPTCHA_SECRET_KEY`' #Your secret key (required)
|
secret_key: '`NOCAPTCHA_SECRET_KEY`' #Your secret key (required)
|
||||||
@ -20,3 +17,17 @@ UndefinedOffset\NoCaptcha\Forms\NocaptchaField:
|
|||||||
default_badge: 'bottomright' #Default badge position (bottomright, bottomleft or inline, defaults to bottomright)
|
default_badge: 'bottomright' #Default badge position (bottomright, bottomleft or inline, defaults to bottomright)
|
||||||
proxy_server: '' #Your proxy server address (optional)
|
proxy_server: '' #Your proxy server address (optional)
|
||||||
proxy_auth: '' #Your proxy server authentication information (optional)
|
proxy_auth: '' #Your proxy server authentication information (optional)
|
||||||
|
|
||||||
|
SilverStripe\SpamProtection\Extension\FormSpamProtectionExtension:
|
||||||
|
default_spam_protector: WebbuildersGroup\Turnstile\Forms\TurnstileProtector #Set the default spam protector
|
||||||
|
#default_spam_protector: UndefinedOffset\NoCaptcha\Forms\NocaptchaProtector
|
||||||
|
|
||||||
|
WebbuildersGroup\Turnstile\Forms\TurnstileField:
|
||||||
|
site_key: '`TURNSTILE_SITE_KEY`' #Your site key (required)
|
||||||
|
secret_key: '`TURNSTILE_SECRET_KEY`' #Your secret key (required)
|
||||||
|
verify_ssl: true #Allows you to disable php-curl's SSL peer verification by setting this to false (optional, defaults to true)
|
||||||
|
default_theme: "light" #Default theme color (optional, light, dark or auto, defaults to light)
|
||||||
|
js_onload_callback: null #Onload callback to be called when the JS for Turnstile is loaded
|
||||||
|
proxy_server: "`SS_OUTBOUND_PROXY_SERVER`" #Your proxy server address (optional)
|
||||||
|
proxy_port: "`SS_OUTBOUND_PROXY_PORT`" #Your proxy server address port (optional)
|
||||||
|
proxy_auth: "`SS_OUTBOUND_PROXY_AUTH`" #Your proxy server authentication information (optional)
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<style>
|
<style>
|
||||||
|
<%-- Some prestyling to prevent jumpings --%>
|
||||||
button{background:none;border:0}
|
button{background:none;border:0}
|
||||||
.container{margin-left:auto;margin-right:auto;padding-left:0.75rem;padding-right:0.75rem}
|
.container{margin-left:auto;margin-right:auto;padding-left:0.75rem;padding-right:0.75rem}
|
||||||
@media (min-width: 1368px){.container{max-width:1180px}}
|
@media (min-width: 1368px){.container{max-width:1180px}}
|
||||||
@ -7,6 +8,8 @@
|
|||||||
.row {display:flex;justify-content:space-between}
|
.row {display:flex;justify-content:space-between}
|
||||||
.breadcrumb{list-style:none}
|
.breadcrumb{list-style:none}
|
||||||
.breadcrumb-item{display:inline-block}
|
.breadcrumb-item{display:inline-block}
|
||||||
|
<%-- always show scroll bar --%>
|
||||||
|
html {overflow-y:scroll}
|
||||||
<%-- Site Specific --%>
|
<%-- Site Specific --%>
|
||||||
@keyframes lds-ellipsis1 {
|
@keyframes lds-ellipsis1 {
|
||||||
0% {
|
0% {
|
||||||
|
Loading…
Reference in New Issue
Block a user