Browse Source

Nov 13: [FIX] Bug Fixed 'web_login_styles'

pull/331/merge
Risvana Cybro 2 months ago
parent
commit
d191657742
  1. 2
      web_login_styles/__manifest__.py
  2. 5
      web_login_styles/doc/RELEASE_NOTES.md
  3. 7
      web_login_styles/views/webclient_templates_left.xml
  4. 8
      web_login_styles/views/webclient_templates_middle.xml
  5. 6
      web_login_styles/views/webclient_templates_right.xml

2
web_login_styles/__manifest__.py

@ -21,7 +21,7 @@
###############################################################################
{
'name': 'Customize Login Page Style',
'version': '17.0.1.0.0',
'version': '17.0.2.0.0',
'category': 'Extra Tools',
'summary': 'Customize The Login Page With Different Styles',
'description': 'The Module helps to customize login page with different '

5
web_login_styles/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 17.0.1.0.0
#### ADD
- Initial Commit for Customize Login Page Style.
#### 08.01.2024
#### Version 17.0.2.0.0
#### ADD
- Fix background image repetition issue when resizing the screen.

7
web_login_styles/views/webclient_templates_left.xml

@ -8,7 +8,12 @@
<t t-set="no_header" t-value="True"/>
<t t-set="no_footer" t-value="True"/>
<div class="background"
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color}; height: 100%;">
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color};
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100%;">
<div class="container body_layout" style="height: 100%;">
<div class="container py-5">
<div t-attf-class="card border-0 mx-auto bg-100 {{login_card_classes}} o_database_list"

8
web_login_styles/views/webclient_templates_middle.xml

@ -7,8 +7,12 @@
<t t-set="body_classname" t-value="'bg-100'"/>
<t t-set="no_header" t-value="True"/>
<t t-set="no_footer" t-value="True"/>
<div class="background"
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color}; height: 100%;">
<div class="background"
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color};
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100%;">
<div class="container py-5">
<div t-attf-class="card border-0 mx-auto bg-100 {{login_card_classes}} o_database_list"
style="max-width: 300px;">

6
web_login_styles/views/webclient_templates_right.xml

@ -8,7 +8,11 @@
<t t-set="no_header" t-value="True"/>
<t t-set="no_footer" t-value="True"/>
<div class="background"
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color}; height: 100%;">
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color};
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100%;">
<div class="container body_layout" style="height: 100%;">
<div class="container py-5">
<div t-attf-class="card border-0 mx-auto bg-100 {{login_card_classes}} o_database_list"

Loading…
Cancel
Save