discourse/app/assets/stylesheets/common/base/reviewables.scss

402 lines
6.0 KiB
SCSS
Raw Normal View History

.reviewable {
.status {
color: $primary-medium;
span.approved {
color: $success;
2019-04-10 13:22:28 -04:00
.d-icon {
color: currentColor;
}
}
span.rejected {
color: $danger;
2019-04-10 13:22:28 -04:00
.d-icon {
color: currentColor;
}
}
}
.nav-pills {
margin-bottom: 1em;
}
.reviewable-container {
display: flex;
flex-direction: row;
2019-04-02 13:50:47 -04:00
margin-top: 1em;
.reviewable-list {
flex: 1;
box-sizing: border-box;
2019-04-02 16:25:53 -04:00
max-width: 760px; // Match topic post width
min-width: 320px;
2019-04-02 16:25:53 -04:00
margin-right: auto;
}
.reviewable-filters {
width: 250px;
height: 100%;
box-sizing: border-box;
}
.reviewable-list + .reviewable-filters {
margin-left: 1em;
}
}
}
.reviewable-settings {
p.description {
margin-bottom: 2em;
}
.saved {
margin-left: 0.5em;
}
.reviewable-score-type {
display: flex;
.title {
width: 30%;
}
}
}
.reviewable-user-info {
margin: 0.5em 0;
.reviewable-user-fields {
margin-bottom: 2em;
}
.reviewable-user-details {
border-bottom: 1px solid $primary-low;
padding-bottom: 0.25em;
display: flex;
.name {
width: 8em;
font-weight: bold;
margin-right: 1em;
}
margin-bottom: 0.5em;
}
}
.no-review {
margin-top: 1em;
}
.reviewable-filters {
background-color: $primary-very-low;
padding: 1em;
margin-bottom: 1em;
.reviewable-filter {
display: flex;
flex-direction: column;
margin: 0 0 1em 0;
.filter-label {
margin: 0 0 0.5em 0;
}
.score-filter {
margin: 0;
width: 100%;
}
.category-chooser {
width: 100%;
}
}
}
.reviewable-topics {
width: 100%;
tbody {
td {
padding: 0.5em;
}
}
.reviewable-details {
display: flex;
justify-content: flex-end;
.btn {
display: flex;
align-items: center;
}
}
}
.reviewable-filters {
.topic-filter .btn {
display: flex;
width: auto;
}
.refresh {
height: 1em;
display: flex;
}
.score-filter {
width: 5em;
}
}
.user-flag-percentage {
display: flex;
align-items: center;
margin-left: 0.5em;
.percentage-label {
margin-right: 0.25em;
&.agreed {
color: $success;
2019-04-10 13:22:28 -04:00
+ .d-icon {
color: $success;
}
}
&.disagreed {
color: $danger;
2019-04-10 13:22:28 -04:00
+ .d-icon {
color: $danger;
}
}
&.ignored {
color: $primary-medium;
}
}
.d-icon {
font-size: 0.9em;
}
}
.reviewable-item {
2019-04-02 17:22:22 -04:00
padding-top: 2em;
border-top: 1px solid dark-light-choose($primary-low, $secondary-low);
.topic-statuses {
2019-04-02 16:25:53 -04:00
font-size: $font-up-2;
}
.reviewable-meta-data {
color: dark-light-choose($primary-medium, $secondary-medium);
display: flex;
width: 100%;
2019-04-02 17:22:22 -04:00
margin-bottom: 0.5em;
font-size: $font-down-1;
2019-04-02 13:50:47 -04:00
align-items: baseline;
.reviewable-type {
2019-04-02 13:50:47 -04:00
margin-right: 0.25em;
}
.reply-count {
margin-left: 1em;
}
.created-at {
margin-left: 1em;
margin-right: auto;
a {
color: dark-light-choose($primary-medium, $secondary-medium);
}
}
.score {
2019-04-02 13:50:47 -04:00
font-size: $font-down-1;
}
}
.reviewable-contents {
display: flex;
2019-04-02 13:50:47 -04:00
flex-wrap: wrap;
margin-bottom: 2em;
}
.reviewable-actions {
display: flex;
2019-04-02 13:50:47 -04:00
flex-wrap: wrap;
button {
white-space: nowrap;
}
.reviewable-action,
.reviewable-action-dropdown {
margin-right: 0.5em;
&.delete-user {
@extend .btn-danger;
}
}
}
padding-bottom: 1em;
}
.reviewable-histories {
margin-top: 1em;
}
2019-04-10 13:22:28 -04:00
.reviewable-scores {
min-width: 50%;
2019-04-10 13:22:28 -04:00
color: $primary-high;
2019-04-09 16:43:08 -04:00
.reviewed-by {
.date {
margin-left: 0.5em;
}
}
.user {
display: flex;
align-items: center;
2019-04-02 13:50:47 -04:00
white-space: nowrap;
.user-flag-percentage {
margin-left: 0.5em;
}
}
2019-04-02 13:50:47 -04:00
.d-icon {
font-size: $font-down-1;
2019-04-10 13:22:28 -04:00
color: $primary-medium;
}
2019-04-02 13:50:47 -04:00
.badge-notification {
line-height: $line-height-medium;
2019-04-10 13:22:28 -04:00
vertical-align: text-top;
2019-04-02 13:50:47 -04:00
}
tbody {
border-width: 1px;
td {
white-space: nowrap;
2019-04-10 13:22:28 -04:00
vertical-align: baseline;
&.user a,
&.reviewed-by a {
max-width: 150px;
overflow: hidden;
text-overflow: ellipsis;
}
}
2019-04-10 13:22:28 -04:00
td:last-of-type {
width: 100%;
white-space: normal;
}
2019-04-02 13:50:47 -04:00
> tr > th {
text-align: left;
}
> tr > th,
> tr > td {
2019-04-10 13:22:28 -04:00
padding: 0.5em 1em 0.5em 0;
}
.reviewable-score-spacer {
padding-left: 0.5em;
padding-right: 1.5em;
2019-04-02 13:50:47 -04:00
}
}
}
.reviewable-score-reason {
margin: 0.5em 0;
max-width: $topic-body-width;
margin-bottom: 0.5em;
}
.reviewable-conversation {
margin: 0.5em 0;
.reviewable-conversation-post {
max-width: $topic-body-width;
margin-bottom: 0.5em;
.username {
font-weight: bold;
margin-right: 0.25em;
}
}
.controls {
margin-top: 0.25em;
}
}
.reviewable-item {
.post-title {
background-color: yellow;
}
.created-by {
margin-right: 1em;
2019-04-02 13:50:47 -04:00
padding-top: 0.35em;
}
.names {
font-weight: bold;
}
.post-contents-wrapper {
display: flex;
width: 100%;
margin-top: 1em;
min-width: 275px;
}
.post-contents {
width: 100%;
}
.post-body {
max-width: $topic-body-width;
max-height: 300px;
margin-top: 0.5em;
overflow-y: auto;
p,
aside {
margin: 0 0 1em 0;
}
pre,
code {
word-break: break-all;
}
}
.post-topic {
2019-04-02 13:50:47 -04:00
width: 100%;
color: $primary-medium;
2019-04-02 13:50:47 -04:00
margin-bottom: 0.75em;
.title-text {
2019-04-02 17:22:22 -04:00
font-weight: bold;
color: $primary;
2019-04-02 13:50:47 -04:00
display: block;
font-size: $font-up-2;
margin-right: 0.75em;
}
.topic-statuses {
&:empty {
display: none;
}
}
}
}
.editable-fields {
width: 100%;
.editable-field {
.mini-tag-chooser {
margin: 0;
}
.reviewable-input-text {
width: 100%;
margin-bottom: 0;
}
.reviewable-input-textarea {
width: 100%;
height: 10em;
}
margin-bottom: 0.5em;
}
}