/space-tree/src/main/resources/css/spacetree.css

https://bitbucket.org/vishwajeets/wiki-tree-plugin-for-confluence · CSS · 59 lines · 51 code · 7 blank · 1 comment · 0 complexity · bb4ab852b1410eb895c00604ef7c11f6 MD5 · raw file

  1. .jit-autoadjust-label {
  2. padding: 15px;
  3. }
  4. #update, #restore {
  5. text-align: center;
  6. width: 100px;
  7. margin:0px 35px 10px 35px;
  8. }
  9. .button {
  10. display: inline-block;
  11. outline: none;
  12. cursor: pointer;
  13. text-align: center;
  14. text-decoration: none;
  15. font: 14px / 100% Arial, Helvetica, sans-serif;
  16. padding: 0.5em 1em 0.55em;
  17. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
  18. -webkit-border-radius: 0.5em;
  19. -moz-border-radius: 0.5em;
  20. border-radius: 0.5em;
  21. -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  22. -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  23. box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  24. }
  25. .button:hover {
  26. text-decoration: none;
  27. }
  28. .button:active {
  29. position: relative;
  30. top: 1px;
  31. }
  32. /* white */
  33. .white {
  34. color: #606060;
  35. border: solid 1px #b7b7b7;
  36. background: #fff;
  37. background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  38. background: -moz-linear-gradient(top, #fff, #ededed);
  39. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
  40. }
  41. .white:hover {
  42. background: #ededed;
  43. background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  44. background: -moz-linear-gradient(top, #fff, #dcdcdc);
  45. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
  46. }
  47. .white:active {
  48. color: #999;
  49. background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
  50. background: -moz-linear-gradient(top, #ededed, #fff);
  51. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
  52. }