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.

panel.less 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import "var";
  2. .panel {
  3. border: 1px solid@panelBorderColor;
  4. .panel-header {
  5. font-size: 16px;
  6. padding: .6em 1.2em;
  7. background-color: @panelHeaderBgColor;
  8. border-bottom: 1px solid@panelBorderColor;
  9. }
  10. .panel-body {
  11. background-color: white;
  12. .panel-desc {
  13. padding: 0 40px;
  14. margin-bottom: 20px;
  15. }
  16. }
  17. .panel-content {
  18. padding: 1em 1.2em;
  19. }
  20. .panel-footer {
  21. padding: .6em 1.2em;
  22. background-color: @panelFooterBgColor;
  23. border-top: 1px solid@panelBorderColor;
  24. }
  25. &.panel-radius {
  26. border-radius: .3em;
  27. .panel-header {
  28. border-top-left-radius: .3em;
  29. border-top-right-radius: .3em;
  30. }
  31. .panel-footer {
  32. border-bottom-left-radius: .3em;
  33. border-bottom-right-radius: .3em;
  34. }
  35. .panel-content{
  36. border-bottom-left-radius: .3em;
  37. border-bottom-right-radius: .3em;
  38. }
  39. }
  40. &.panel-warning {
  41. border-color: #F0C36D;
  42. > .panel-header {
  43. background-color: #F9EDBE;
  44. border-color: #F0C36D;
  45. }
  46. }
  47. }