Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A fix In Message And Reminder Center Button #1614

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions interface/themes/style_purple.css
Original file line number Diff line number Diff line change
Expand Up @@ -617,9 +617,10 @@ font-weight: bold;
* CSS BUTTONS
*/
.css_button_small {
background: transparent url( 'theme_assets/bg_button_a_small.gif' ) no-repeat scroll top right;
/* background: transparent url( 'theme_assets/bg_button_a_small.gif' ) no-repeat scroll top right; */
color: #444;
display: block;
color: white;
float: left;
font: bold 9px arial, sans-serif;
height: 19px;
Expand All @@ -629,31 +630,38 @@ font-weight: bold;
}

.css_button_small span {
background: transparent url( 'theme_assets/bg_button_span_small.gif' ) no-repeat;
/* background: transparent url( 'theme_assets/bg_button_span_small.gif' ) no-repeat; */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason why you didn't just remove this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No reason. OK I will remove it now

display: block;
line-height: 20px;
padding: 0px 0px 0px 10px;
color: white;
}

.css_button, a[role="button"] {
background: transparent url( 'theme_assets/bg_button_a.gif' ) no-repeat scroll top right;
/* background: transparent url( 'theme_assets/bg_button_a.gif' ) no-repeat scroll top right; */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same question as above?

color: #444;
display: block;
color: white;
display: flex;
align-items: center;
border-radius:7px;
padding-left: 5px;
float: left;
font: bold 10px arial, sans-serif;
font: bold 12px arial, sans-serif;
height: 24px;
margin-right: 3px;
padding-right: 10px; /* sliding doors padding */
text-decoration: none;
text
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this incomplete or supposed to be deleted?

}
.css_button[href*="deleter"], input[type="button"][href*="deleter"], button[href*="deleter"], input[type="button"][class="deleter"], button[href*="deleter"], a[class="deleter"] {
background: red !important;
}
.css_button span {
background: transparent url( 'theme_assets/bg_button_span.gif' ) no-repeat;
/* background: transparent url( 'theme_assets/bg_button_span.gif' ) no-repeat; */
muarachmann marked this conversation as resolved.
Show resolved Hide resolved
display: block;
line-height: 14px;
padding: 5px 0 5px 10px;
color: white;
}
.sellistclass {
float:left;
Expand Down