diff --git a/frappe/public/css/desk.css b/frappe/public/css/desk.css index 87d4d9ae86..627dfb29ea 100644 --- a/frappe/public/css/desk.css +++ b/frappe/public/css/desk.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; } @@ -238,6 +230,13 @@ a.no-decoration:active { letter-spacing: 0.4px; color: #8D99A6; } +.ellipsis { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 100%; + vertical-align: middle; +} .nav-pills a, .nav-pills a:hover { border-bottom: none; @@ -357,6 +356,9 @@ fieldset[disabled] .form-control { .ui-datepicker { z-index: 100 !important; } +.ui-datepicker { + z-index: 100 !important; +} .ui-datepicker .ui-datepicker-header { border-radius: 0px !important; } @@ -471,6 +473,9 @@ fieldset[disabled] .form-control { .modal .hasDatepicker { z-index: 1140; } +.link-field.ui-front { + z-index: inherit; +} .modal .link-field .ui-autocomplete { z-index: 1141; } diff --git a/frappe/public/css/docs.css b/frappe/public/css/docs.css index 6d961f4934..b143e3af85 100644 --- a/frappe/public/css/docs.css +++ b/frappe/public/css/docs.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} .navbar .dropdown-toggle { padding-top: 8px; padding-bottom: 8px; diff --git a/frappe/public/css/filter_dashboard.css b/frappe/public/css/filter_dashboard.css index eaa206de54..d7a5f38bdf 100644 --- a/frappe/public/css/filter_dashboard.css +++ b/frappe/public/css/filter_dashboard.css @@ -2,22 +2,22 @@ .date-range-picker { font-size: 85%; } +.filter_area { + margin: 0 -15px; +} .filter-dashboard-wrapper { display: none; padding-bottom: 0px; } .list-filter-dashboard { - height: 202px; - margin-top: -10px; - margin-left: -15px; - margin-right: -14px; + border-top: 1px solid #d1d8dd; overflow-x: scroll; overflow-y: hidden; } .filter-header { border-bottom: 1px solid #d1d8dd; background-color: #F7FAFC; - padding: 3px 0px; + padding: 8px 15px; } .filter-header .search-dropdown { margin-top: -23px; @@ -26,33 +26,36 @@ font-size: 14px; } .filter-header .sort-dropdown { - margin-top: -20px; + margin-top: -16px; } .filter-header .dropdown-menu { min-width: 150px !important; } .filter-label { margin: 0px; - padding: 5px; color: #8D99A6; } .filter-dashboard-items { height: 187px; margin-right: -2px; + display: flex; } .filter-dash-item { - width: 180px; + flex-grow: 1; + min-width: 180px; float: left; height: 187px; border-right: 1px solid #d1d8dd; } .filter-input { - padding: 5px; - padding-top: 10px; + padding: 10px 15px; +} +.filter-input input { + height: 25px; } -.fitler-item-value, +.filter-item-value, .stat-no-records { - padding: 0px 5px; + padding: 0px 15px; } .filter-dash-item:after { /*top:-10px;*/ @@ -84,7 +87,7 @@ .filter-stat-link > .badge { position: absolute; float: right; - margin-right: 5px; + margin-right: 10px; margin-top: 2px; font-size: 11px; } diff --git a/frappe/public/css/form_grid.css b/frappe/public/css/form_grid.css index 28d5d0db54..b0614d1205 100644 --- a/frappe/public/css/form_grid.css +++ b/frappe/public/css/form_grid.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} .form-grid { border: 1px solid #d1d8dd; border-radius: 3px; @@ -156,6 +148,7 @@ } .grid-row .frappe-control { margin-bottom: 0px; + position: relative; } .grid-row .col-sm-6 .editor-toolbar-text-group, .grid-row .col-sm-6 .editor-toolbar-align-group { diff --git a/frappe/public/css/list.css b/frappe/public/css/list.css index c4eaff5d7a..e620175d67 100644 --- a/frappe/public/css/list.css +++ b/frappe/public/css/list.css @@ -41,7 +41,6 @@ } .filter-box { border-top: 1px solid #d1d8dd; - margin: 0px -15px; padding: 10px 15px 3px; } .filter-box .remove-filter { @@ -52,6 +51,9 @@ padding-right: 15px; width: calc(64%); } +.filter-box .filter_field .frappe-control { + position: relative; +} .ui-autocomplete .filter-field-select { cursor: pointer; } diff --git a/frappe/public/css/mobile.css b/frappe/public/css/mobile.css index 4a7f586550..d247cadca0 100644 --- a/frappe/public/css/mobile.css +++ b/frappe/public/css/mobile.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} html { min-height: 100%; } diff --git a/frappe/public/css/navbar.css b/frappe/public/css/navbar.css index ffc5546f60..e7675b912e 100644 --- a/frappe/public/css/navbar.css +++ b/frappe/public/css/navbar.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} .navbar .dropdown-toggle { padding-top: 8px; padding-bottom: 8px; diff --git a/frappe/public/css/page.css b/frappe/public/css/page.css index 8db8738c14..c8c0b02483 100644 --- a/frappe/public/css/page.css +++ b/frappe/public/css/page.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} .page-container { margin-top: 40px; } diff --git a/frappe/public/css/sidebar.css b/frappe/public/css/sidebar.css index 6a6225f0d1..1541244de3 100644 --- a/frappe/public/css/sidebar.css +++ b/frappe/public/css/sidebar.css @@ -1,12 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} html { min-height: 100%; } diff --git a/frappe/public/css/website.css b/frappe/public/css/website.css index a2f4d8f0e5..e1b9b35f1e 100644 --- a/frappe/public/css/website.css +++ b/frappe/public/css/website.css @@ -1,13 +1,4 @@ /* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis, -.ellipsis { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} - body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; } @@ -239,6 +230,13 @@ a.no-decoration:active { letter-spacing: 0.4px; color: #8D99A6; } +.ellipsis { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 100%; + vertical-align: middle; +} .avatar { display: inline-block; vertical-align: middle; diff --git a/frappe/public/js/frappe/ui/filters/filter_dashboard.html b/frappe/public/js/frappe/ui/filters/filter_dashboard.html index 10f3325691..284d30520c 100644 --- a/frappe/public/js/frappe/ui/filters/filter_dashboard.html +++ b/frappe/public/js/frappe/ui/filters/filter_dashboard.html @@ -1,6 +1,6 @@
-
-
+
+
diff --git a/frappe/public/js/frappe/ui/filters/filter_dashboard_head.html b/frappe/public/js/frappe/ui/filters/filter_dashboard_head.html index 4322661461..b50096b601 100644 --- a/frappe/public/js/frappe/ui/filters/filter_dashboard_head.html +++ b/frappe/public/js/frappe/ui/filters/filter_dashboard_head.html @@ -1,4 +1,4 @@ -
+
{{ label }}
{% if (type!=="Date" && type!=="Datetime") { %} @@ -12,7 +12,7 @@
-