@rypen-dev/shared-components 5.0.0 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/scss/partials/_badges.scss +10 -0
- package/scss/partials/_buttons.scss +43 -3
- package/scss/partials/_flyovers.scss +0 -1
- package/scss/partials/_forms.scss +99 -21
- package/scss/partials/_layout.scss +48 -64
- package/scss/partials/_loader.scss +20 -0
- package/scss/partials/_modals.scss +14 -0
- package/scss/partials/_notifications.scss +33 -0
- package/scss/partials/_tooltips.scss +54 -54
- package/scss/partials/_typography.scss +45 -0
- package/src/components/LookupTextBox.vue +63 -14
- package/src/components/ProductImageSelector.vue +1 -4
- package/src/components/VariableLoader.vue +6 -1
package/package.json
CHANGED
|
@@ -43,6 +43,12 @@
|
|
|
43
43
|
border-color: $alert;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
&.text-gray {
|
|
47
|
+
background-color: $text-gray;
|
|
48
|
+
border-color: $text-gray;
|
|
49
|
+
color: $white;
|
|
50
|
+
}
|
|
51
|
+
|
|
46
52
|
&.secondary-purple,
|
|
47
53
|
&.secondary-alt {
|
|
48
54
|
background: $secondary-alt;
|
|
@@ -82,6 +88,10 @@
|
|
|
82
88
|
&.alert {
|
|
83
89
|
color: $alert;
|
|
84
90
|
}
|
|
91
|
+
|
|
92
|
+
&.text-gray {
|
|
93
|
+
color: $text-gray;
|
|
94
|
+
}
|
|
85
95
|
|
|
86
96
|
&.secondary-purple,
|
|
87
97
|
&.secondary-alt {
|
|
@@ -221,10 +221,24 @@ a.info {
|
|
|
221
221
|
width: 20px;
|
|
222
222
|
height: 20px;
|
|
223
223
|
line-height: 20px;
|
|
224
|
+
font-family: $body-font-family;
|
|
225
|
+
letter-spacing: 0;
|
|
226
|
+
text-transform: none;
|
|
224
227
|
text-align: center;
|
|
225
228
|
font-weight: 600;
|
|
226
229
|
}
|
|
227
230
|
|
|
231
|
+
&.small {
|
|
232
|
+
> span {
|
|
233
|
+
font-size: 0.75rem;
|
|
234
|
+
width: 20px;
|
|
235
|
+
height: 20px;
|
|
236
|
+
line-height: 20px;
|
|
237
|
+
position: relative;
|
|
238
|
+
top: -2px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
228
242
|
@media print, screen and (min-width: map-get($breakpoints, medium)) {
|
|
229
243
|
> span {
|
|
230
244
|
width: 24px;
|
|
@@ -246,6 +260,7 @@ a.info {
|
|
|
246
260
|
line-height: 0.75rem;
|
|
247
261
|
font-size: 0.875rem;
|
|
248
262
|
font-weight: $body-weight-normal;
|
|
263
|
+
white-space: nowrap;
|
|
249
264
|
transition: color 300ms;
|
|
250
265
|
|
|
251
266
|
&::before {
|
|
@@ -324,6 +339,24 @@ a.info {
|
|
|
324
339
|
}
|
|
325
340
|
}
|
|
326
341
|
|
|
342
|
+
&.secondary {
|
|
343
|
+
color: $secondary;
|
|
344
|
+
|
|
345
|
+
&::before,
|
|
346
|
+
&::after {
|
|
347
|
+
border-color: $secondary;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
&.success-alt {
|
|
352
|
+
color: $success-alt;
|
|
353
|
+
|
|
354
|
+
&::before,
|
|
355
|
+
&::after {
|
|
356
|
+
border-color: $success-alt;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
327
360
|
&.color-text-gray {
|
|
328
361
|
&::before {
|
|
329
362
|
border-bottom-color: $text-gray;
|
|
@@ -519,9 +552,6 @@ a.info {
|
|
|
519
552
|
display: none;
|
|
520
553
|
}
|
|
521
554
|
|
|
522
|
-
&::after {
|
|
523
|
-
}
|
|
524
|
-
|
|
525
555
|
&.reversed {
|
|
526
556
|
padding-right: 0;
|
|
527
557
|
padding-left: 20px;
|
|
@@ -837,6 +867,16 @@ button,
|
|
|
837
867
|
margin-right: 4px;
|
|
838
868
|
}
|
|
839
869
|
|
|
870
|
+
> svg {
|
|
871
|
+
width: 28px;
|
|
872
|
+
height: 28px;
|
|
873
|
+
vertical-align: middle;
|
|
874
|
+
position: relative;
|
|
875
|
+
top: -2px;
|
|
876
|
+
margin-left: 6px;
|
|
877
|
+
margin-right: -6px;
|
|
878
|
+
}
|
|
879
|
+
|
|
840
880
|
@media screen and (max-width: map-get($breakpoints, medium) - 1px) {
|
|
841
881
|
&.small-full {
|
|
842
882
|
width: 100% !important;
|
|
@@ -496,6 +496,13 @@ label {
|
|
|
496
496
|
> .input-group-field:last-child {
|
|
497
497
|
border-radius: 0 $input-radius $input-radius 0;
|
|
498
498
|
}
|
|
499
|
+
|
|
500
|
+
&.tiny {
|
|
501
|
+
.input-group-field {
|
|
502
|
+
height: 30px;
|
|
503
|
+
padding: 0 0.5rem;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
499
506
|
}
|
|
500
507
|
|
|
501
508
|
.input-container {
|
|
@@ -619,14 +626,6 @@ label {
|
|
|
619
626
|
top: 14px;
|
|
620
627
|
}
|
|
621
628
|
|
|
622
|
-
&.date {
|
|
623
|
-
&::after {
|
|
624
|
-
width: 18px;
|
|
625
|
-
height: 17px;
|
|
626
|
-
background-size: 14px 17px;
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
|
|
630
629
|
textarea {
|
|
631
630
|
padding: 8px;
|
|
632
631
|
font-size: 0.875rem;
|
|
@@ -760,6 +759,14 @@ label {
|
|
|
760
759
|
//color: rgba(0, 0, 0, 0);
|
|
761
760
|
opacity: 0;
|
|
762
761
|
}
|
|
762
|
+
|
|
763
|
+
&.small {
|
|
764
|
+
&::after {
|
|
765
|
+
width: 18px;
|
|
766
|
+
height: 17px;
|
|
767
|
+
background-size: 14px 17px;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
763
770
|
}
|
|
764
771
|
|
|
765
772
|
&.number.with-custom-steps {
|
|
@@ -844,6 +851,10 @@ label {
|
|
|
844
851
|
width: 24px;
|
|
845
852
|
height: 24px;
|
|
846
853
|
}
|
|
854
|
+
|
|
855
|
+
&.line input {
|
|
856
|
+
padding-bottom: 0;
|
|
857
|
+
}
|
|
847
858
|
}
|
|
848
859
|
|
|
849
860
|
&.credit-card {
|
|
@@ -999,6 +1010,32 @@ label {
|
|
|
999
1010
|
}
|
|
1000
1011
|
}
|
|
1001
1012
|
|
|
1013
|
+
&.busy {
|
|
1014
|
+
.mini-loader {
|
|
1015
|
+
position: absolute;
|
|
1016
|
+
left: 50%;
|
|
1017
|
+
top: 12px;
|
|
1018
|
+
transform: translateX(-50%);
|
|
1019
|
+
background-color: $input-background-color;
|
|
1020
|
+
|
|
1021
|
+
&.primary {
|
|
1022
|
+
border-color: $primary;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
&.secondary-alt {
|
|
1026
|
+
border-color: $secondary-alt;
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
&.right-loader {
|
|
1031
|
+
.mini-loader {
|
|
1032
|
+
left: auto;
|
|
1033
|
+
right: 12px;
|
|
1034
|
+
transform: none;
|
|
1035
|
+
}
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1002
1039
|
@media print, screen and (min-width: map-get($breakpoints, medium)) {
|
|
1003
1040
|
&.medium-no-margin {
|
|
1004
1041
|
margin-bottom: 0 !important;
|
|
@@ -1186,8 +1223,8 @@ select {
|
|
|
1186
1223
|
right: 12px;
|
|
1187
1224
|
border-radius: 50%;
|
|
1188
1225
|
background-color: fade-out($tertiary-alt, 0.4);
|
|
1189
|
-
font-size:
|
|
1190
|
-
line-height:
|
|
1226
|
+
font-size: 1.425rem;
|
|
1227
|
+
line-height: 1.425rem;
|
|
1191
1228
|
text-align: center;
|
|
1192
1229
|
padding: 8px;
|
|
1193
1230
|
z-index: 62;
|
|
@@ -1237,6 +1274,7 @@ select {
|
|
|
1237
1274
|
border-left: solid 2px fade-out($dark-gray, 0.5);
|
|
1238
1275
|
border-bottom: 0;
|
|
1239
1276
|
transform: rotate(-45deg);
|
|
1277
|
+
pointer-events: none;
|
|
1240
1278
|
}
|
|
1241
1279
|
|
|
1242
1280
|
.preview {
|
|
@@ -1436,7 +1474,7 @@ body.hover-capable {
|
|
|
1436
1474
|
|
|
1437
1475
|
input {
|
|
1438
1476
|
position: relative;
|
|
1439
|
-
padding:
|
|
1477
|
+
padding: 6px 0 4px;
|
|
1440
1478
|
border: 0;
|
|
1441
1479
|
border-bottom: solid 2px transparent;
|
|
1442
1480
|
background-color: transparent;
|
|
@@ -1451,37 +1489,70 @@ body.hover-capable {
|
|
|
1451
1489
|
|
|
1452
1490
|
.decoy {
|
|
1453
1491
|
font-size: 1.75rem;
|
|
1454
|
-
height: 2.5rem;
|
|
1455
|
-
padding:
|
|
1492
|
+
height: calc(2.5rem - 2px);
|
|
1493
|
+
padding: 0;
|
|
1456
1494
|
font-family: $headline-font-family;
|
|
1457
1495
|
font-weight: $headline-weight-normal;
|
|
1458
1496
|
position: absolute;
|
|
1459
1497
|
left: 0;
|
|
1460
|
-
bottom:
|
|
1498
|
+
bottom: -1px;
|
|
1461
1499
|
color: transparent;
|
|
1462
1500
|
border-bottom: solid 2px $medium-gray;
|
|
1463
1501
|
min-width: 30px;
|
|
1502
|
+
max-width: 100%;
|
|
1464
1503
|
}
|
|
1465
1504
|
|
|
1466
1505
|
a {
|
|
1467
1506
|
position: absolute;
|
|
1468
|
-
|
|
1469
|
-
|
|
1507
|
+
font-size: 16px;
|
|
1508
|
+
top: -2px;
|
|
1509
|
+
right: -20px;
|
|
1470
1510
|
z-index: 3;
|
|
1471
1511
|
|
|
1472
1512
|
.icon .color-target {
|
|
1473
1513
|
fill: $call-to-action-color;
|
|
1474
1514
|
}
|
|
1515
|
+
|
|
1516
|
+
&.larger {
|
|
1517
|
+
font-size: 18px;
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.actions {
|
|
1522
|
+
display: block;
|
|
1523
|
+
position: absolute;
|
|
1524
|
+
padding-left: 15px;
|
|
1525
|
+
left: 100%;
|
|
1526
|
+
top: 50%;
|
|
1527
|
+
transform: translateY(-50%);
|
|
1528
|
+
text-align: center;
|
|
1529
|
+
z-index: 3;
|
|
1530
|
+
|
|
1531
|
+
a {
|
|
1532
|
+
display: block;
|
|
1533
|
+
position: relative;
|
|
1534
|
+
top: auto;
|
|
1535
|
+
left: auto;
|
|
1536
|
+
right: auto;
|
|
1537
|
+
margin-bottom: 5px;
|
|
1538
|
+
|
|
1539
|
+
&:last-child {
|
|
1540
|
+
margin-bottom: 0;
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
&.no-margin {
|
|
1546
|
+
margin-bottom: 0;
|
|
1475
1547
|
}
|
|
1476
1548
|
|
|
1477
1549
|
@media print, screen and (min-width: map-get($breakpoints, medium)) {
|
|
1478
1550
|
flex: 1 1 0;
|
|
1479
1551
|
vertical-align: bottom;
|
|
1480
|
-
margin: 0
|
|
1552
|
+
margin: 0 26px 38px 0;
|
|
1481
1553
|
|
|
1482
1554
|
input {
|
|
1483
|
-
padding
|
|
1484
|
-
padding-bottom: 9px;
|
|
1555
|
+
padding: 7px 0 4px;
|
|
1485
1556
|
border-bottom-width: 5px;
|
|
1486
1557
|
font-size: 2.875rem;
|
|
1487
1558
|
height: calc(4.5rem + 2px);
|
|
@@ -1492,11 +1563,18 @@ body.hover-capable {
|
|
|
1492
1563
|
padding-top: 12px;
|
|
1493
1564
|
padding-bottom: 7px;
|
|
1494
1565
|
border-bottom-width: 5px;
|
|
1495
|
-
height:
|
|
1566
|
+
height: calc(4.5rem - 5px);
|
|
1567
|
+
bottom: 0;
|
|
1496
1568
|
}
|
|
1497
1569
|
|
|
1498
1570
|
a {
|
|
1499
|
-
|
|
1571
|
+
font-size: 22px;
|
|
1572
|
+
top: 0;
|
|
1573
|
+
right: -26px;
|
|
1574
|
+
|
|
1575
|
+
&.larger {
|
|
1576
|
+
font-size: 26px;
|
|
1577
|
+
}
|
|
1500
1578
|
}
|
|
1501
1579
|
}
|
|
1502
1580
|
}
|
|
@@ -79,106 +79,88 @@
|
|
|
79
79
|
margin-top: #{$single-space * 0.25} !important;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
@media screen and (max-width: (map-get($breakpoints, medium) - 1px)) {
|
|
83
|
+
.small-single-space {
|
|
84
84
|
margin-bottom: $single-space !important;
|
|
85
85
|
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.medium-single-space {
|
|
89
|
-
@media print, screen and (min-width: map-get($breakpoints, medium)) {
|
|
90
|
-
margin-bottom: $single-space !important;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
86
|
|
|
94
|
-
.small-single-space-top {
|
|
95
|
-
@media screen and (max-width: (map-get($breakpoints, medium) - 1px)) {
|
|
87
|
+
.small-single-space-top {
|
|
96
88
|
margin-top: $single-space !important;
|
|
97
89
|
}
|
|
98
|
-
}
|
|
99
90
|
|
|
100
|
-
.
|
|
101
|
-
@media print, screen and (min-width: map-get($breakpoints, medium)) {
|
|
102
|
-
margin-top: $single-space !important;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.small-double-space {
|
|
107
|
-
@media screen and (max-width: (map-get($breakpoints, medium) - 1px)) {
|
|
91
|
+
.small-double-space {
|
|
108
92
|
margin-bottom: #{$single-space * 2} !important;
|
|
109
93
|
}
|
|
110
|
-
}
|
|
111
94
|
|
|
112
|
-
.
|
|
113
|
-
|
|
114
|
-
margin-bottom: #{$single-space * 2} !important;
|
|
95
|
+
.small-double-space-top {
|
|
96
|
+
margin-top: #{$single-space * 2} !important;
|
|
115
97
|
}
|
|
116
|
-
}
|
|
117
98
|
|
|
118
|
-
.
|
|
119
|
-
|
|
120
|
-
margin-bottom: #{$single-space * 2} !important;
|
|
99
|
+
.small-triple-space {
|
|
100
|
+
margin-bottom: #{$single-space * 3} !important;
|
|
121
101
|
}
|
|
122
|
-
}
|
|
123
102
|
|
|
124
|
-
.small-
|
|
125
|
-
|
|
126
|
-
margin-top: #{$single-space * 2} !important;
|
|
103
|
+
.small-half-space {
|
|
104
|
+
margin-bottom: #{$single-space * 0.5} !important;
|
|
127
105
|
}
|
|
128
|
-
}
|
|
129
106
|
|
|
130
|
-
.
|
|
131
|
-
|
|
132
|
-
margin-top: #{$single-space * 2} !important;
|
|
107
|
+
.small-half-space-top {
|
|
108
|
+
margin-top: #{$single-space * 0.5} !important;
|
|
133
109
|
}
|
|
134
110
|
}
|
|
135
111
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
margin-bottom:
|
|
112
|
+
@media print, screen and (min-width: map-get($breakpoints, medium)) {
|
|
113
|
+
.medium-single-space {
|
|
114
|
+
margin-bottom: $single-space !important;
|
|
139
115
|
}
|
|
140
|
-
}
|
|
141
116
|
|
|
142
|
-
.medium-
|
|
143
|
-
|
|
144
|
-
margin-bottom: #{$single-space * 3} !important;
|
|
117
|
+
.medium-single-space-top {
|
|
118
|
+
margin-top: $single-space !important;
|
|
145
119
|
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
@media screen and (max-width: (map-get($breakpoints, medium) - 1px)) {
|
|
150
|
-
margin-bottom: #{$single-space * 0.5} !important;
|
|
120
|
+
|
|
121
|
+
.medium-double-space {
|
|
122
|
+
margin-bottom: #{$single-space * 2} !important;
|
|
151
123
|
}
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
124
|
+
|
|
125
|
+
.medium-double-space-top {
|
|
126
|
+
margin-top: #{$single-space * 2} !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.medium-triple-space {
|
|
130
|
+
margin-bottom: #{$single-space * 3} !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.medium-half-space {
|
|
156
134
|
margin-bottom: #{$single-space * 0.5} !important;
|
|
157
135
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
.small-half-space-top {
|
|
161
|
-
@media screen and (max-width: (map-get($breakpoints, medium) - 1px)) {
|
|
136
|
+
|
|
137
|
+
.medium-half-space-top {
|
|
162
138
|
margin-top: #{$single-space * 0.5} !important;
|
|
163
139
|
}
|
|
164
140
|
}
|
|
165
141
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
margin-
|
|
142
|
+
@media print, screen and (min-width: map-get($breakpoints, medium)) and (max-width: (map-get($breakpoints, large) - 1px)) {
|
|
143
|
+
.medium-only-double-space {
|
|
144
|
+
margin-bottom: #{$single-space * 2} !important;
|
|
169
145
|
}
|
|
170
146
|
}
|
|
171
147
|
|
|
172
|
-
|
|
173
|
-
|
|
148
|
+
@media print, screen and (min-width: map-get($breakpoints, large)) {
|
|
149
|
+
.large-no-space {
|
|
174
150
|
margin-bottom: 0 !important;
|
|
175
151
|
}
|
|
176
|
-
}
|
|
177
152
|
|
|
178
|
-
.large-no-space-top {
|
|
179
|
-
@media print, screen and (min-width: map-get($breakpoints, large)) {
|
|
153
|
+
.large-no-space-top {
|
|
180
154
|
margin-top: 0 !important;
|
|
181
155
|
}
|
|
156
|
+
|
|
157
|
+
.large-double-space-top {
|
|
158
|
+
margin-top: 40px !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.large-triple-space-top {
|
|
162
|
+
margin-top: 60px !important;
|
|
163
|
+
}
|
|
182
164
|
}
|
|
183
165
|
|
|
184
166
|
.medium-grid-container {
|
|
@@ -335,7 +317,9 @@ hr {
|
|
|
335
317
|
}
|
|
336
318
|
|
|
337
319
|
label {
|
|
320
|
+
line-height: 1.2;
|
|
338
321
|
font-size: 0.75rem;
|
|
322
|
+
margin-bottom: 5px;
|
|
339
323
|
}
|
|
340
324
|
}
|
|
341
325
|
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
.working-screen-container {
|
|
20
|
+
position: relative;
|
|
21
|
+
}
|
|
22
|
+
|
|
19
23
|
.working-screen {
|
|
20
24
|
background-color: fade-out($white, 0.5);
|
|
21
25
|
position: absolute;
|
|
@@ -72,6 +76,22 @@
|
|
|
72
76
|
animation-iteration-count: infinite;
|
|
73
77
|
animation-duration: 1s;
|
|
74
78
|
animation-timing-function: linear;
|
|
79
|
+
|
|
80
|
+
&.warning {
|
|
81
|
+
border-color: $warning;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&.success {
|
|
85
|
+
border-color: $success-alt;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&.extra-tiny {
|
|
89
|
+
width: 17px;
|
|
90
|
+
height: 17px;
|
|
91
|
+
border-width: 2px;
|
|
92
|
+
position: relative;
|
|
93
|
+
top: -2px;
|
|
94
|
+
}
|
|
75
95
|
}
|
|
76
96
|
|
|
77
97
|
@keyframes rotate {
|
|
@@ -152,6 +152,16 @@
|
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
+
&.no-header {
|
|
156
|
+
.modal-header {
|
|
157
|
+
margin-bottom: 0;
|
|
158
|
+
|
|
159
|
+
h3 {
|
|
160
|
+
display: none;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
155
165
|
&.small-header {
|
|
156
166
|
h3,
|
|
157
167
|
.modal-header h3 {
|
|
@@ -410,6 +420,10 @@
|
|
|
410
420
|
transform: translateY(-50%);
|
|
411
421
|
width: 100%;
|
|
412
422
|
}
|
|
423
|
+
|
|
424
|
+
&.removing {
|
|
425
|
+
background-color: $alert;
|
|
426
|
+
}
|
|
413
427
|
}
|
|
414
428
|
|
|
415
429
|
.bubble-message-enter {
|
|
@@ -12,6 +12,11 @@
|
|
|
12
12
|
margin-right: 15px;
|
|
13
13
|
flex-shrink: 0;
|
|
14
14
|
|
|
15
|
+
svg {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
15
20
|
&.avatar {
|
|
16
21
|
span {
|
|
17
22
|
border: solid 1px $primary;
|
|
@@ -60,10 +65,28 @@
|
|
|
60
65
|
font-weight: $body-weight-normal;
|
|
61
66
|
}
|
|
62
67
|
}
|
|
68
|
+
|
|
69
|
+
&.align-right {
|
|
70
|
+
justify-content: flex-end;
|
|
71
|
+
}
|
|
63
72
|
}
|
|
64
73
|
|
|
65
74
|
.notification-detail {
|
|
66
75
|
padding-top: 15px;
|
|
76
|
+
|
|
77
|
+
a,
|
|
78
|
+
strong {
|
|
79
|
+
color: $secondary-alt;
|
|
80
|
+
font-weight: 600;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
a {
|
|
84
|
+
text-decoration: underline;
|
|
85
|
+
|
|
86
|
+
&:hover {
|
|
87
|
+
text-decoration: none;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
67
90
|
}
|
|
68
91
|
|
|
69
92
|
&.inline {
|
|
@@ -94,6 +117,16 @@
|
|
|
94
117
|
display: block;
|
|
95
118
|
}
|
|
96
119
|
}
|
|
120
|
+
|
|
121
|
+
&.removing {
|
|
122
|
+
.notification-summary {
|
|
123
|
+
opacity: 0.5;
|
|
124
|
+
|
|
125
|
+
> a {
|
|
126
|
+
display: none !important;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
97
130
|
}
|
|
98
131
|
}
|
|
99
132
|
|