eschutho commented on a change in pull request #14453:
URL: https://github.com/apache/superset/pull/14453#discussion_r625907394
##########
File path:
superset-frontend/src/views/CRUD/data/database/DatabaseModal/index.tsx
##########
@@ -125,6 +126,42 @@ function dbReducer(
const DEFAULT_TAB_KEY = '1';
+const StyledDBModal = styled(StyledModal)`
+ .ant-alert {
+ margin-top: ${({ theme }) => theme.gridUnit * 4}px;
+ color: #325d7e;
+ border: 1px solid #66bcfe;
+ font-size: 13px;
+ padding: 15px;
+ }
+ .ant-alert-message {
+ color: #325d7e;
+ font-weight: bold;
+ }
+ .ant-modal-body {
+ padding-top: 0;
+ }
+`;
+
+const Header = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding: ${({ theme }) => theme.gridUnit * 4}px;
+ margin-bottom: 16px;
+`;
+
+const HeaderTitle = styled.div`
+ color: ${({ theme }) => theme.colors.grayscale.dark1} !important;
+ font-weight: bold;
+ font-size: ${({ theme }) => theme.typography.sizes.l}px;
+`;
+
+const HeaderSubtitle = styled.div`
+ color: ${({ theme }) => theme.colors.grayscale.dark1} !important;
Review comment:
can you use specificity instead of importants?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]