_list-view.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*=== Feed articles */
  2. .flux {
  3. // border-left: 2px solid #ecf0f1;
  4. background: $white;
  5. @include transition(all, 0.15s, ease-in-out);
  6. &:hover {
  7. background: $grey-lighter;
  8. &:not(.current):hover .item.title {
  9. background: $grey-lighter;
  10. }
  11. }
  12. &.current {
  13. background: $grey-lighter;
  14. border-left-color: $main-first;
  15. }
  16. &.not_read:not(.current) {
  17. background: $unread-bg; //--------------------
  18. &:hover .item.title {
  19. background: $unread-bg;
  20. }
  21. }
  22. &.not_read {
  23. .item.title {
  24. a {
  25. color: $unread-font-color; //--------------------
  26. }
  27. }
  28. .item.website {
  29. a {
  30. color: $unread-font-color; //--------------------
  31. }
  32. }
  33. .item.date {
  34. color: unquote($unread-font-color+"99"); //--------------------
  35. }
  36. }
  37. &.favorite {
  38. border-left-color: $fav-bg;
  39. @include transition(all, 0.15s, ease-in-out);
  40. }
  41. &.favorite:not(.current) {
  42. background: $fav-light;
  43. &:hover .item.title {
  44. background: $fav-light;
  45. }
  46. }
  47. .website {
  48. a {
  49. color: $main-font-color;
  50. opacity: 0.75;
  51. }
  52. .favicon {
  53. padding: 5px;
  54. }
  55. }
  56. .date {
  57. color: $main-font-color;
  58. font-size: 0.85rem;
  59. opacity: 0.75;
  60. }
  61. .bottom {
  62. font-size: 1rem;
  63. text-align: center;
  64. }
  65. }
  66. .flux_header {
  67. font-size: 1rem;
  68. cursor: pointer;
  69. border-top: 1px solid $grey-light;
  70. .title {
  71. font-size: 1rem;
  72. }
  73. }