oscarviedma

Estilos CSS para la personalización del menu dropdown woo

Feb 25th, 2021 (edited)
785
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.91 KB | None | 0 0
  1. /** Menu usuario dinamico **/
  2. .logged-in .ocultar-menu-login {
  3.     display: none !important;
  4. }
  5.  
  6. body:not(.logged-in) .ocultar-menu,
  7. body:not(.logged-in) .ov-menu-usuario {
  8.     display: none !important;
  9. }
  10.  
  11. .ov-menu-usuario .avatar {
  12.     border-radius: 100px;
  13. }
  14. @media screen and (min-width: 981px) {
  15.     .ov-menu-usuario {
  16.         margin-left: 40px !important;
  17.     }
  18.     .ov-menu-usuario .avatar {
  19.         position: absolute;
  20.         border-radius: 100px;
  21.         top: -8px;
  22.         left: -38px;
  23.     }
  24. }
  25.  
  26. @media screen and (max-width: 980px) {
  27.     .ov-menu-usuario a {
  28.         display: flex !important;
  29.         align-items: center;
  30.     }
  31.     .ov-menu-usuario .avatar {
  32.         margin-right: 10px;
  33.     }
  34. }
  35.  
  36. /* Estilos sub menu usuario dinamico */
  37. @media screen and (min-width: 981px) {
  38.     .ov-menu-usuario > .sub-menu {
  39.         margin-top: -6px;
  40.         border-radius: 6px;
  41.         border-top: none;
  42.         box-shadow: 0px 2px 16px rgb(0 0 0 / 20%);
  43.         padding: 12px 0 !important;
  44.         left: -40px !important;
  45.     }
  46.  
  47.     .ov-menu-usuario > .sub-menu:after {
  48.         position: absolute;
  49.         content:'';
  50.         left: 45px;
  51.         top: -26px;
  52.         border-style: solid;
  53.         border-width: 14px;
  54.         border-color: transparent transparent #ffffff;
  55.     }
  56. }
  57.  
  58. /* Iconos sub menu usuario dinamico */
  59. .ov-menu-usuario > .sub-menu a {
  60.     font-size: 15px !important;
  61. }
  62. .ov-menu-usuario > .sub-menu a:before {
  63.     font-family: 'ETMODULES';
  64.     text-align: center;
  65.     margin-right: 16px;
  66.     margin-left: -10px;
  67.     color: #4d2def;
  68.     font-size: 1em;
  69.     transition: all .3s ease;
  70. }
  71.  
  72. .ov-menu-usuario .escritorio > a:before {
  73.     content: '\e009';
  74. }
  75.  
  76. .ov-menu-usuario .pedidos > a:before {
  77.     content: '\e015';
  78. }
  79.  
  80. .ov-menu-usuario .descargas > a:before {
  81.     content: '\e004';
  82. }
  83.  
  84. .ov-menu-usuario .direcciones > a:before {
  85.     content: '\e01d';
  86. }
  87.  
  88. .ov-menu-usuario .editar-cuenta > a:before {
  89.     content: '\e101';
  90. }
  91.  
  92. .ov-menu-usuario .soporte-premium > a:before {
  93.     content: '\74';
  94. }
  95.  
  96. .ov-menu-usuario .cerrar-sesion > a:before {
  97.     content: '\7e';
  98. }
Add Comment
Please, Sign In to add comment