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.
 
 
 
 
 

49 lines
1.4 KiB

  1. /**
  2. * This file provides styles for "data plugin"
  3. * after importing struct data this can be deleted
  4. */
  5. /* + + + + + global + + + + + */
  6. #dokuwiki__content {
  7. .dataplugin_entry {
  8. dl {
  9. margin-left: 0;
  10. margin-right: 0;
  11. }
  12. }
  13. .editbutton_plugin_data {
  14. position: relative;
  15. top: -1em; // as margin after DL
  16. float: left;
  17. font-size: @font-size-small; // for right position
  18. margin-top: 0;
  19. form {
  20. button {
  21. min-height: 1rem;
  22. height: 1.8em;
  23. background-color: @ini_background;
  24. border-top: solid 1px @ini_button_background;
  25. border-color: @ini_border;
  26. border-radius: 0 0 @fix_border-radius @fix_border-radius;
  27. color: @ini_existing;
  28. font-size: @font-size-small;
  29. line-height: 1.8em;
  30. margin-top: -1px; // for right position
  31. margin-left: .6em;
  32. padding: 0 .3em;
  33. transition: @transition background-color, @transition border-color, @transition color;
  34. &:hover,
  35. &:focus,
  36. &:active {
  37. background-color: @ini_existing;
  38. border-color: @ini_existing;
  39. color: @ini_background;
  40. }
  41. }
  42. }
  43. }
  44. }