feat(SW-184): added menu buttons and my pages menu
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
.myPagesMenu {
|
||||
position: absolute;
|
||||
top: 46px;
|
||||
right: 0;
|
||||
background-color: #fff;
|
||||
border-top: 1px solid #e3e0db;
|
||||
display: none;
|
||||
list-style: none;
|
||||
overflow-y: visible;
|
||||
margin: 0;
|
||||
padding: var(--Spacing-x2) var(--Spacing-x4);
|
||||
border-radius: var(--Corner-radius-Large);
|
||||
box-shadow: 0px 0px 14px 6px #0000001a;
|
||||
}
|
||||
|
||||
.myPagesMenu.isExpanded {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.friendTypeWrapper {
|
||||
padding: 0 var(--Spacing-x1) var(--Spacing-x2);
|
||||
font-weight: 400;
|
||||
color: var(--UI-Text-Medium-contrast);
|
||||
}
|
||||
.friendType {
|
||||
font-family: var(--typography-Title-5-fontFamily);
|
||||
letter-spacing: var(--typography-Title-5-letterSpacing);
|
||||
font-size: var(--typography-Caption-Bold-fontSize);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.friendType::after {
|
||||
content: " · ";
|
||||
display: inline;
|
||||
padding: 0 var(--Spacing-x-half);
|
||||
}
|
||||
|
||||
.groups,
|
||||
.menuItems {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.group {
|
||||
padding: var(--Spacing-x2) 0;
|
||||
border-top: 1px solid var(--Base-Border-Subtle);
|
||||
}
|
||||
|
||||
.group:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.arrow {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.link:hover .arrow {
|
||||
opacity: 1;
|
||||
}
|
||||
Reference in New Issue
Block a user