123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import styled from 'styled-components';
- import { Button } from 'components/common/Button/Button';
- export const DiffWrapper = styled.div`
- align-items: stretch;
- display: block;
- flex-basis: 0;
- flex-grow: 1;
- flex-shrink: 1;
- min-height: min-content;
- padding-top: 1.5rem !important;
- .ace_content {
- background-color: ${({ theme }) => theme.default.backgroundColor};
- color: ${({ theme }) => theme.default.color.normal};
- }
- .ace_line {
- background-color: ${({ theme }) => theme.default.backgroundColor};
- }
- .ace_gutter-cell {
- background-color: ${({ theme }) =>
- theme.ksqlDb.query.editor.cell.backgroundColor};
- }
- .ace_gutter-layer {
- background-color: ${({ theme }) =>
- theme.ksqlDb.query.editor.layer.backgroundColor};
- color: ${({ theme }) => theme.default.color.normal};
- }
- .ace_cursor {
- color: ${({ theme }) => theme.ksqlDb.query.editor.cursor};
- }
- .ace_print-margin {
- display: none;
- }
- .ace_variable {
- color: ${({ theme }) => theme.ksqlDb.query.editor.variable};
- }
- .ace_string {
- color: ${({ theme }) => theme.ksqlDb.query.editor.aceString};
- }
- > .codeMarker {
- background: ${({ theme }) => theme.icons.warningIcon};
- position: absolute;
- z-index: 20;
- }
- `;
- export const Section = styled.div`
- animation: fadein 0.5s;
- `;
- export const DiffBox = styled.div`
- flex-direction: column;
- margin-left: -0.75rem;
- margin-right: -0.75rem;
- margin-top: -0.75rem;
- box-shadow: none;
- padding: 1.25rem;
- &:last-child {
- margin-bottom: -0.75rem;
- }
- `;
- export const DiffTilesWrapper = styled.div`
- align-items: stretch;
- display: block;
- flex-basis: 0;
- flex-grow: 1;
- flex-shrink: 1;
- min-height: min-content;
- &:not(.is-child) {
- display: flex;
- }
- `;
- export const DiffTile = styled.div`
- flex: none;
- width: 50%;
- `;
- export const DiffVersionsSelect = styled.div`
- width: 0.625em;
- `;
- export const BackButton = styled(Button)`
- margin: 10px 9px;
- `;
|