panels.less 750 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // Panels Flavor
  3. // --------------------------------------------------
  4. .panel {
  5. border: none;
  6. border-radius: @border-radius-base;
  7. .panel-heading, .panel-footer {
  8. background: @panel-bg;
  9. }
  10. .panel-title {
  11. color: @panel-title-color;
  12. }
  13. .form-group+.form-group {
  14. margin-top: @line-height-computed;
  15. }
  16. .panel-body>.form-group:first-child {
  17. margin-top: @line-height-computed / 2;
  18. }
  19. fieldset {
  20. margin-top: @line-height-computed;
  21. &:first-child {
  22. margin-top: 0px;
  23. }
  24. legend {
  25. border: none;
  26. color: @panel-fieldset-color;
  27. font-weight: 300;
  28. }
  29. }
  30. }
  31. // use default message icon color for panel messages
  32. .panel-message-body .message-icon {
  33. color: @message-icon-color;
  34. }