Advertisement
Guest User

LastPass menu and button style

a guest
Jul 21st, 2014
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.65 KB | None | 0 0
  1. /* Make LastPass menu use default system style */
  2. #lpt_lastpass-compact-btn menupopup {
  3.     -moz-appearance: menupopup !important;
  4. }
  5.  
  6. #lpt_lastpass-compact-menu menu,
  7. #lpt_lastpass-compact-menu menu:hover,
  8. #lpt_lastpass-compact-menu menu:active,
  9. #lpt_lastpass-compact-menu menuitem,
  10. #lpt_lastpass-compact-menu menuitem:hover,
  11. #lpt_lastpass-compact-menu menuitem:active,
  12. #lpt_lastpass-compact-menu .groupmenu,
  13. #lpt_lastpass-compact-menu .groupmenu:hover,
  14. #lpt_lastpass-compact-menu .groupmenu:active {
  15.     -moz-appearance: menuitem !important;
  16.     color: inherit !important;
  17.     padding: inherit !important;
  18.     border: inherit !important;
  19. }
  20.  
  21. /* Show the drop-down arrow on buttom */
  22. #lpt_lastpass-compact-btn dropmarker {
  23.     /* TODO: Show it to the right of image */
  24.     display: -moz-box !important;
  25. }
  26.  
  27. /* Make so-called "compact" menu actually compact */
  28. #lpt_lastpass-compact-menu {
  29.     width: auto !important;
  30. }
  31.  
  32. /* Adjust padding around search box a bit */
  33. #lpt_menu_search_box {
  34.     margin: 5px !important;
  35.     padding: 5px 28px 5px 5px !important;
  36.     background-position: right 3px center !important;
  37. }
  38.  
  39. /* Less padding/margin around matching sites icon */
  40. #lpt_comp-bar-showmatchingsites > .menu-accel-container > .menu-iconic-accel {
  41.     margin-left: 0px !important;
  42.     margin-right: 0px !important;
  43.     padding-top: 1px !important;
  44. }
  45.  
  46. /* Hide field popup, since it doesn't work */
  47. #lpformframe__lpform_id_nickname,
  48. #lpformframe__lpform_id_password,
  49. #lpformframe__lpform_username,
  50. #lpformframe__lpform_password,
  51. #lpformframe__lpform_current_password,
  52. #lpformframe__lpform_txtMyPassword_field {
  53.     display: none !important;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement