fix(style): frappe theme colours in bs4 and minor fix

This commit is contained in:
Rushabh Mehta 2019-03-15 12:03:09 +05:30
parent 9a3ff771bc
commit b6d2e61ff0
4 changed files with 21 additions and 1 deletions

View file

@ -45,6 +45,7 @@ def get_modules_from_app(app):
active_modules_list = []
for m, module in iteritems(modules):
module['module_name'] = m
module['app'] = app
active_modules_list.append(module)
else:
for m in modules:

View file

@ -109,7 +109,7 @@ export default {
}
.module-box:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
box-shadow: 0 3px 4px 0 rgba(18, 18, 19, 0.08);
}
.hovered-box {

View file

@ -1,2 +1,21 @@
$gray-100: #fafbfc;
$gray-150: #f5f7fa;
$gray-200: #ebecf1;
$gray-300: #d1d8dd;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #8d99a6;
$gray-700: #495057;
$gray-800: #36414c;
$gray-900: #2e3338;
$primary: #5e64ff;
$black: #000;
$body-color: $gray-800;
$text-muted: $gray-600;
$border-color: $gray-200;
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";

View file