-
Notifications
You must be signed in to change notification settings - Fork 264
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
base: master
Are you sure you want to change the base?
A fix In Message And Reminder Center Button #1614
Conversation
Looks good so far! I just have a few small UI suggestions. The text within the buttons still seems off to me, like it's not fully centered. I would also change the text color to another color like white, so it's easier to see. |
Ok I will arange it now on same branch
…On Mon, 8 Jun 2020 at 19:45, Maggie Negm ***@***.***> wrote:
Looks good so far! I just have a few small UI suggestions. The text within
the buttons still seems off to me, like it's not fully centered. I would
also change the text color to another color like white, so it's easier to
see.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1614 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOQABPHMZWHR3PWTPMSQEULRVUWTRANCNFSM4NWF7WDA>
.
|
interface/themes/style_purple.css
Outdated
@@ -648,6 +651,7 @@ font-weight: bold; | |||
margin-right: 3px; | |||
padding-right: 10px; /* sliding doors padding */ | |||
text-decoration: none; | |||
text |
There was a problem hiding this comment.
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?
@Ngai-E @muarachmann @robbyoconnor can I get one of you to review this? :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not giving a yay or nay on this, but why didn't you remove the commented out CSS code?
interface/themes/style_purple.css
Outdated
@@ -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; */ |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
interface/themes/style_purple.css
Outdated
} | ||
|
||
.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; */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same question as above?
@ahanipeitra1994 , tried to test this but I still have the default stuffs, also tried switching themes to no avail... maybe a good description will do |
@@ -430,7 +430,7 @@ function load_location( location ) { | |||
$widgetTitle = xl('Prescription'); | |||
$widgetButtonLabel = xl("Edit"); | |||
$widgetButtonLink = $GLOBALS['webroot'] . "/interface/patient_file/summary/rx_frameset.php"; | |||
$widgetButtonClass = "iframe rx_modal"; | |||
$widgetButtonClass = " iframe rx_modal"; |
There was a problem hiding this comment.
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 added a space here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes this is because when this variable was used in a function it coincides with another causing the button to be white.
There was a problem hiding this comment.
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 added a space here?
OK testing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -760,7 +759,7 @@ div.notab-right { | |||
|
|||
#report_results table { | |||
border-top: 1px solid black; | |||
border-bottom: 1px solid black; | |||
border-bottom: 1px solid black |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a semi-colon
I fixed the message and reminder button and other buttons which has the same class.