|
| 1 | +.btn-group { |
| 2 | + position: relative; |
| 3 | + display: -ms-inline-flexbox; |
| 4 | + display: inline-flex; |
| 5 | +} |
| 6 | + |
| 7 | +.btn-group.card { |
| 8 | + margin: 0; |
| 9 | +} |
| 10 | + |
| 11 | +.btn-group>.btn:first-child:not(:last-child) { |
| 12 | + border-top-right-radius: 0; |
| 13 | + border-bottom-right-radius: 0; |
| 14 | +} |
| 15 | + |
| 16 | +.btn-group>.btn:not(:first-child):not(:last-child) { |
| 17 | + border-radius: 0; |
| 18 | + border-left: 1px solid lightgrey; |
| 19 | +} |
| 20 | + |
| 21 | +.btn-group>.btn:last-child:not(:first-child), |
| 22 | +.btn-group>.dropdown-toggle:not(:first-child) { |
| 23 | + border-top-left-radius: 0; |
| 24 | + border-bottom-left-radius: 0; |
| 25 | + border-left: 1px solid lightgrey; |
| 26 | +} |
| 27 | + |
| 28 | +.btn-group>.btn-inactive { |
| 29 | + background-color: #607d8b; |
| 30 | +} |
| 31 | + |
| 32 | +.btn-group>.btn { |
| 33 | + -webkit-box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0px rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0); |
| 34 | + box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0px rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0); |
| 35 | +} |
| 36 | + |
| 37 | +.btn-group>.btn-inactive:hover { |
| 38 | + background-color: #728F9D; |
| 39 | +} |
| 40 | + |
| 41 | +.btn-group>.btn:hover { |
| 42 | + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); |
| 43 | + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); |
| 44 | +} |
0 commit comments