Quellcode durchsuchen

[cleanup] website

version-14
Rushabh Mehta vor 9 Jahren
Ursprung
Commit
3e489d3cb6
5 geänderte Dateien mit 12 neuen und 11 gelöschten Zeilen
  1. +1
    -0
      frappe/public/css/desk.css
  2. +3
    -4
      frappe/public/css/website.css
  3. +1
    -0
      frappe/public/less/desk.less
  4. +6
    -6
      frappe/public/less/website.less
  5. +1
    -1
      frappe/templates/includes/navbar/navbar_login.html

+ 1
- 0
frappe/public/css/desk.css Datei anzeigen

@@ -541,6 +541,7 @@ textarea.form-control {
} }
.breadcrumb.for-file-list { .breadcrumb.for-file-list {
margin-bottom: 0px; margin-bottom: 0px;
padding: 18px 15px;
border-bottom: 1px solid #d1d8dd; border-bottom: 1px solid #d1d8dd;
border-radius: 0px; border-radius: 0px;
} }


+ 3
- 4
frappe/public/css/website.css Datei anzeigen

@@ -599,6 +599,9 @@ fieldset {
color: inherit !important; color: inherit !important;
text-decoration: none; text-decoration: none;
} }
.web-list-item:last-child {
border-bottom: 0px;
}
.blog-info { .blog-info {
text-align: center; text-align: center;
margin-top: 30px; margin-top: 30px;
@@ -622,13 +625,11 @@ fieldset {
background: transparent; background: transparent;
} }
.blog-category { .blog-category {
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
text-align: center; text-align: center;
margin-bottom: 30px; margin-bottom: 30px;
} }
.author { .author {
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
border-bottom: 1px solid #EBEFF2; border-bottom: 1px solid #EBEFF2;
padding-bottom: 30px; padding-bottom: 30px;
@@ -895,7 +896,6 @@ body {
font-size: 32px; font-size: 32px;
} }
.page-head h1 { .page-head h1 {
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
font-size: 24px; font-size: 24px;
} }
@@ -905,7 +905,6 @@ body {
.footer-group-label { .footer-group-label {
display: inline-block; display: inline-block;
padding-bottom: 4px; padding-bottom: 4px;
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
font-size: 12px; font-size: 12px;
} }


+ 1
- 0
frappe/public/less/desk.less Datei anzeigen

@@ -434,6 +434,7 @@ textarea.form-control {


.breadcrumb.for-file-list { .breadcrumb.for-file-list {
margin-bottom: 0px; margin-bottom: 0px;
padding: 18px 15px;
border-bottom: 1px solid @border-color; border-bottom: 1px solid @border-color;
border-radius: 0px; border-radius: 0px;
} }


+ 6
- 6
frappe/public/less/website.less Datei anzeigen

@@ -237,7 +237,7 @@ fieldset {
color: @text-color !important; color: @text-color !important;
font-weight:500 !important; font-weight:500 !important;
} }
.sidebar-items { .sidebar-items {
margin-top:30px; margin-top:30px;
margin-bottom:30px; margin-bottom:30px;
@@ -284,6 +284,10 @@ fieldset {
} }
} }


.web-list-item:last-child {
border-bottom: 0px;
}

// .web-list-item:hover { // .web-list-item:hover {
// background: @panel-bg; // background: @panel-bg;
// } // }
@@ -317,14 +321,12 @@ fieldset {
} }


.blog-category { .blog-category {
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
text-align: center; text-align: center;
margin-bottom: 30px; margin-bottom: 30px;
} }


.author { .author {
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
border-bottom: 1px solid @light-border-color; border-bottom: 1px solid @light-border-color;
padding-bottom:30px; padding-bottom:30px;
@@ -344,7 +346,7 @@ fieldset {
.blog-list-item { .blog-list-item {
margin-top:30px; margin-top:30px;
margin-bottom:30px; margin-bottom:30px;
.blog-header { .blog-header {
font-size: 1.6em; font-size: 1.6em;
} }
@@ -493,7 +495,6 @@ a.active {
} }


.page-head h1 { .page-head h1 {
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
font-size: 24px; font-size: 24px;
} }
@@ -505,7 +506,6 @@ a.active {
.footer-group-label { .footer-group-label {
display:inline-block; display:inline-block;
padding-bottom: 4px; padding-bottom: 4px;
text-transform: uppercase;
letter-spacing: 0.5px; letter-spacing: 0.5px;
font-size: 12px; font-size: 12px;
} }


+ 1
- 1
frappe/templates/includes/navbar/navbar_login.html Datei anzeigen

@@ -22,6 +22,6 @@
</ul> </ul>
</li> </li>
{% if not hide_login %} {% if not hide_login %}
<li class="btn-login-area text-uppercase"><a href="/login">{{ _("Login") }}</a></li>
<li class="btn-login-area"><a href="/login">{{ _("Login") }}</a></li>
{% endif %} {% endif %}
{% endif %} {% endif %}

Laden…
Abbrechen
Speichern