Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
joshine
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
joshine
Commits
173dc938
Commit
173dc938
authored
Sep 27, 2022
by
lmf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化底部点击隐藏
优化五星好评样式
parent
ddc4d0c8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
4 deletions
+25
-4
app/design/frontend/Joshine/breeze/Magento_Theme/templates/html/footer.phtml
+20
-2
app/design/frontend/Joshine/breeze/web/css/_custom.less
+5
-2
No files found.
app/design/frontend/Joshine/breeze/Magento_Theme/templates/html/footer.phtml
View file @
173dc938
...
@@ -64,4 +64,22 @@ $logoHeight = $logoSizeResolver !== null && $logoSizeResolver->getHeight()
...
@@ -64,4 +64,22 @@ $logoHeight = $logoSizeResolver !== null && $logoSizeResolver->getHeight()
</span>
</span>
</div>
</div>
</div>
</div>
\ No newline at end of file
<script>
require
([
'jquery'
],
function
(
$
)
{
//footer
$
(
"h4"
).
click
(
function
()
{
var
dis
=
$
(
this
).
siblings
(
"ul"
).
css
(
"display"
);
if
(
dis
==
"none"
){
$
(
this
).
siblings
(
"ul"
).
css
(
"display"
,
"block"
);
$
(
this
).
children
(
"span"
).
html
(
'^'
)
}
else
{
$
(
this
).
siblings
(
"ul"
).
css
(
"display"
,
"none"
);
$
(
this
).
children
(
"span"
).
html
(
'>'
)
}
})
});
</script>
\ No newline at end of file
app/design/frontend/Joshine/breeze/web/css/_custom.less
View file @
173dc938
...
@@ -1824,8 +1824,11 @@ button.action.submit.primary {
...
@@ -1824,8 +1824,11 @@ button.action.submit.primary {
float: right;
float: right;
}
}
}
}
.amreview-submit-form .review-control-vote.control label:before{
.amreview-submit-form .review-control-vote.control:before{
position: absolute;
position: absolute !important;
}
.amreview-add-new .amreview-button.action{
background-color: #000;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment