MediaWiki:Vector.less: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1:
@import '../../variables.less';
// Tab Separators
@import 'mediawiki.mixins.less';
// `.vectorTabs`: Outer start border (left in LTR) of tab row.
 
// `.vectorTabs a`: Border between tabs and outer end (right in LTR) border.
/**
// `#mw-head .vector-menu-dropdown h3`: // Outer end (right in LTR) border of "Actions" menu.
* Styling for namespace tabs (page, discussion) and views (read, edit, view history, watch and other actions)
.vector-menu-tabs,
*/
.vector-menu-tabs a,
 
#mw-head .vector-menu-dropdown h3 {
/* Namespaces and Views */
background-image: url( images/tab-separator.png );
.vector-menu-tabs, {
background: #000;
// `.vectorTabs`Tab separator: Outer start border (left in LTR) of tab row.
background-repeat: no-repeat;
background-position: left bottom;
// Contain gradient to 1px × 100% size and draw from top to bottom-left or -right corner.
float: left;
background-size: @border-width-base 100%;
height: 2.5em;
backgroundpadding-sizeleft: @border-width-base 100%;
 
/* Navigation Labels */
h3 {
display: none;
}
 
ul {
float: right;
height: 400%;
list-style: none none;
margin: 0;
padding: 0;
}
 
li {
// Tab fade background: Fade inside from light grey to white.
background-image: url( images/tab-normal-fade.png ); // Support: IE 8 & 9, Fx 3.6-15, Safari 5.1-6, Chrome 10-25
background-image: linear-gradient( to top, @border-color-content--tabs-inactive 0, #e8f2f8 1px, #fff 100% ); // Support: Standard (Firefox 16+, IE 10+, Safari 6.1+, Chrome 26+)
background-position: left bottom;
background-repeat: #000repeat-x;
float: left;
display: block;
height: 100%;
margin: 0;
padding: 0;
line-height: @line-height-nav;
white-space: nowrap;
 
a {
// `.vectorTabsTab a`separator: Border between tabs and outer end (right in LTR) border.
background-position: right bottom;
color: @color-link;
.box-sizing( border-box );
display: block;
float: left;
height: unit( 40 / @font-size-tabs / @font-size-browser, em );
position: relative;
padding-top: 1.25em;
padding-left: 8px;
padding-right: 8px;
font-size: @font-size-tabs;
cursor: pointer;
}
}
 
.new {
a,
a:visited {
color: @color-link-new;
}
}
 
.selected {
// Replace tab fade with flat color (matching top of would-be fade).
background-image: url( images/tab-separatorcurrent-fade.png );
// Overwrite above in browsers that support `rgba()`.
background: rgba( 255, 255, 255, 1 ); // stylelint-disable-line declaration-block-no-shorthand-property-overrides
 
a,
a:visited {
color: @color-link-selected;
text-decoration: none;
}
}
 
.icon {
a {
background-position: right bottom;
background-repeat: no-repeat;
}
}
}