Index: trunk/phase3/skins/Vector.php |
— | — | @@ -556,7 +556,7 @@ |
557 | 557 | <h5><?php $this->msg('namespaces') ?></h5> |
558 | 558 | <ul <?php $this->html('userlangattributes') ?>> |
559 | 559 | <?php foreach ($this->data['namespace_urls'] as $key => $link ): ?> |
560 | | - <li <?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li> |
| 560 | + <li <?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><span><?php echo htmlspecialchars( $link['text'] ) ?></span></a></li> |
561 | 561 | <?php endforeach; ?> |
562 | 562 | </ul> |
563 | 563 | </div> |
— | — | @@ -583,7 +583,7 @@ |
584 | 584 | <h5><?php $this->msg('views') ?></h5> |
585 | 585 | <ul <?php $this->html('userlangattributes') ?>> |
586 | 586 | <?php foreach ($this->data['view_urls'] as $key => $link ): ?> |
587 | | - <li<?php echo $link['attributes'] ?><?php if(!empty($link['class'])): ?> class="<?php echo htmlspecialchars($link['class']) ?>"<?php endif; ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li> |
| 587 | + <li<?php echo $link['attributes'] ?><?php if(!empty($link['class'])): ?> class="<?php echo htmlspecialchars($link['class']) ?>"<?php endif; ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><span><?php echo htmlspecialchars( $link['text'] ) ?></span></a></li> |
588 | 588 | <?php endforeach; ?> |
589 | 589 | </ul> |
590 | 590 | </div> |
Index: trunk/phase3/skins/vector/main.css |
— | — | @@ -149,7 +149,7 @@ |
150 | 150 | div#namespaces li, |
151 | 151 | div#views li { |
152 | 152 | float: left; |
153 | | - line-height: 3em; |
| 153 | + height: 3em; |
154 | 154 | background-image: url(images/tab-normal-fade.png); |
155 | 155 | background-position: bottom left; |
156 | 156 | background-repeat: repeat-x; |
— | — | @@ -172,20 +172,26 @@ |
173 | 173 | background-image: url(images/tab-break.png); |
174 | 174 | background-position: bottom right; |
175 | 175 | background-repeat: no-repeat; |
176 | | - color: #0645ad; |
177 | 176 | } |
178 | 177 | body.rtl div#namespaces a, |
179 | 178 | body.rtl div#views a { |
180 | 179 | background-position: bottom left; |
181 | 180 | } |
182 | | - div#namespaces li.selected a, |
183 | | - div#views li.selected a:visited { |
| 181 | + div#namespaces a span, |
| 182 | + div#views a span { |
| 183 | + color: #0645ad; |
| 184 | + display: inline-block; |
| 185 | + padding-top: 1.25em; |
| 186 | + cursor: pointer; |
| 187 | + } |
| 188 | + div#namespaces li.selected a span, |
| 189 | + div#views li.selected a:visited span { |
184 | 190 | color: #333333; |
185 | 191 | cursor: default; |
186 | 192 | text-decoration: none; |
187 | 193 | } |
188 | | - div#namespaces li.new a, |
189 | | - div#namespaces li.new a:visited{ |
| 194 | + div#namespaces li.new a span, |
| 195 | + div#namespaces li.new a:visited span{ |
190 | 196 | color: #a55858; |
191 | 197 | } |
192 | 198 | /* Variants and Actions */ |