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.

contextmenu.scss 875B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @mixin liferay-contextmenu {
  2. .v-contextmenu {
  3. background: #ccc9c9 url(/html/themes/classic/images/application/menu_bg.png) repeat-x 0 0;
  4. border: 1px solid;
  5. border-color: #aeafb1 #777879 #777879 #aeafb1;
  6. -webkit-border-radius: 4px;
  7. -moz-border-radius: 4px;
  8. border-radius: 4px;
  9. }
  10. .v-contextmenu table {
  11. border-collapse: separate;
  12. }
  13. .v-contextmenu .gwt-MenuItem {
  14. padding: 3px 8px 2px 8px;
  15. height: 16px;
  16. color: #2c2f34;
  17. text-shadow: -1px -1px #fff;
  18. font-weight: bold;
  19. border-bottom: 1px solid #bcbbbb;
  20. border-top: 1px solid #eee;
  21. }
  22. .v-contextmenu tr:last-child .gwt-MenuItem {
  23. border-bottom-width: 0;
  24. }
  25. .v-contextmenu .gwt-MenuItem img {
  26. margin-right: 4px;
  27. }
  28. .v-contextmenu .gwt-MenuItem-selected {
  29. background-color: #5b677d;
  30. color: #FFF;
  31. text-shadow: -1px -1px #2c2f34;
  32. }
  33. .v-contextmenu .gwt-MenuItem-selected div {
  34. background: transparent;
  35. }
  36. }