ros.grant.common 2.0.1328 → 2.0.1331

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.
@@ -1524,30 +1524,38 @@
1524
1524
  /** PT Sans Pro**/
1525
1525
  @font-face {
1526
1526
  font-family: 'PT Sans Pro - Regular';
1527
- src: local('PTSansPro-Regular'), local('PTSansPro-Regular'), url('@{commonFontsRoot}/PTSansPro-Regular.woff2') format('woff2');
1527
+ src: local('PT Sans Pro - Regular'),
1528
+ local('PTSansPro-Regular'),
1529
+ url('@{commonFontsRoot}/PTSansPro-Regular.woff') format('woff'),
1530
+ url('@{commonFontsRoot}/PTSansPro-Regular.woff2') format('woff2'),
1531
+ url('@{commonFontsRoot}PTSansPro-Regular.ttf') format('truetype');
1528
1532
  font-weight: 300;
1529
1533
  font-style: normal;
1530
1534
  font-display: swap;
1531
1535
  }
1532
1536
 
1533
1537
  @font-face {
1534
- font-family: 'PT Sans Pro - Caption';
1535
- src: local('PTSansPro-Caption'),
1536
- local('PTSansPro-Caption'),
1537
- url('@{commonFontsRoot}/PTSansPro-Caption.woff2') format('woff2');
1538
- font-weight: 300;
1539
- font-style: normal;
1540
- font-display: swap;
1538
+ font-family: 'PT Sans Pro Caption';
1539
+ src: local('PT Sans Pro Caption'),
1540
+ local('PTSansPro-Caption'),
1541
+ url('@{commonFontsRoot}/PTSansProCaption.woff') format('woff'),
1542
+ url('@{commonFontsRoot}/PTSansProCaption.woff2') format('woff2'),
1543
+ url('@{commonFontsRoot}PTSansProCaption.ttf') format('truetype');
1544
+ font-weight: 400;
1545
+ font-style: normal;
1546
+ font-display: swap;
1541
1547
  }
1542
1548
 
1543
1549
  @font-face {
1544
- font-family: 'PT Sans Pro Caption Bold';
1545
- src: local('PTSansProCaptionBold'),
1546
- local('PTSansProCaptionBold'),
1547
- url('@{commonFontsRoot}/PTSansProCaptionBold.woff2') format('woff2');
1548
- font-weight: 700;
1549
- font-style: normal;
1550
- font-display: swap;
1550
+ font-family: 'PT Sans Pro Caption Bold';
1551
+ src: local('PT Sans Pro Caption Bold'),
1552
+ local('PTSansPro-Caption Bold'),
1553
+ url('@{commonFontsRoot}/PTSansProCaption-Bold.woff') format('woff'),
1554
+ url('@{commonFontsRoot}/PTSansProCaption-Bold.woff2') format('woff2'),
1555
+ url('@{commonFontsRoot}PTSansProCaption-Bold.ttf') format('truetype');
1556
+ font-weight: 700;
1557
+ font-style: normal;
1558
+ font-display: swap;
1551
1559
  }
1552
1560
  /** PT Sans Pro Caption END**/
1553
1561
 
@@ -505,7 +505,7 @@
505
505
  &__link {
506
506
  font-size: 16px;
507
507
  line-height: 20px;
508
- margin-right: 16px;
508
+ margin-right: 24px;
509
509
  color: #fff;
510
510
  position: relative;
511
511
 
@@ -517,7 +517,7 @@
517
517
  content: '';
518
518
  position: absolute;
519
519
  left: 0;
520
- bottom: -8px;
520
+ bottom: -16px;
521
521
  width: 100%;
522
522
  height: 2px;
523
523
  background: #fff;
@@ -525,13 +525,14 @@
525
525
  }
526
526
 
527
527
  &_additional {
528
- margin-left: 32px;
529
528
  position: relative;
529
+ cursor: default;
530
+ height: 20px;
530
531
 
531
532
  &:before {
532
533
  content: '';
533
534
  position: absolute;
534
- left: -24px;
535
+ left: 0px;
535
536
  top: 0;
536
537
  width: 1px;
537
538
  height: 100%;
@@ -0,0 +1,7 @@
1
+ .mrx-dropdown-divider {
2
+ height: 0;
3
+ margin: .5rem 0;
4
+ overflow: hidden;
5
+ border-top: 1px solid rgba(0, 0, 0, .175);
6
+ opacity: 1;
7
+ }
@@ -0,0 +1,54 @@
1
+ .mrx-dropdown-item {
2
+ width: 100%;
3
+ padding: .25rem 1rem;
4
+ clear: both;
5
+ color: var(--Main1);
6
+ text-align: inherit;
7
+ text-decoration: none;
8
+ white-space: nowrap;
9
+ background-color: transparent;
10
+ border: 0;
11
+ font-weight: 400;
12
+ font-size: 14px;
13
+ line-height: 20px;
14
+ display: flex;
15
+ align-items: center;
16
+
17
+ &:hover, &:focus {
18
+ color: var(--Main1);
19
+ background-color: var(--Bg2);
20
+ }
21
+
22
+ &.active, &:active {
23
+ color: var(--White);
24
+ text-decoration: none;
25
+ background-color: var(--Main2);
26
+
27
+ svg {
28
+ path, rect {
29
+ stroke: var(--White);
30
+ }
31
+ }
32
+ }
33
+
34
+ span {
35
+ font-weight: 400;
36
+ font-size: 14px;
37
+ line-height: 20px;
38
+ }
39
+
40
+ svg {
41
+ margin-right: 10px;
42
+
43
+ path, rect {
44
+ stroke: var(--Main1);
45
+ }
46
+ }
47
+ }
48
+
49
+ .mrx-dropdown-item:not(:disabled),
50
+ .mrx-dropdown-item[type=button]:not(:disabled),
51
+ .mrx-dropdown-item[type=reset]:not(:disabled),
52
+ .mrx-dropdown-item[type=submit]:not(:disabled) {
53
+ cursor: pointer;
54
+ }
@@ -0,0 +1,20 @@
1
+ .mrx-dropdown-menu {
2
+ position: absolute;
3
+ z-index: 1000;
4
+ display: none;
5
+ min-width: 10rem;
6
+ padding: .5rem 0;
7
+ margin: 0;
8
+ font-size: 1rem;
9
+ color: #212529;
10
+ text-align: left;
11
+ list-style: none;
12
+ background-color: #fff;
13
+ background-clip: padding-box;
14
+ border: 1px solid rgba(0, 0, 0, .175);
15
+ border-radius: .375rem;
16
+
17
+ &.show {
18
+ display: block;
19
+ }
20
+ }
@@ -0,0 +1,15 @@
1
+ .mrx-dropdown-title {
2
+ width: 100%;
3
+ padding: .25rem 1rem;
4
+ clear: both;
5
+ color: var(--Secondary);
6
+ text-align: inherit;
7
+ white-space: nowrap;
8
+ background-color: transparent;
9
+ border: 0;
10
+ font-weight: 400;
11
+ font-size: 14px;
12
+ line-height: 20px;
13
+ display: flex;
14
+ align-items: center;
15
+ }
@@ -0,0 +1,3 @@
1
+ .mrx-dropdown-toggle {
2
+
3
+ }
@@ -0,0 +1,3 @@
1
+ .mrx-dropdown {
2
+
3
+ }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.1328",
2
+ "version": "2.0.1331",
3
3
  "name": "ros.grant.common",
4
4
  "private": false,
5
5
  "scripts": {