Skip to content

Commit

Permalink
Remove old admin colors.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimisgold committed Sep 3, 2021
1 parent 5bb1428 commit 5214467
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
22 changes: 8 additions & 14 deletions views/admin/css/editorial.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.editorial.block-text .mce-tinymce {
margin-top: 10px;
}

.editorial-block-response-container {
clear: both;
Expand All @@ -15,12 +18,6 @@
float: right;
}

.original-label,
.original .edit-response,
.original .cancel-response-edit {
color: #d7daa0;
}

.original-label:before {
content: "| ";
}
Expand All @@ -41,14 +38,13 @@
}

.editorial-block-response-info {
background-color: #D6D5C2;
padding: 5px;
line-height: 30px;
display: flex;
align-items: center;
flex-wrap: wrap;
}

.original .editorial-block-response-info {
background-color: #7C7E5D;
color: #fff;
.editorial-block-response-info .timestamp {
margin: 0 auto 0 1rem;
}

.editorial-block-response-info img {
Expand Down Expand Up @@ -118,7 +114,6 @@ a.expand-response:visited {
.preview .response-text:after {
content: "";
height: 3em;
background-image: linear-gradient(rgba(0,0,0,0), #fbfbf9 100%);
position: absolute;
left: 0;
right: 0;
Expand All @@ -134,7 +129,6 @@ a.expand-response:visited {
top: 13.5em;
left: 0;
right: 0;
background-color: #fbfbf9;
line-height: 1.5em;
height: 1.5em;
padding-top: .25em;
Expand Down
2 changes: 1 addition & 1 deletion views/shared/single-response.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img class='gravatar' src='<?php echo $url; ?>' />
<span class="username"><?php echo $owner->username; ?></span>
<?php if (isset($infoRecord)): ?>
<span><?php echo metadata($infoRecord, 'added'); ?></span>
<span class="timestamp"><?php echo metadata($infoRecord, 'added'); ?></span>
<?php endif; ?>
<?php if (isset($response)): ?>
<span><?php echo metadata($response, 'added'); ?></span>
Expand Down

0 comments on commit 5214467

Please sign in to comment.