You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/components/WindowControls.js

41 lines
974 B
JavaScript

import React from 'react'
import { Controls, ControlsBW } from './svg/Controls'
export default ({ theme, handleTitleBarChange }) => (
<div className="window-controls">
7 years ago
{theme === 'bw' ? <ControlsBW /> : <Controls />}
<div className="window-title-container">
<input type="text" spellCheck="false" onChange={e => handleTitleBarChange(e.target.value)} />
</div>
7 years ago
<style jsx>
{`
div {
margin-top: -24px;
position: relative;
top: 34px;
margin-left: 18px;
z-index: 2;
7 years ago
}
.window-title-container {
position: absolute;
top: 20px;
left: -18px;
width: 100%;
text-align: center;
}
input {
width: 250px;
background: none;
outline: none;
border: none;
color: white;
text-align: center;
font-size: 14px;
}
7 years ago
`}
</style>
</div>
)