Merge branch 'rebrand-ui' of https://github.com/frappe/frappe into rebrand-ui

This commit is contained in:
prssanna 2020-12-29 17:00:48 +05:30
commit 094e727186
5 changed files with 5 additions and 3 deletions

View file

@ -2,7 +2,6 @@
<span class="flex justify-between">
<span class="text-color flex">
{% if (doc.comment_type && doc.comment_type == "Comment") { %}
{% console.log(doc) %}
<span>
{{ doc.user_full_name || frappe.user.full_name(doc.owner) }} {{ __("commented") }}
<span class="text-muted margin-left">

View file

@ -92,7 +92,7 @@
.breadcrumb {
padding: 0;
font-size: $font-size-sm;
background-color: white;
background-color: $breadcrumb-bg;
}
a.card {

View file

@ -1,5 +1,6 @@
.navbar-light {
border-bottom: 1px solid $border-color;
background: $navbar-bg;
}
.navbar-brand {

View file

@ -18,6 +18,8 @@ $body-color: $gray-700 !default;
$text-muted: $gray-600 !default;
$border-color: $gray-300 !default;
$headings-color: $gray-900 !default;
$breadcrumb-bg: transparent !default;
$navbar-bg: white !default;
$container-max-widths: (
sm: 540px,

View file

@ -58,7 +58,7 @@
window.socketio_port = {{ (frappe.socketio_port or 'null') }};
</script>
</head>
<body frappe-session-status="{{ 'logged-in' if frappe.session.user != 'Guest' else 'logged-out'}}" data-path="{{ path | e }}" {%- if template and template.endswith('.md') %} frappe-content-type="markdown" {% endif -%} class="bg-light">
<body frappe-session-status="{{ 'logged-in' if frappe.session.user != 'Guest' else 'logged-out'}}" data-path="{{ path | e }}" {%- if template and template.endswith('.md') %} frappe-content-type="markdown" {% endif -%} class="bg-light {{ body_class or ''}}">
{%- block banner -%}
{% include "templates/includes/banner_extension.html" ignore missing %}