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

Notifications #4

Open
flavour opened this issue Feb 21, 2017 · 1 comment
Open

Notifications #4

flavour opened this issue Feb 21, 2017 · 1 comment

Comments

@flavour
Copy link
Member

flavour commented Feb 21, 2017

Notifications of Status changes, etc should be visible in the Updates section for that resource.
They should be styled differently (with no Edit/Bookmarks/Tags), so need differentiating with a different 'type'
This can be called 'System' or 'Change Log'
This type should be removed from user-visible selection options

@dhornbein
Copy link

Assuming that these items are going to appear in data lists as list items you can use the .status-bar structure to build them:

<li class='dl-item change-log'>
  <ul class='status-bar-left'>
    <li class='item primary datetime'>Nov 26, 2016 @ 11:23</li>
    <li class='item'>Incident status changed from open to closed</li>
  </ul>
</li>

If it's challenging to add a special class to the li then change it to <div class='change-log'> and nest it within the li.

The use of .change-log class name is not required, if you have a better naming convention please use it.

For your information, we can achieve this by including the status-bar sass mixin to a declaration like so:

.change-log {
  @include status-bar;
}

I'll set up the sass once the feature is in place.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants