1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-21 14:02:59 +02:00

Minor adjustments to AdminThemeUikit Konkat default theme

This commit is contained in:
Ryan Cramer
2025-08-08 16:38:23 -04:00
parent d6837c8e5c
commit bf22960d11
2 changed files with 12 additions and 1 deletions

View File

@@ -599,6 +599,7 @@ class Tfa extends WireData implements Module, ConfigurableModule {
$f->attr('name', 'tfa_code'); $f->attr('name', 'tfa_code');
$f->label = $this->inputLabel; // Authentication code $f->label = $this->inputLabel; // Authentication code
$f->attr('required', 'required'); $f->attr('required', 'required');
$f->attr('autocomplete', 'one-time-code');
$f->collapsed = Inputfield::collapsedNever; $f->collapsed = Inputfield::collapsedNever;
$form->add($f); $form->add($f);

View File

@@ -5105,10 +5105,20 @@ a
) { ) {
color: inherit; color: inherit;
} }
/*
* this rule is causing wrong background color to appear between fields with themeOffset>0
html.pw .Inputfield.InputfieldTinyMCE .InputfieldContent { html.pw .Inputfield.InputfieldTinyMCE .InputfieldContent {
background-color: var(--pw-blocks-background, #f4f4f4); background-color: var(--pw-blocks-background, #f4f4f4);
} }
*/
.pw .InputfieldStateCollapsed.InputfieldNoBorder:hover > .InputfieldHeader {
/* fixes wrong background color for collapsed Inputfield with no-border when hovered */
background-color: inherit;
}
.InputfieldFileDelete {
padding-right: 7px;
}
.pw .tox-dialog .tox-button--naked { .pw .tox-dialog .tox-button--naked {
border: none; border: none;