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.

styles.css 785B

1234567891011121314151617181920212223242526
  1. /* Set style for the color picker table.
  2. This assumes that the Grid layout is rendered as a HTML <table>.*/
  3. table.example-colorpicker {
  4. border-collapse: collapse;
  5. border: 0px;
  6. }
  7. /* Set color picker button style.
  8. This does not make assumptions about the HTML element tree as it only uses
  9. the logical class names.*/
  10. .example-colorpicker .gwt-Button {
  11. height: 60px;
  12. width: 60px;
  13. border: none;
  14. padding: 0px;
  15. }
  16. /* Set style for the right-hand box that shows the currently selected color.
  17. While this may work for other implementations of the HorizontalPanel as well,
  18. it somewhat assumes that the layout is rendered as a table where cells
  19. are <td> elements. */
  20. .colorpicker-currentcolorbox {
  21. width: 240px;
  22. text-align: center;
  23. vertical-align: middle !important;
  24. }