2019-08-08 20:01:03 +00:00
|
|
|
@import '../../minerva.less/minerva.variables.less';
|
2019-08-01 20:35:10 +00:00
|
|
|
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-disable no-descending-specificity, selector-max-id
|
2019-08-01 20:35:10 +00:00
|
|
|
|
|
|
|
@menuLinkLineHeight: 24px;
|
|
|
|
|
|
|
|
// .menu
|
|
|
|
#mw-mf-page-left {
|
|
|
|
.secondary-action {
|
|
|
|
border: 0;
|
|
|
|
// T170362 - reset font size
|
|
|
|
font-size: 16px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-left: 1px solid @grayMediumLight;
|
2019-12-13 00:31:48 +00:00
|
|
|
color: transparent;
|
2019-08-01 20:35:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.primary-action {
|
|
|
|
// 1px for the logout icon border-left
|
|
|
|
margin-right: @iconSize + @iconGutterWidth * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
&:first-child {
|
|
|
|
li:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2020-06-12 04:23:50 +00:00
|
|
|
background-color: @background-color-base;
|
2019-08-01 20:35:10 +00:00
|
|
|
position: relative; // ensure the logout link in beta can be position absolute
|
|
|
|
border-top: 1px solid @colorGray14;
|
|
|
|
// offset the border for the icon by 1px
|
|
|
|
margin-top: -1px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: @colorGray5;
|
|
|
|
display: block;
|
2019-08-05 20:41:12 +00:00
|
|
|
max-width: 100%;
|
2019-08-30 17:23:55 +00:00
|
|
|
padding: @menuLinkLineHeight / 2 10px @menuLinkLineHeight / 2 15px;
|
2020-04-17 22:30:06 +00:00
|
|
|
// Overflow text is ellipsized in one line.
|
|
|
|
.text-overflow( @visible: false );
|
2019-08-01 20:35:10 +00:00
|
|
|
|
2019-09-24 20:38:13 +00:00
|
|
|
// T233166
|
|
|
|
&.secondary-action {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
2019-08-01 20:35:10 +00:00
|
|
|
&:hover {
|
|
|
|
box-shadow: inset 4px 0 0 0 @colorProgressive;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2019-08-30 17:23:55 +00:00
|
|
|
span {
|
|
|
|
font-size: @font-size-minerva-small;
|
2019-08-01 20:35:10 +00:00
|
|
|
font-weight: bold;
|
2019-09-13 18:34:59 +00:00
|
|
|
vertical-align: middle;
|
2019-08-01 20:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-enable no-descending-specificity, selector-max-id
|