Commit 5ef3dd5bb63b99dedb83b84a097e0770ad06a20c
1 parent
95b14509
----
Showing
2 changed files
with
16 additions
and
8 deletions
Show diff stats
frontend/web/css/style.css
| ... | ... | @@ -1591,7 +1591,8 @@ ul.breadcrumb li a { |
| 1591 | 1591 | } |
| 1592 | 1592 | .link-cat:before { |
| 1593 | 1593 | height: 75px; |
| 1594 | - background: url("../images/shadow-cat.png") repeat-x; | |
| 1594 | + background: #000; | |
| 1595 | + opacity: 0.5; | |
| 1595 | 1596 | position: absolute; |
| 1596 | 1597 | bottom: 0; |
| 1597 | 1598 | left: 0; |
| ... | ... | @@ -2609,7 +2610,6 @@ y-axis |
| 2609 | 2610 | |
| 2610 | 2611 | |
| 2611 | 2612 | @media (max-width: 1200px) { |
| 2612 | - .link-cat {height: 116px;} | |
| 2613 | 2613 | /*[class*="moz-"] {*/ |
| 2614 | 2614 | /*height: 62px;*/ |
| 2615 | 2615 | /*}*/ |
| ... | ... | @@ -2722,6 +2722,12 @@ y-axis |
| 2722 | 2722 | @media (max-width: 896px) { |
| 2723 | 2723 | |
| 2724 | 2724 | } |
| 2725 | + | |
| 2726 | +@media (max-width: 880px) { | |
| 2727 | + .link-cat:before { | |
| 2728 | + height: 100%; | |
| 2729 | + } | |
| 2730 | +} | |
| 2725 | 2731 | @media (max-width: 850px) { |
| 2726 | 2732 | .link-cat { |
| 2727 | 2733 | height: 136px; | ... | ... |
frontend/web/css/style.min.css
| ... | ... | @@ -1837,8 +1837,9 @@ ul.breadcrumb li a { |
| 1837 | 1837 | } |
| 1838 | 1838 | |
| 1839 | 1839 | .link-cat:before { |
| 1840 | - height: 75px; | |
| 1841 | - background: url(../images/shadow-cat.png) repeat-x | |
| 1840 | + height:75px; | |
| 1841 | + background: #000; | |
| 1842 | + opacity: 0.5; | |
| 1842 | 1843 | } |
| 1843 | 1844 | |
| 1844 | 1845 | .link-cat p { |
| ... | ... | @@ -2940,10 +2941,6 @@ ul.breadcrumb li a { |
| 2940 | 2941 | } |
| 2941 | 2942 | |
| 2942 | 2943 | @media (max-width: 1200px) { |
| 2943 | - .link-cat { | |
| 2944 | - height: 116px | |
| 2945 | - } | |
| 2946 | - | |
| 2947 | 2944 | ul.main-menu li a { |
| 2948 | 2945 | padding: 0 11px 0 12px |
| 2949 | 2946 | } |
| ... | ... | @@ -3079,6 +3076,11 @@ ul.breadcrumb li a { |
| 3079 | 3076 | } |
| 3080 | 3077 | } |
| 3081 | 3078 | |
| 3079 | +@media (max-width: 880px) { | |
| 3080 | + .link-cat:before { | |
| 3081 | + height: 100%; | |
| 3082 | + } | |
| 3083 | +} | |
| 3082 | 3084 | @media (max-width: 850px) { |
| 3083 | 3085 | .link-cat { |
| 3084 | 3086 | height: 136px | ... | ... |