From c7617742ba6024456433178986a926e039d18f33 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Fri, 29 Apr 2022 00:00:06 +0200 Subject: [PATCH] fix(ESX Menus): Fixed font + darker color Fixed the font not working because of a mistype and darker color for the menu. --- [esx]/esx_menu_default/html/css/app.css | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/[esx]/esx_menu_default/html/css/app.css b/[esx]/esx_menu_default/html/css/app.css index 81ed0473..d7ed0110 100644 --- a/[esx]/esx_menu_default/html/css/app.css +++ b/[esx]/esx_menu_default/html/css/app.css @@ -5,7 +5,7 @@ } .menu { - font-family: 'Poppins' sans-serif; + font-family: 'Poppins', sans-serif; min-width: 350px; color: #fff; position: absolute; @@ -59,7 +59,7 @@ } .menu .menu-items .menu-item.selected { - background: rgba(72, 105, 255, 0.2); + background: rgba(21, 35, 99, 0.2); border: 1.4px solid rgba(243, 243, 243, 0.7); border-radius: 10px; color: rgba(243, 243, 243); @@ -70,7 +70,7 @@ .menu.align-left { left: 0; top: 50%; - border-right: 6px solid (rgba(72, 105, 255, 0.2)); + border-right: 6px solid (rgba(21, 35, 99, 0.2)); border-top-right-radius: 10px; border-bottom-left-radius: 10px; } @@ -78,7 +78,7 @@ .menu.align-top-left { left: 40; top: 0; - border-bottom: 6px solid rgba(72, 105, 255, 0.2); + border-bottom: 6px solid rgba(21, 35, 99, 0.2); border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; } @@ -86,7 +86,7 @@ .menu.align-top { left: 50%; top: 0; - border-bottom: 6px solid rgba(72, 105, 255, 0.2); + border-bottom: 6px solid rgba(21, 35, 99, 0.2); border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; } @@ -94,7 +94,7 @@ .menu.align-top-right { right: 10; top: 0; - border-bottom: 6px solid rgba(72, 105, 255, 0.2); + border-bottom: 6px solid rgba(21, 35, 99, 0.2); border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; } @@ -102,7 +102,7 @@ .menu.align-right { right: 0; top: 50%; - border-left: 6px solid rgba(72, 105, 255, 0.2); + border-left: 6px solid rgba(21, 35, 99, 0.2); border-top-left-radius: 10px; border-bottom-left-radius: 10px; transform: translate(0, -50%); @@ -111,7 +111,7 @@ .menu.align-bottom-right { right: 40; bottom: 0; - border-bottom: 6px solid rgba(72, 105, 255, 0.2); + border-bottom: 6px solid rgba(21, 35, 99, 0.2); border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; } @@ -119,7 +119,7 @@ .menu.align-bottom { left: 50%; bottom: 0; - border-left: 6px solid rgba(72, 105, 255, 0.2); + border-left: 6px solid rgba(21, 35, 99, 0.2); border-top-left-radius: 10px; border-bottom-left-radius: 10px; transform: translate(0, -50%); @@ -128,7 +128,7 @@ .menu.align-bottom-left { left: 40; bottom: 0; - border-left: 6px solid rgba(72, 105, 255, 0.2); + border-left: 6px solid rgba(21, 35, 99, 0.2); border-top-left-radius: 10px; border-bottom-left-radius: 10px; } @@ -137,6 +137,6 @@ left: 50%; top: 50%; transform: translate(0, -50%); - border-top: 6px solid rgba(72, 105, 255, 0.2); + border-top: 6px solid rgba(21, 35, 99, 0.2); border-radius: 10px; } \ No newline at end of file