From 2cfe7d44579278e4da9a35269da965d2a5e0517f Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Fri, 5 Jun 2020 15:52:11 +0530 Subject: [PATCH] fix: Sider issues --- frappe/modules/full_text_search.py | 1 - frappe/public/scss/doc.scss | 16 ++++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/frappe/modules/full_text_search.py b/frappe/modules/full_text_search.py index 73c3957eb8..fce9983907 100644 --- a/frappe/modules/full_text_search.py +++ b/frappe/modules/full_text_search.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals import frappe -import os from whoosh.index import create_in, open_dir from whoosh.fields import TEXT, ID, Schema from whoosh.qparser import MultifieldParser, FieldsPlugin, WildcardPlugin diff --git a/frappe/public/scss/doc.scss b/frappe/public/scss/doc.scss index 2bb2962b2d..b826d73c98 100644 --- a/frappe/public/scss/doc.scss +++ b/frappe/public/scss/doc.scss @@ -20,13 +20,13 @@ $navbar-height-lg: 4.5rem; } } -.navbar-expand-lg .doc-container { +.doc-container { + max-width: 1280px; padding-left: 1.5rem; padding-right: 1.5rem; } -.doc-container { - max-width: 1280px; +.navbar-expand-lg .doc-container { padding-left: 1.5rem; padding-right: 1.5rem; } @@ -255,11 +255,6 @@ $navbar-height-lg: 4.5rem; background-color: $light; } - .table-bordered thead th, - .table-bordered thead td { - border-bottom-width: 1px; - } - .table-bordered, .table-bordered th, .table-bordered td { @@ -267,4 +262,9 @@ $navbar-height-lg: 4.5rem; border-right: none; border-color: $gray-200; } + + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 1px; + } }