diff --git a/public/css/admin_new.css b/public/css/admin_new.css index d22198b6c..f56f32ab2 100644 --- a/public/css/admin_new.css +++ b/public/css/admin_new.css @@ -6754,6 +6754,12 @@ a.help { .qtip .qtip-wrapper .qtip-contentWrapper .qtip-content p:last-of-type { margin-bottom: 0; } +.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ul { + margin-bottom: 8px; +} +.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content ul li { + margin-bottom: 4px; +} .qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-more { display: block; margin-top: 16px; diff --git a/resources/sass/admin_new/components/hover/qtip.scss b/resources/sass/admin_new/components/hover/qtip.scss index 257046da9..df790aa4f 100644 --- a/resources/sass/admin_new/components/hover/qtip.scss +++ b/resources/sass/admin_new/components/hover/qtip.scss @@ -93,8 +93,10 @@ } ul{ + margin-bottom: 8px; + li{ - + margin-bottom: 4px; } }