2019-08-15 17:40:13 +00:00
|
|
|
//
|
|
|
|
// Citizen - Page Tools Styles
|
|
|
|
// https://starcitizen.tools
|
|
|
|
// TODO: RTL styles and more flexible
|
|
|
|
//
|
|
|
|
|
|
|
|
// Hide selected item
|
|
|
|
.mw-portlet li.selected {
|
2019-12-26 10:21:50 +00:00
|
|
|
.mixin-screen-reader-text;
|
2019-08-15 17:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#page-tools {
|
2020-03-20 04:06:01 +00:00
|
|
|
z-index: 5;
|
2019-12-26 10:21:50 +00:00
|
|
|
position: absolute;
|
|
|
|
margin-top: 1.3rem;
|
|
|
|
display: flex;
|
|
|
|
transform: translateX( ~'calc( (100vw - @{page-width}) / 2 - @{margin-side} * 2 - 100%)' ); // magic
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
.mixin-screen-reader-text;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#p-views {
|
|
|
|
li > a {
|
|
|
|
.resource-loader-icon-link;
|
|
|
|
padding: 5px;
|
|
|
|
opacity: @opacity-icon;
|
|
|
|
transition: @transition-opacity;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: @opacity-icon-active;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
.resource-loader-icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
.mixin-screen-reader-text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#p-actions {
|
|
|
|
> nav {
|
|
|
|
.resource-loader-icon-link;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
// transition: @transition-opacity-quick; - Hidden behind the menu anyways
|
|
|
|
|
|
|
|
// TODO: Need to make value more flexible
|
|
|
|
ul {
|
|
|
|
z-index: -1;
|
|
|
|
pointer-events: none;
|
|
|
|
.menu-container;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
.boxshadow(4);
|
|
|
|
transition: @transition-opacity-quick, @transition-box-shadow-quick;
|
|
|
|
|
|
|
|
a {
|
|
|
|
.menu-item-link;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: @ui-menu-text;
|
|
|
|
padding: @padding-menu-item;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
.resource-loader-list-icon;
|
|
|
|
margin-left: @icon-padding;
|
|
|
|
opacity: @opacity-icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
&:after {
|
|
|
|
opacity: @opacity-icon-active;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.menu-item-link-hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
.menu-item-link-active;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.menu-item-link-focus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
.resource-loader-menu-icon;
|
|
|
|
opacity: @opacity-icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2019-08-15 17:40:13 +00:00
|
|
|
* Hidden behind the menu anyways
|
|
|
|
* &:hover:after {
|
|
|
|
* opacity: @opacity-icon-active;
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
|
2019-12-26 10:21:50 +00:00
|
|
|
&:hover ul {
|
|
|
|
z-index: 5;
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-15 17:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Flexible value
|
2019-12-26 10:21:50 +00:00
|
|
|
@media only screen and ( max-width: @screen2 ) {
|
|
|
|
#page-tools {
|
2020-03-20 04:06:01 +00:00
|
|
|
z-index: unset;
|
2019-12-26 10:21:50 +00:00
|
|
|
position: relative;
|
|
|
|
margin-left: @margin-side / 2;
|
|
|
|
float: right;
|
|
|
|
transform: none;
|
|
|
|
|
|
|
|
#p-actions > nav ul {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-15 17:40:13 +00:00
|
|
|
}
|
|
|
|
|
2019-12-26 10:21:50 +00:00
|
|
|
@media only screen and ( max-width: 500px ) {
|
|
|
|
#page-tools {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 0;
|
|
|
|
transform: none;
|
|
|
|
float: none;
|
|
|
|
|
|
|
|
#p-actions > nav ul {
|
|
|
|
right: unset;
|
|
|
|
}
|
|
|
|
}
|
2019-08-15 17:40:13 +00:00
|
|
|
}
|