Wider table title cell
This commit is contained in:
parent
5074279bc5
commit
61a6bac9dc
3 changed files with 7 additions and 3 deletions
|
@ -111,7 +111,7 @@ class TableComponent extends React.Component<Props, State> {
|
|||
{/* Headers */}
|
||||
|
||||
<div className="octo-table-header" id="mainBoardHeader">
|
||||
<div className="octo-table-cell" id="mainBoardHeader">
|
||||
<div className="octo-table-cell title-cell" id="mainBoardHeader">
|
||||
<div
|
||||
className="octo-label"
|
||||
style={{ cursor: "pointer" }}
|
||||
|
|
|
@ -36,7 +36,7 @@ class TableRow extends React.Component<Props, State> {
|
|||
|
||||
{/* Name / title */}
|
||||
|
||||
<div className="octo-table-cell" id="mainBoardHeader" onMouseOver={() => { openButonRef.current.style.display = null }} onMouseLeave={() => { openButonRef.current.style.display = "none" }}>
|
||||
<div className="octo-table-cell title-cell" id="mainBoardHeader" onMouseOver={() => { openButonRef.current.style.display = null }} onMouseLeave={() => { openButonRef.current.style.display = "none" }}>
|
||||
<div className="octo-icontitle">
|
||||
<div className="octo-icon">{card.icon}</div>
|
||||
<Editable
|
||||
|
|
|
@ -630,7 +630,7 @@ hr {
|
|||
box-sizing: border-box;
|
||||
padding: 5px 8px 6px 8px;
|
||||
|
||||
width: 240px;
|
||||
width: 150px;
|
||||
min-height: 32px;
|
||||
|
||||
font-size: 14px;
|
||||
|
@ -640,6 +640,10 @@ hr {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.octo-table-cell.title-cell {
|
||||
width: 280px;
|
||||
}
|
||||
|
||||
.octo-table-cell .octo-propertyvalue {
|
||||
line-height: 17px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue