Commit cfc165f0bbf9096da88f838f0f4917d78dcfbbad
1 parent
52f6711c
123
Showing
1 changed file
with
11 additions
and
7 deletions
Show diff stats
frontend/web/css/style.css
| ... | ... | @@ -98,15 +98,18 @@ header a.main:hover{ |
| 98 | 98 | text-align: center; |
| 99 | 99 | width: 14%; |
| 100 | 100 | min-width: 130px; |
| 101 | - position: relative; | |
| 102 | 101 | } |
| 103 | -.menu li:after{ | |
| 102 | +.menu li a:after { | |
| 104 | 103 | content: ''; |
| 105 | - top:0px; | |
| 106 | - right:0px; | |
| 107 | - width:1px; | |
| 108 | - height:10px; | |
| 109 | - background: grey; | |
| 104 | + top: calc(50% - 13px); | |
| 105 | + right: 0px; | |
| 106 | + width: 1px; | |
| 107 | + height: 25px; | |
| 108 | + background: #bbbbbb; | |
| 109 | + position: absolute; | |
| 110 | +} | |
| 111 | +.menu .dropd_menu li a:after{ | |
| 112 | + display: none; | |
| 110 | 113 | } |
| 111 | 114 | .menu li a{ |
| 112 | 115 | text-align: center; |
| ... | ... | @@ -119,6 +122,7 @@ header a.main:hover{ |
| 119 | 122 | background-image: url('../images/line2.png'); |
| 120 | 123 | background-position: center 55px; |
| 121 | 124 | background-repeat: no-repeat; |
| 125 | + position: relative; | |
| 122 | 126 | } |
| 123 | 127 | .menu li a:hover, .menu li a.active{ |
| 124 | 128 | background-position: center 22.5px; | ... | ... |