Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }