72 lines
1.5 KiB
CSS
72 lines
1.5 KiB
CSS
.issueDetails > .content {
|
|
display: flex;
|
|
padding: 0 30px 60px;
|
|
}
|
|
|
|
.issueDetails > .content > .left {
|
|
width: 65%;
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.issueDetails > .content > .left > .styledTextArea {
|
|
margin: 18px 0 0 -8px;
|
|
height: 44px;
|
|
width: 100%;
|
|
}
|
|
|
|
.issueDetails > .content > .left > .styledTextArea > textarea {
|
|
padding: 7px 7px 8px;
|
|
line-height: 1.28;
|
|
resize: none;
|
|
transition: background 0.1s;
|
|
font-size: 24px;
|
|
font-family: var(--font-medium);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.issueDetails > .content > .left > .styledTextArea > textarea:not(:focus) {
|
|
background: #fff;
|
|
border: 1px solid transparent;
|
|
box-shadow: 0 0 0 1px transparent;
|
|
}
|
|
|
|
.issueDetails > .content > .left > .styledTextArea > textarea:hover:not(:focus) {
|
|
background: var(--backgroundLight);
|
|
}
|
|
|
|
.issueDetails > .content > .right {
|
|
width: 35%;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.issueDetails > .topActions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 21px 18px 0;
|
|
}
|
|
|
|
.issueDetails > .topActions > .topActionsRight {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.issueDetails > .topActions > .topActionsRight > * {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.issueDetails > .topActions .styledSelect > .valueContainer > .value {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--textMedium);
|
|
font-size: 13px
|
|
}
|
|
|
|
.issueDetails > .sectionTitle {
|
|
margin: 24px 0 5px;
|
|
text-transform: uppercase;
|
|
color: var(--textMedium);
|
|
font-size: 12.5px;
|
|
font-family: "CircularStdBold", serif;
|
|
font-weight: normal
|
|
}
|