panels.less 774 B

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