_list-view.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. border-left-color: $main-first;
  14. background: $grey-lighter;
  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. font-size: 0.85rem;
  58. color: $main-font-color;
  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. }