_list-view.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 {
  17. background: $unread-bg; //--------------------
  18. // border-left-color: #FF5300;
  19. &:hover {
  20. background: $unread-bg-light; //--------------------
  21. }
  22. &:not(.current):hover .item.title {
  23. background: $unread-bg-light;
  24. }
  25. .item.title {
  26. a {
  27. color: $unread-font-color; //--------------------
  28. }
  29. }
  30. .item.website {
  31. a {
  32. color: $unread-font-color; //--------------------
  33. }
  34. }
  35. .item.date {
  36. color: unquote($unread-font-color+"99"); //--------------------
  37. }
  38. }
  39. &.favorite {
  40. background: $fav-light;
  41. border-left-color: $fav-bg;
  42. @include transition(all, 0.15s, ease-in-out);
  43. &:not(.current):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. }