Merge pull request #12354 from surajshetty3416/design-fixes

This commit is contained in:
Suraj Shetty 2021-02-09 16:16:19 +05:30 committed by GitHub
commit 47d6e7c22f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -123,7 +123,7 @@ frappe.views.CommunicationComposer = Class.extend({
label: __("Send me a copy"),
fieldtype: "Check",
fieldname: "send_me_a_copy",
default: 1 // frappe.boot.user.send_me_a_copy
default: frappe.boot.user.send_me_a_copy
},
{
label: __("Send Read Receipt"),

View file

@ -130,6 +130,7 @@ body.modal-open {
border-radius: var(--border-radius-md);
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
box-shadow: -10px 10px rgba(0, 0, 0, 0.100661);
}
@include media-breakpoint-down(sm) {
@ -206,4 +207,4 @@ body.modal-open {
.avatar {
margin-right: var(--margin-md);
}
}
}

View file

@ -31,6 +31,7 @@
--fg-hover-color: var(--gray-700);
--card-bg: var(--gray-800);
--disabled-text-color: var(--gray-400);
--disabled-control-bg: var(--gray-700);
--control-bg: var(--gray-700);
--control-bg-on-gray: var(--gray-800);
--awesomebar-focus-bg: var(--control-bg);