Advertisement
Hauber

Checkvist selection background color

Mar 5th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. /* Selection background color */
  2. // selector copied from checkvist
  3. div.coreDiv.selectedTask,
  4. ul.comments li.comment.selectedTask div.coreNote,
  5. .scal .dayselected, .scal .calcontrol:hover, /* selection in due calendar */
  6. .scal .daybox:hover /* hover date in calendar */
  7. {
  8.   background-color: lighten($selection-background-color, 10);
  9. }
  10.  
  11. // selector copied from checkvist
  12. .selectedTask_focus > div.coreDiv,
  13. li.comment.selectedTask_focus div.coreNote,
  14. li.upload.selectedTask_focus /* attachment selection */
  15. {
  16.   background-color: $selection-background-color;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement