Commit 6a4ae93f57d891bca6ce6645a178495880e485ef

Authored by Nick Kugaevsky
1 parent 81a89f6a

CSS fix: main menu buttons dividers

Showing 1 changed file with 7 additions and 0 deletions   Show diff stats
app/assets/stylesheets/common.scss
... ... @@ -195,6 +195,7 @@ nav.main_menu {
195 195 -moz-border-radius-bottomleft: 4px;
196 196 border-top-left-radius: 4px;
197 197 border-bottom-left-radius: 4px;
  198 + border-left: 0;
198 199 }
199 200 padding: 10px 25px;
200 201 display: inline-block;
... ... @@ -203,6 +204,9 @@ nav.main_menu {
203 204 margin: 0;
204 205 float:left;
205 206 text-shadow:0 1px 1px white;
  207 + border-right: 1px solid #DDD;
  208 + border-left: 1px solid #EEE;
  209 +
206 210 &.home {
207 211 background: url(home_icon.PNG) no-repeat center center;
208 212 text-indent:-9999px;
... ... @@ -215,6 +219,9 @@ nav.main_menu {
215 219 &.current {
216 220 background-color:#D5D5D5;
217 221 border-bottom: 2px solid #474D57;
  222 + border-right: 1px solid #BBB;
  223 + border-left: 1px solid #BBB;
  224 + border-radius: 0 0 1px 1px;
218 225 &:first-child{
219 226 border-bottom:none;
220 227 }
... ...