浏览代码

Breadcrumb ui fix in website portal (#3141)

- frappe/erpnext#8317
version-14
Faris Ansari 8 年前
committed by Rushabh Mehta
父节点
当前提交
90b62d6fc6
共有 3 个文件被更改,包括 33 次插入1 次删除
  1. +17
    -0
      frappe/public/css/website.css
  2. +15
    -0
      frappe/public/less/website.less
  3. +1
    -1
      frappe/templates/web.html

+ 17
- 0
frappe/public/css/website.css 查看文件

@@ -818,6 +818,11 @@ a.active {
letter-spacing: 0.5px;
font-size: 24px;
}
@media (max-width: 767px) {
.page-head h1 {
font-size: 16px;
}
}
.btn-next-wrapper {
margin-top: 60px;
}
@@ -893,10 +898,22 @@ li.footer-child-item {
padding-left: 0px;
width: 100%;
}
@media (max-width: 767px) {
.item-search .item-search-input {
padding: 0;
}
}
.item-search i {
margin-right: -30px;
margin-top: -25px;
}
@media (max-width: 767px) {
.item-search i {
margin-right: -25px;
margin-top: -18px;
font-size: 12px;
}
}
.vert-line {
overflow: hidden;
}


+ 15
- 0
frappe/public/less/website.less 查看文件

@@ -537,6 +537,10 @@ a.active {
.page-head h1 {
letter-spacing: 0.5px;
font-size: 24px;

@media (max-width: @screen-xs) {
font-size: 16px;
}
}

.btn-next-wrapper {
@@ -628,10 +632,21 @@ li.footer-child-item {
padding: 7px;
padding-left: 0px;
width: 100%;

@media (max-width: @screen-xs) {
padding: 0;
}
}

i {
margin-right: -30px;
margin-top: -25px;

@media (max-width: @screen-xs) {
margin-right: -25px;
margin-top: -18px;
font-size: 12px;
}
}
}



+ 1
- 1
frappe/templates/web.html 查看文件

@@ -13,7 +13,7 @@
<div class="{% if show_sidebar %}page-content with-sidebar col-sm-9{% else %} page-content col-sm-12 {% endif %}">
<div class="page-content-wrapper">
<div class="row page-head">
<div class='col-sm-12'>
<div class='col-sm-12 hidden-xs'>
{% if not no_breadcrumbs and parents %}
<div class="page-breadcrumbs">
{% block breadcrumbs %}


正在加载...
取消
保存