mediawiki-extensions-Echo/modules/styles/mw.echo.ui.PageNotificationsOptionWidget.less
Moriel Schottlender df4aa8ea0b Truncate page name in the sidebar and organize into table view
Organize into table view for consistency and truncate the title.

Bug: T184143
Change-Id: I0ae3105ea60dcc2ae6c0f7f2545368a5f86cb2c4
2018-01-16 12:09:01 -08:00

86 lines
1.5 KiB
Plaintext

@import 'mediawiki.mixins';
@import '../echo.variables';
.mw-echo-ui-pageNotificationsOptionWidget {
clear: both;
width: 100%;
.box-sizing( border-box );
&.oo-ui-optionWidget {
.transition( ~'background-color 100ms, color 100ms' );
&-highlighted {
background-color: #eaecf0;
color: @color-base-active;
}
&-selected {
background-color: @background-color-primary;
color: @color-primary;
}
&-selected&-highlighted,
&-pressed&-highlighted {
background-color: rgba( 41, 98, 204, 0.1 );
color: @color-primary;
}
}
&-table {
display: table;
width: 100%;
}
&-row {
display: table-row;
}
&-cell {
display: table-cell;
vertical-align: middle;
}
&.oo-ui-iconElement &-icon {
width: 1em;
.oo-ui-iconElement-icon {
display: inline-block;
position: relative;
margin-top: 0.1em;
}
}
&-title {
padding: 0;
width: 100%;
line-height: 1em;
&-label {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
// Sidebar width - icon width - twice padding - counter average width
max-width: calc( @specialpage-sidebar-width - 1.865em - 2 * @specialpage-separation-unit - 2em );
}
}
&-count {
width: 1em;
}
&-label-count {
background-color: #eaecf0;
color: @grey-medium;
padding: 0.2em 0.5em;
margin-left: 0.5em;
border-radius: 2px;
white-space: nowrap;
.oo-ui-optionWidget-selected & {
background: none; // `background-color: transparent` would be the goto value, but IE 8-9 introduces a bug
color: @color-primary;
}
}
}