oms-QA/Theme/Backend/styles.scss
Dennis Eichhorn 2016b7232f
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled
fix permissions
2025-04-02 14:15:06 +00:00

127 lines
2.1 KiB
SCSS

.qa-list {
.title {
a {
font-size: 2rem;
margin-left: 1rem;
}
}
.counter-area {
flex-direction: row;
}
.counter-container+.counter-container {
margin-left: 10px;
}
}
.qa-question-view {
display: flex;
flex-direction: row;
.counter-area {
flex-direction: column;
margin: 1rem 10px 0 0;
min-width: 50px;
}
.portlet {
display: flex;
flex-direction: column;
}
textarea {
height: 100px;
}
.counter-container+.counter-container {
margin-top: 10px;
}
}
.qa {
.qa-accept {
font-size: 3rem;
font-weight: 800;
color: #ccc;
cursor: pointer;
}
.accepted {
.qa-accept {
color: #81e27d;
}
.portlet {
border-top: 3px solid #81e27d;
}
}
.qa-vote {
font-size: 3rem;
color: #ccc;
cursor: pointer;
font-weight: 800;
&.voted {
color: #81e27d;
}
}
.counter-area {
display: flex;
.counter-container {
display: flex;
flex-direction: column;
align-items: center;
}
.counter {
width: 2.3rem;
height: 2.8rem;
border: 1px solid #ccc;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
}
.text {
font-size: .8rem;
}
}
.score {
&.closed {
background: #ee5649;
}
&.open {
background: #f8ffa8;
}
&.done {
background: #81e27d;
}
}
.qa-portlet-foot {
display: flex;
flex-direction: row;
align-items: top;
.account-info {
display: flex;
align-items: center;
margin-left: auto;
.name {
margin-right: 10px;
display: flex;
flex-direction: column;
}
}
}
}