1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-07-07 03:31:57 +00:00

fix tooltip arrow not being aligned in contacts dropdown

This commit is contained in:
Magnus Walbeck 2018-02-19 22:52:05 +08:00
parent c1a3a348e9
commit b32ff80c29
2 changed files with 12 additions and 2 deletions

View file

@ -818,7 +818,8 @@ ul.multiselectoptions {
background-color: $background-normal;
color: $foreground-normal;
box-shadow: none;
border: 1px solid $decoration-normal;
border: 1px solid $decoration-normal !important;
padding: 10px;
}
#adminaccount .tooltip-inner {
@ -826,6 +827,11 @@ ul.multiselectoptions {
border: none;
}
// Fix for tooltip arrow not being aligned in contacts dropdown
.contact .tooltip .tooltip-arrow {
right: -4px;
}
/* Public view for file sharing --------------------------------------------- */
#body-public {

View file

@ -1231,12 +1231,16 @@ ul.multiselectoptions {
background-color: #31363b;
color: #eff0f1;
box-shadow: none;
border: 1px solid #706f6e; }
border: 1px solid #706f6e !important;
padding: 10px; }
#adminaccount .tooltip-inner {
background-color: transparent;
border: none; }
.contact .tooltip .tooltip-arrow {
right: -4px; }
/* Public view for file sharing --------------------------------------------- */
#body-public #content-wrapper #content #preview {
background: inherit; }