Skip to content

Commit

Permalink
Merge pull request #45 from bu-ist/hotfix/override-yoast-thickbox-styles
Browse files Browse the repository at this point in the history
Add styling to override Yoast SEO Thickbox styles.
  • Loading branch information
DannyCrews authored Jun 17, 2019
2 parents 2e2116b + 976fd5d commit b3be27b
Showing 1 changed file with 19 additions and 11 deletions.
30 changes: 19 additions & 11 deletions css/navigation-metabox.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
text-align: right;
}

#TB_window #TB_ajaxContent li::before {
content: none;
}

#TB_window #TB_ajaxContent li {
margin: 0;
}

#TB_window .post-placement-toolbar p.hint {
margin-left: 20px;
color: #777;
Expand All @@ -15,21 +23,21 @@
}

#TB_window .bu-edit-post .denied > a {
color: #AF5D5D;
color: #af5d5d;
}

#TB_window .bu-edit-post.current-post-status-auto-draft .denied > a,
#TB_window .bu-edit-post.current-post-status-draft .denied > a,
#TB_window .bu-edit-post.current-post-status-pending .denied > a,
#TB_window .bu-edit-post.current-post-status-private .denied > a {
color: black;
color: black;
background: #eee;
background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
background: -webkit-linear-gradient(top, #ffffff 0%,#eeeeee 100%);
background: -o-linear-gradient(top, #ffffff 0%,#eeeeee 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 100%);
background: linear-gradient(to bottom, #ffffff 0%,#eeeeee 100%);
background: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
background: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
background: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );
}

Expand All @@ -55,7 +63,7 @@
height: 16px;
}

#bunavattrsdiv input[type="text"] {
#bunavattrsdiv input[type='text'] {
width: 68%;
}

Expand All @@ -65,7 +73,7 @@
}

#bu-post-breadcrumbs ul {
margin-top: 6px;
margin-top: 6px;
}

#bu-post-breadcrumbs li {
Expand All @@ -89,6 +97,6 @@
vertical-align: middle;
margin-left: 2px;
padding: 3px;
background-color: #EEE;
border: 1px solid #CCC;
}
background-color: #eee;
border: 1px solid #ccc;
}

0 comments on commit b3be27b

Please sign in to comment.