emojipicker.css 660 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright 2007 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: dalewis@google.com (Darren Lewis) */
  8. /* Styles used in the emojipicker demo */
  9. .goog-ui-popupemojipicker {
  10. position: absolute;
  11. -moz-outline: 0;
  12. outline: 0;
  13. visibility: hidden;
  14. }
  15. .goog-palette-cell {
  16. padding: 2px;
  17. background: white;
  18. }
  19. .goog-palette-cell div {
  20. vertical-align: middle;
  21. text-align: center;
  22. margin: auto;
  23. }
  24. .goog-palette-cell-wrapper {
  25. width: 25px;
  26. height: 25px;
  27. }
  28. .goog-palette-cell-hover {
  29. background: lightblue;
  30. }