1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .history {
- &-title {
- border-top: 1px solid mc('blue-grey', '900');
- padding: 8px;
- color: mc('blue-grey', '800');
- font-size: 13px;
- letter-spacing: 1px;
- text-transform: uppercase;
- background-color: mc('blue-grey', '100');
- text-align: center;
- box-shadow: 0 0 5px rgba(0,0,0,0.3);
- }
- &-info {
- background-color: mc('blue-grey', '50');
- padding: 5px 10px;
- &-meta {
- i {
- margin-right: 8px;
- }
- p {
- padding: 5px 0;
- font-size: 14px;
- color: mc('blue-grey', '800');
- display: flex;
- align-items: center;
- }
- }
- &-actions {
- display: flex;
- flex-basis: initial;
- flex-grow: initial;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .button-group {
- margin-bottom: 10px;
- }
- }
- }
- &-diff {
- position: relative;
- .d2h-wrapper {
- position: absolute;
- left: 0;
- right: 0;
- }
- }
- }
|