mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Updated dropdown positions in layouts
This commit is contained in:
parent
78f459315a
commit
2aafe85987
3 changed files with 48 additions and 2 deletions
|
@ -87,6 +87,7 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
|
height: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Profile picture
|
// Profile picture
|
||||||
|
@ -132,6 +133,17 @@
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown {
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
right: 100%;
|
||||||
|
.dropdown-menu {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}//.user-menu
|
}//.user-menu
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -441,7 +441,7 @@ body.zen {
|
||||||
|
|
||||||
.post-settings-menu {
|
.post-settings-menu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 44px;
|
bottom: 41px;
|
||||||
right: -3px;
|
right: -3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -646,11 +646,23 @@ body.zen {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry-actions {
|
#entry-actions {
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
.dropdown {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 49px;
|
||||||
|
right: 0;
|
||||||
|
.dropdown-menu {
|
||||||
|
top: auto;
|
||||||
|
left: auto;
|
||||||
|
right: 100%;
|
||||||
|
bottom: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry-actions-menu {
|
#entry-actions-menu {
|
||||||
|
@ -679,6 +691,15 @@ body.zen {
|
||||||
} // .post-settings
|
} // .post-settings
|
||||||
|
|
||||||
.post-settings-menu {
|
.post-settings-menu {
|
||||||
|
|
||||||
|
.dropdown-menu {
|
||||||
|
top: auto;
|
||||||
|
bottom: 100%;
|
||||||
|
left: auto;
|
||||||
|
right: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
|
|
||||||
|
@ -802,6 +823,8 @@ body.zen {
|
||||||
}
|
}
|
||||||
} // .delete
|
} // .delete
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
} // .post-settings-menu
|
} // .post-settings-menu
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -182,6 +182,17 @@ a.object-list-item {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// User Actions
|
||||||
|
// --------------------------------------------------
|
||||||
|
|
||||||
|
.user-actions-menu {
|
||||||
|
left: auto;
|
||||||
|
right: 0;
|
||||||
|
top: calc(100% + 17px);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Invite User Modal
|
// Invite User Modal
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
Loading…
Add table
Reference in a new issue