You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_login_menu.scss 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*Initialize*/
  2. ul.loginmenu {
  3. font-family: $baseFontFamily;
  4. line-height: normal;
  5. display:none;
  6. position: absolute;
  7. margin: 0;
  8. padding: 5px;
  9. padding-bottom: 7px;
  10. top: 45px;
  11. left: -5px;
  12. background-color: rgba(0,0,0,0.9);
  13. border: 1px solid rgba(256, 256, 256, 0.2);
  14. border-radius:8px;
  15. }
  16. ul.loginmenu li {
  17. list-style-type: none;
  18. padding: 7px;
  19. color: #fff;
  20. font-size: 11pt;
  21. cursor: default;
  22. white-space: pre;
  23. }
  24. ul.loginmenu:after {
  25. content: url('../images/dropdownPointer.png');
  26. display: block;
  27. position: absolute;
  28. top: -7px;
  29. left: 18px;
  30. }
  31. a.disabled {
  32. color: gray !important;
  33. pointer-events: none;
  34. }
  35. .loginmenuPadding {
  36. width: 50px;
  37. height: 30px;
  38. position: absolute;
  39. top: -30px;
  40. left: 0px;
  41. }
  42. .loginmenu.extendedToolbarPopup {
  43. left: 55px;
  44. top: 0px;
  45. }
  46. ul.loginmenu.extendedToolbarPopup:after {
  47. content: url('../images/leftDropdownPointer.png');
  48. display: block;
  49. position: absolute;
  50. top: 18px;
  51. left: -7px;
  52. }