Michael Davis | 971cfba | 2017-03-27 13:14:02 -0500 | [diff] [blame] | 1 | // Event Log SCSS |
| 2 | |
| 3 | #event-log { |
| 4 | |
| 5 | #event-filter { |
| 6 | button { |
| 7 | margin: 3px -3px; |
| 8 | padding: .5em 2em; |
| 9 | min-height: 2em; |
| 10 | font-size: .9em; |
| 11 | border-radius: 0; |
| 12 | &.first, |
| 13 | &.last { |
| 14 | border-radius: 3px; |
| 15 | |
| 16 | } |
| 17 | } |
| 18 | .btn-primary { |
| 19 | border: 2px solid $primebtn__bg; |
| 20 | } |
| 21 | .filter-label { |
| 22 | color: darken($lightgrey, 10%); |
| 23 | text-transform: uppercase; |
| 24 | font-weight: 700; |
| 25 | font-size: .75em; |
| 26 | margin-bottom: 3px; |
| 27 | |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | //Timezone select |
| 32 | .event-log__timezone { |
| 33 | text-transform: uppercase; |
| 34 | color: $lightbg__primary; |
| 35 | font-size: .8em; |
| 36 | font-weight: 700; |
| 37 | margin-top: -1em; |
| 38 | .event-log__tz-list { |
| 39 | display: inline-block; |
| 40 | padding-left: .5em; |
| 41 | margin-top: -3px; |
| 42 | li {list-style-type: none;} |
| 43 | } |
| 44 | &:after { |
| 45 | content: '\25bC'; |
| 46 | font-size: .8em; |
| 47 | display: inline-block; |
| 48 | margin-left: 5px; |
| 49 | } |
| 50 | } |
| 51 | } //end #event-log |