app.plugin.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*Charts*/
  2. .jqstooltip{
  3. background-color: rgba(0,0,0,0.8) !important;
  4. border: solid 1px #000 !important;
  5. -webkit-border-radius: 3px;
  6. -moz-border-radius: 3px;
  7. border-radius: 3px;
  8. padding: 5px 10px !important;
  9. .box-sizing(content-box);
  10. }
  11. // easypie
  12. .easyPieChart {
  13. position: relative;text-align: center;
  14. > div{
  15. position: relative;
  16. z-index: 1;
  17. .text{
  18. position: absolute;
  19. width: 100%;
  20. top: 60%;
  21. line-height: 1;
  22. }
  23. img{
  24. margin-top: -4px;
  25. }
  26. }
  27. canvas {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. z-index: 0
  32. }
  33. }
  34. // flot tip
  35. #flotTip {
  36. padding: 4px 10px;
  37. background-color: rgba(0,0,0,0.8);
  38. border: solid 1px #000 !important;
  39. z-index: 100;
  40. font-size: 12px;
  41. color: #fff;
  42. -webkit-border-radius: 3px;
  43. -moz-border-radius: 3px;
  44. border-radius: 3px;
  45. }
  46. // flot lengend
  47. .legendColorBox{
  48. > div{
  49. border: none !important;
  50. margin: 5px;
  51. > div{
  52. border-radius: 10px;
  53. }
  54. }
  55. }
  56. // sortable
  57. .sortable-placeholder{list-style: none;border: 1px dashed #CCC;min-height: 50px;margin-bottom: 5px}