2018-05-19 18:17:31 +00:00
|
|
|
@import '../../minerva.less/minerva.variables';
|
|
|
|
@import '../../minerva.less/minerva.mixins';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
.heading-holder {
|
|
|
|
@pageActionsHeight: @pageActionFontSize + (2 * @iconGutterWidth);
|
|
|
|
padding: @titleSectionSpacingTop 0 (@pageActionsHeight + 0.5em);
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.tagline {
|
|
|
|
color: @colorGray5;
|
|
|
|
font-size: 0.85em;
|
2017-11-28 21:55:58 +00:00
|
|
|
margin: 2px 0 0;
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
&:first-letter {
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#section_0 {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page-actions {
|
|
|
|
font-size: @pageActionFontSize;
|
|
|
|
float: none;
|
|
|
|
border: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
border-top: 1px solid @colorGray14;
|
|
|
|
border-bottom: 1px solid @colorGray12;
|
|
|
|
padding: 0.5em 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
// Needed for non-JavaScript users
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
// Override .hlist rule.
|
|
|
|
margin-right: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
float: right;
|
|
|
|
|
2018-10-10 21:29:05 +00:00
|
|
|
// edit, language and watchstar
|
|
|
|
a {
|
2017-07-12 15:12:40 +00:00
|
|
|
// Needed for non-JavaScript users
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
// needed for ContentOverlay pointer arrow
|
|
|
|
margin: 0 0 8px;
|
2017-08-10 13:31:01 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.language-selector {
|
|
|
|
float: left;
|
|
|
|
margin-left: -@iconGutterWidth;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.25;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ca-edit {
|
|
|
|
margin-right: -@iconGutterWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 21:19:55 +00:00
|
|
|
// Watchstar is hidden for anonymous no-js users
|
|
|
|
// While we could link the icon to the login/signup form, this is not
|
|
|
|
// a perfect experience and could be confusing.
|
|
|
|
// In JavaScript this icon will be converted to a watch icon and will point
|
|
|
|
// to a Call to action to sign up/login and explain why that's a good idea.
|
|
|
|
// Thus, anonymous users without JS will never see this icon.
|
|
|
|
// This is a small % of our users, so deemed okay.
|
|
|
|
.client-nojs {
|
|
|
|
.watch-this-article {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2018-12-12 23:20:10 +00:00
|
|
|
|
2018-10-10 21:19:55 +00:00
|
|
|
.is-authenticated {
|
|
|
|
.watch-this-article {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
// On small devices that don't support Javascript, hide the page actions bar
|
2017-09-28 14:23:45 +00:00
|
|
|
@media all and ( max-width: @width-breakpoint-mobile - 1 ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
.client-nojs {
|
|
|
|
#page-actions {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#section_0 {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|