-
Notifications
You must be signed in to change notification settings - Fork 0
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
General Style/Layout enhancements #103
base: main
Are you sure you want to change the base?
Changes from all commits
4bfa529
46a51db
da0cbf5
f2fc031
c02bed6
040fd79
e9ea20a
c8d21b5
308fda7
b96e2bc
eb65ebd
2852a4d
e45eb70
4b33a04
d06d36c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,7 +118,7 @@ public function assemble() | |
new Link( | ||
[ | ||
new Icon('plus'), | ||
t('Add new entry') | ||
t('Add Entry') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You've standardized it everywhere else to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So the idea behind this is:
This helps
I decided against additionally highlighting the “add entry” button as a primary button, because it’s not that important in that view and would distract from the actual content which is the schedule itself. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, okay, but I also add a new rule to the list of already existing event rules. I also add a new contact to the list of available contacts. In both cases, the relation is the list on the left. And to a list you add new items. The perfect label would be Add New Contact, but that's a bit redundant IMHO. So if you think There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, don't you see the difference? contact (list): new contact Not sure, how to make it clearer. It also helps clarify the difference when there's that many different buttons of the same style, as shown on the screenshot. I agree on the redundancy, especially as it doesn't add any value and distracts from the actual important term "Contact". I don't want to discuss this to death. If you insist or it doesn't make sense to you, we can label it "+ New Entry". |
||
], | ||
Url::fromPath('notifications/schedule/add-entry', ['schedule' => $this->schedule->id]), | ||
['class' => 'button-link'] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,4 +61,8 @@ | |
line-height: 1.5*.857em; | ||
} | ||
} | ||
|
||
.meta { | ||
white-space: nowrap; | ||
} | ||
} |
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.
Please also remove the class then
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.
✅