Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions viin_brand_website_slides/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@
# any module necessary for this one to work correctly
'depends': ['website_slides'],

'assets': {
'web.assets_frontend': [
'viin_brand_website_slides/static/src/scss/website_slides.scss',
],
},
'data': [
'data/website_slides_templates_profile.xml',
],

'images': [
# 'static/description/main_screenshot.png'
],
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<odoo>
<template id="display_course" inherit_id="website_slides.display_course">
<xpath expr="//div[hasclass('overflow-hidden')]" position="attributes">
<attribute name="style"></attribute>
</xpath>
</template>
</odoo>
39 changes: 39 additions & 0 deletions viin_brand_website_slides/static/src/scss/website_slides.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.o_wslides_channel_completion_progressbar .progress .progress-bar {
background-color: #00bbce;
}
.o_wslides_home_content_section .progress .progress-bar {
background-color: #00bbce;
}
.o_wslides_home_nav .navbar{
padding: 10px
}

.o_wprofile_nav_tabs .nav-link:not(.active):hover {
background: #7f4282;
}

.o_wslides_course_main .o_wslides_nav_tabs .nav-link:not(.active):hover {
background: #7f4282;
}

.form-control:focus {
outline: none;
border-color: #7f4282;
box-shadow:
0 0 4px rgba(127, 66, 130, 0.4),
0 0 8px rgba(127, 66, 130, 0.3);
transition: all 0.25s ease;
}

.form-check-input:focus{
box-shadow:none;
}

.dropdown-item {
padding: 8px 14px;
transition: all 0.2s ease-in-out;
}

.navbar-light .dropdown-menu .dropdown-item.active, .navbar-light .dropdown-menu .dropdown-item.active:hover{
color: white !important;
}