Procházet zdrojové kódy

[fix] setup complete state colors

version-14
pratu16x7 před 7 roky
rodič
revize
e90abdfc58
3 změnil soubory, kde provedl 2 přidání a 19 odebrání
  1. +2
    -4
      frappe/desk/page/setup_wizard/setup_wizard.js
  2. +0
    -7
      frappe/public/css/page.css
  3. +0
    -8
      frappe/public/less/page.less

+ 2
- 4
frappe/desk/page/setup_wizard/setup_wizard.js Zobrazit soubor

@@ -237,7 +237,6 @@ frappe.setup.SetupWizard = class SetupWizard extends frappe.ui.Slides {
this.working_state_message = this.get_message( this.working_state_message = this.get_message(
__("Setting Up"), __("Setting Up"),
__("Sit tight while your system is being setup. This may take a few moments."), __("Sit tight while your system is being setup. This may take a few moments."),
'orange',
true true
).appendTo(this.parent); ).appendTo(this.parent);


@@ -245,8 +244,7 @@ frappe.setup.SetupWizard = class SetupWizard extends frappe.ui.Slides {
this.current_slide = null; this.current_slide = null;
this.completed_state_message = this.get_message( this.completed_state_message = this.get_message(
__("Setup Complete"), __("Setup Complete"),
__("You're all set!"),
'green'
__("You're all set!")
); );
} }


@@ -259,7 +257,7 @@ frappe.setup.SetupWizard = class SetupWizard extends frappe.ui.Slides {
const loading_html = loading const loading_html = loading
? '<div style="width:100%;height:100%" class="lds-rolling state-icon"><div></div></div>' ? '<div style="width:100%;height:100%" class="lds-rolling state-icon"><div></div></div>'
: `<div style="width:100%;height:100%" class="state-icon"> : `<div style="width:100%;height:100%" class="state-icon">
<i class="fa fa-check-circle text-extra-muted"
<i class="fa fa-check-circle text-success"
style="font-size: 64px; margin-top: -8px;"></i> style="font-size: 64px; margin-top: -8px;"></i>
</div>`; </div>`;




+ 0
- 7
frappe/public/css/page.css Zobrazit soubor

@@ -277,13 +277,6 @@ select.input-sm {
opacity: 1; opacity: 1;
cursor: pointer; cursor: pointer;
} }
.page-card-container,
.setup-state {
background-color: #f5f7fa;
}
.page-container .page-card-container {
background-color: #fff;
}
.page-card-container { .page-card-container {
padding: 70px; padding: 70px;
} }


+ 0
- 8
frappe/public/less/page.less Zobrazit soubor

@@ -335,14 +335,6 @@ select.input-sm {
} }
} }


.page-card-container, .setup-state {
background-color: #f5f7fa;
}

.page-container .page-card-container {
background-color: #fff;
}

.page-card-container { .page-card-container {
padding: 70px; padding: 70px;
} }


Načítá se…
Zrušit
Uložit