Opened 8 years ago
Closed 8 years ago
#3083 closed defect (bug) (fixed)
wordpress.tv subscribe Sign me up button text color not readable .
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Component: | WordPress.tv | Keywords: | has-patch |
| Cc: |
Description
Now button text color black so not readable it should be white so button looks like good.
Attachments (3)
Change History (11)
#1
@
8 years ago
div#actionbar .actnbr-notice form button {
background: #00aadc;
border-color: #008ab3;
color: white !important;
border-style: solid;
border-width: 1px 1px 2px;
cursor: pointer;
display: inline-block;
margin: 0;
outline: 0;
overflow: hidden;
font-weight: 500;
text-overflow: ellipsis;
text-decoration: none;
vertical-align: top;
box-sizing: border-box;
font-size: 14px;
line-height: 21px;
border-radius: 4px;
padding: 7px 14px 9px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-family: inherit;
text-transform: none;
-webkit-font-smoothing: auto;
height: auto;
line-height: 1;
}
#3
@
8 years ago
If anyone else is having a trouble finding this form on WordPress.tv (took me a few minutes), it's at the bottom right of the page when you're logged out.
Caused by color: #555 !important (and color: #000 !important for :hover) in wptv2/style.css:
input[type=submit], button, .button {
...
color: #555 !important;
...
}
input[type=submit]:hover, button:hover, .button:hover, input[type=submit]:focus, button:focus, .button:focus {
...
color: #000 !important;
...
}
#4
@
8 years ago
- Keywords needs-patch added
Removing the !important fixes the issue, but it's not quite clear why it was added in the first place. In [1024] it was already there.
If anyone wants to take a stab at the patch, the theme is here: sites/trunk/wordpress.tv/public_html/wp-content/themes/wptv2/.
#5
@
8 years ago
- Keywords has-patch added; needs-patch removed
Yes @SergeyBiryukov if remove !important than issue fix. In this patch #3083 i have removed because it not needed to add !important.
before