From 2b47031f641b762d2e463f4284b3d77b898a99d2 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Tue, 23 Aug 2022 08:10:19 -0500 Subject: [PATCH] Moving selectionTool style to override-styles.css --- src/qqq/pages/entity-list/index.tsx | 1 - src/qqq/pages/entity-list/styles.css | 26 -------------------------- src/qqq/styles/qqq-override-styles.css | 8 +++++++- 3 files changed, 7 insertions(+), 28 deletions(-) delete mode 100644 src/qqq/pages/entity-list/styles.css diff --git a/src/qqq/pages/entity-list/index.tsx b/src/qqq/pages/entity-list/index.tsx index d184814..33184bb 100644 --- a/src/qqq/pages/entity-list/index.tsx +++ b/src/qqq/pages/entity-list/index.tsx @@ -77,7 +77,6 @@ import Button from "@mui/material/Button"; import Footer from "../../components/Footer"; import QProcessUtils from "../../utils/QProcessUtils"; -import "./styles.css"; import {QActionsMenuButton, QCreateNewButton} from "qqq/components/QButtons"; import QValueUtils from "qqq/utils/QValueUtils"; import LinearProgress from "@mui/material/LinearProgress"; diff --git a/src/qqq/pages/entity-list/styles.css b/src/qqq/pages/entity-list/styles.css deleted file mode 100644 index 5f4975c..0000000 --- a/src/qqq/pages/entity-list/styles.css +++ /dev/null @@ -1,26 +0,0 @@ -/* - * QQQ - Low-code Application Framework for Engineers. - * Copyright (C) 2021-2022. Kingsrook, LLC - * 651 N Broad St Ste 205 # 6917 | Middletown DE 19709 | United States - * contact@kingsrook.com - * https://github.com/Kingsrook/ - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -.selectionTool -{ - margin-left: 40px; - font-size: 14px; -} diff --git a/src/qqq/styles/qqq-override-styles.css b/src/qqq/styles/qqq-override-styles.css index e6c5891..4f865a0 100644 --- a/src/qqq/styles/qqq-override-styles.css +++ b/src/qqq/styles/qqq-override-styles.css @@ -103,4 +103,10 @@ .MuiInputAdornment-sizeMedium * { font-size: .875rem !important; -} \ No newline at end of file +} + +.MuiDataGrid-toolbarContainer .selectionTool +{ + margin-left: 40px; + font-size: 14px; +}