import React, { useEffect, useState } from 'react'; import styled from 'styled-components'; import { switchThemeTo } from '../session/utils/Theme'; import { SessionTheme } from '../themes/SessionTheme'; import { fetch } from '../util/logging'; import { SessionButton, SessionButtonType } from './basic/SessionButton'; import { SessionIconButton } from './icon'; const StyledContent = styled.div` background-color: var(--modal-background-content-color); color: var(--modal-text-color); font-family: var(--font-default); display: flex; flex-direction: column; padding: 20px; height: 100%; .session-button { margin: 1em auto 1em 0; padding: 1em; width: fit-content; } .session-icon-button { float: right; } h1 { color: var(--modal-text-color); } textarea { flex-grow: 1; width: 100%; box-sizing: border-box; padding: var(--margins-md); background-color: var(--input-background-color); color: var(--input-text-color); border: 2px solid var(--border-color); border-radius: 4px; resize: none; min-height: 100px; font-family: Monaco, Consolas, 'Courier New', Courier, monospace; font-size: 12px; } `; const DebugLogTextArea = (props: { content: string }) => { // tslint:disable-next-line: react-a11y-input-elements return ; }; const DebugLogButtons = (props: { content: string }) => { return (
{window.i18n('debugLogExplanation')}