|
1 | 1 | .publish-version-bullet--button { |
2 | | - margin-right: 40px; |
| 2 | + margin-right: 30px; |
| 3 | + |
| 4 | + @media screen and (max-width: $cf-grid--breakpoint-md) { |
| 5 | + margin-right: 23px; |
| 6 | + } |
3 | 7 |
|
4 | 8 | &:hover { |
5 | 9 | cursor: pointer; |
|
10 | 14 | content: ''; |
11 | 15 | height: 25px; |
12 | 16 | width: 4px; |
13 | | - transform: translate(-480%, 0%) rotate(-90deg); |
| 17 | + transform: translate(-380%, 0%) rotate(-90deg); |
14 | 18 |
|
15 | 19 | @media screen and (max-width: $cf-grid--breakpoint-md) { |
16 | | - transform: translate(-380%, 0%) rotate(-90deg); |
| 20 | + height: 18px; |
| 21 | + transform: translate(-280%, 0%) rotate(-90deg); |
17 | 22 | } |
18 | 23 | background: #333346; |
19 | 24 | background: -moz-linear-gradient(top, #333346 0%, #8e1fc3 100%); |
|
29 | 34 | content: ''; |
30 | 35 | height: 25px; |
31 | 36 | width: 4px; |
32 | | - transform: translate(480%, 0) rotate(90deg); |
| 37 | + transform: translate(380%, 0) rotate(90deg); |
33 | 38 |
|
34 | 39 | @media screen and (max-width: $cf-grid--breakpoint-md) { |
35 | | - transform: translate(380%, 0%) rotate(90deg); |
| 40 | + height: 18px; |
| 41 | + transform: translate(280%, 0%) rotate(90deg); |
36 | 42 | } |
37 | 43 | background: #333346; |
38 | 44 | background: -moz-linear-gradient(top, #333346 0%, #8e1fc3 100%); |
39 | 45 | background: -webkit-linear-gradient(top, #333346 0%, #8e1fc3 100%); |
40 | 46 | background: linear-gradient(to bottom, #333346 0%, #8e1fc3 100%); |
41 | 47 | } |
| 48 | + |
| 49 | +.publish-version--bullet:last-of-type { |
| 50 | + .publish-version-bullet--button::after { |
| 51 | + display: none; |
| 52 | + } |
| 53 | +} |
| 54 | + |
| 55 | +.active-version--button { |
| 56 | + box-shadow: 0 0 25px $cf-white; |
| 57 | +} |
| 58 | + |
| 59 | +.publish-version-draft { |
| 60 | + background: $cf-grey-45; |
| 61 | + margin-right: 30px; |
| 62 | + |
| 63 | + @media screen and (max-width: $cf-grid--breakpoint-md) { |
| 64 | + margin-right: 23px; |
| 65 | + margin-bottom: 1px; |
| 66 | + } |
| 67 | + |
| 68 | + &:hover { |
| 69 | + cursor: pointer; |
| 70 | + } |
| 71 | +} |
| 72 | + |
| 73 | +.publish-version-draft::after { |
| 74 | + content: ''; |
| 75 | + height: 25px; |
| 76 | + width: 4px; |
| 77 | + transform: translate(380%, 0) rotate(90deg); |
| 78 | + |
| 79 | + @media screen and (max-width: $cf-grid--breakpoint-md) { |
| 80 | + height: 18px; |
| 81 | + transform: translate(280%, 0%) rotate(90deg); |
| 82 | + } |
| 83 | + background: #333346; |
| 84 | + background: -moz-linear-gradient(top, #333346 0%, #78727a 100%); |
| 85 | + background: -webkit-linear-gradient(top, #333346 0%, #78727a 100%); |
| 86 | + background: linear-gradient(to bottom, #333346 0%, #78727a 100%); |
| 87 | +} |
0 commit comments