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.
 
 
 
 
 

45 lines
1.3 KiB

  1. /**
  2. * This file provides styles for "edittable plugin"
  3. */
  4. /* + + + + + global + + + + + */
  5. #dokuwiki__content.main-content {
  6. div.editbutton_table {
  7. position: relative; // for IE
  8. float: left;
  9. margin-top: -1.4em !important; // overwrite inline styles
  10. form div.no {
  11. button,
  12. input.button {
  13. min-height: 1rem;
  14. background-color: @ini_background;
  15. border-top: solid 1px @ini_button_background;
  16. border-color: @ini_border;
  17. border-radius: 0 0 @fix_border-radius @fix_border-radius;
  18. color: @ini_existing;
  19. font-size: @font-size-small;
  20. margin-top: -1px; // for best position of edit-tab beneath table
  21. padding-right: .3em;
  22. transition: @transition background-color, @transition border-color, @transition color;
  23. &:hover,
  24. &:focus,
  25. &:active {
  26. background-color: @ini_existing;
  27. border-color: @ini_existing;
  28. color: @ini_background;
  29. }
  30. }
  31. }
  32. + * {
  33. clear: left;
  34. }
  35. + div.editbutton_table {
  36. clear: none;
  37. }
  38. }
  39. }