Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /*** |
| 2 | Customized Bootstrap Panels |
||
| 3 | ***/ |
||
| 4 | |||
| 5 | .panel { |
||
| 6 | |||
| 7 | @if $theme-type == "default" { |
||
| 8 | -webkit-box-shadow: none !important; |
||
| 9 | -moz-box-shadow: none !important; |
||
| 10 | box-shadow: none !important; |
||
| 11 | } |
||
| 12 | |||
| 13 | .panel-group & { |
||
| 14 | overflow: visible; |
||
| 15 | } |
||
| 16 | |||
| 17 | .panel-body { |
||
| 18 | font-size: 13px; |
||
| 19 | } |
||
| 20 | |||
| 21 | .panel-title > a:hover { |
||
| 22 | text-decoration: none; |
||
| 23 | } |
||
| 24 | |||
| 25 | .accordion & .panel-heading { |
||
| 26 | padding: 0; |
||
| 27 | } |
||
| 28 | |||
| 29 | .accordion & .panel-title { |
||
| 30 | padding: 0; |
||
| 31 | |||
| 32 | .accordion-toggle { |
||
| 33 | display: block; |
||
| 34 | padding: 10px 15px; |
||
| 35 | } |
||
| 36 | |||
| 37 | .accordion-toggle.accordion-toggle-styled { |
||
| 38 | background: url("../img/accordion-plusminus.png") no-repeat; |
||
| 39 | background-position: right -19px; |
||
| 40 | margin-right: 15px; |
||
| 41 | } |
||
| 42 | |||
| 43 | .accordion-toggle.accordion-toggle-styled.collapsed { |
||
| 44 | background-position: right 12px; |
||
| 45 | } |
||
| 46 | } |
||
| 47 | } |
||
| 48 | |||
| 49 | /*** |
||
| 50 | Accordions |
||
| 51 | ***/ |
||
| 52 | |||
| 53 | .panel-heading { |
||
| 54 | background:#eee; |
||
| 55 | |||
| 56 | a { |
||
| 57 | text-decoration:none; |
||
| 58 | } |
||
| 59 | |||
| 60 | a:active, |
||
| 61 | a:focus, |
||
| 62 | a:hover { |
||
| 63 | text-decoration:none; |
||
| 64 | } |
||
| 65 | } |
||
| 66 | |||
| 67 | @if $theme-type == "material-design" { |
||
| 68 | .panel { |
||
| 69 | @extend .md-shadow-z-1; |
||
| 70 | border: 0; |
||
| 71 | } |
||
| 72 | } |