urfu-ui-kit-vanilla 1.0.28 → 1.0.29

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "UrFU UI-Kit for Vanilla Web",
4
4
  "license": "UNLICENSED",
5
5
  "private": false,
6
- "version": "1.0.28",
6
+ "version": "1.0.29",
7
7
  "type": "module",
8
8
  "scripts": {
9
9
  "start": "vite serve playground",
@@ -626,7 +626,11 @@
626
626
  </div>
627
627
  </div>
628
628
  <div class="pages">
629
- <i class="u-icon icon-left pages-icon pages-icon-inactive"></i>
629
+ <button class="pages__arrow-btn inactive">
630
+ <svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" viewBox="0 0 8 12" fill="none">
631
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.77705 11.7071C7.16758 11.3166 7.16758 10.6834 6.77705 10.2929L2.48416 5.99999L6.77705 1.70711C7.16758 1.31658 7.16758 0.683418 6.77705 0.292894C6.38653 -0.0976305 5.75337 -0.0976315 5.36284 0.292892L0.36284 5.29288C0.175304 5.48042 0.069947 5.73477 0.0699466 5.99999C0.0699461 6.26521 0.175303 6.51956 0.362839 6.7071L5.36284 11.7071C5.75336 12.0976 6.38653 12.0976 6.77705 11.7071Z" fill="#D3D3D3"/>
632
+ </svg>
633
+ </button>
630
634
  <div class="pages-nums">
631
635
  <button class="pages-num pages-num-active">1</b>
632
636
  <button class="pages-num">2</button>
@@ -641,7 +645,11 @@
641
645
  </button>
642
646
  <button class="pages-num">12</button>
643
647
  </div>
644
- <i class="u-icon icon-right pages-icon"></i>
648
+ <button class="pages__arrow-btn">
649
+ <svg xmlns="http://www.w3.org/2000/svg" width="9" height="12" viewBox="0 0 9 12" fill="none">
650
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.22295 11.7071C1.83242 11.3166 1.83242 10.6834 2.22295 10.2929L6.51584 5.99999L2.22295 1.70711C1.83242 1.31658 1.83242 0.683418 2.22295 0.292894C2.61347 -0.0976305 3.24663 -0.0976315 3.63716 0.292892L8.63716 5.29288C8.8247 5.48042 8.93005 5.73477 8.93005 5.99999C8.93005 6.26521 8.8247 6.51956 8.63716 6.7071L3.63716 11.7071C3.24664 12.0976 2.61347 12.0976 2.22295 11.7071Z" fill="#1E4391"/>
651
+ </svg>
652
+ </button>
645
653
  </div>
646
654
  </div>
647
655
  </section>
package/src/main.css CHANGED
@@ -30,6 +30,21 @@
30
30
  * {
31
31
  box-sizing: border-box;
32
32
  }
33
+ p,
34
+ h1,
35
+ h2,
36
+ h3,
37
+ h4,
38
+ h5,
39
+ h6 {
40
+ margin: 0;
41
+ padding: 0;
42
+ }
43
+ button {
44
+ text-decoration: none;
45
+ border: none;
46
+ background: transparent;
47
+ }
33
48
  /* полоса прокрутки (скроллбар) */
34
49
  ::-webkit-scrollbar {
35
50
  background-color: transparent;
@@ -1857,97 +1872,112 @@
1857
1872
  }
1858
1873
  .u-notification {
1859
1874
  width: fit-content;
1875
+ min-width: 300px;
1860
1876
  display: flex;
1861
1877
  justify-content: space-between;
1862
1878
  padding: 18px 16px 18px 52px;
1863
1879
  border-radius: 10px;
1864
1880
  font-weight: 400;
1881
+ column-gap: 8px;
1865
1882
  font-size: 16px;
1866
1883
  color: #222222;
1867
1884
  background-repeat: no-repeat;
1868
1885
  background-position: top calc(50% - 1px) left 16px;
1886
+ border: 2px solid rgba(184, 218, 255, 0.85);
1869
1887
  background-color: #E7F2FF;
1870
1888
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%231E4391' stroke-width='2'%3E%3C/circle%3E%3Crect x='9' y='8' width='2' height='8' rx='1' fill='%231E4391'%3E%3C/rect%3E%3Ccircle cx='10' cy='6' r='1' fill='%231E4391'%3E%3C/circle%3E%3C/svg%3E");
1871
1889
  }
1872
1890
  .u-notification .u-notification-hide {
1873
1891
  cursor: pointer;
1874
- display: block;
1875
- border: none;
1876
- width: 12px;
1892
+ flex: 0 0 12px;
1877
1893
  height: 12px;
1878
- margin: auto 0 auto 16px;
1894
+ position: relative;
1895
+ top: -3px;
1896
+ padding: 5px;
1879
1897
  background-repeat: no-repeat;
1880
1898
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5301_23915)'%3E%3Cpath d='M1 1L10.5833 11M11 1L1 11' stroke='%231E4391' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5301_23915'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
1881
1899
  }
1882
1900
  .u-notification-fail {
1883
1901
  width: fit-content;
1902
+ min-width: 300px;
1884
1903
  display: flex;
1885
1904
  justify-content: space-between;
1886
1905
  padding: 18px 16px 18px 52px;
1887
1906
  border-radius: 10px;
1888
1907
  font-weight: 400;
1908
+ column-gap: 8px;
1889
1909
  font-size: 16px;
1890
1910
  color: #222222;
1891
1911
  background-repeat: no-repeat;
1892
1912
  background-position: top calc(50% - 1px) left 16px;
1913
+ border: 2px solid rgba(184, 218, 255, 0.85);
1914
+ border-color: rgba(248, 215, 218, 0.85);
1893
1915
  background-color: #FDEAEA;
1894
1916
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23EF302B' stroke-width='2'%3E%3C/circle%3E%3Ccircle cx='10' cy='15' r='1' fill='%23EF302B'%3E%3C/circle%3E%3Cpath d='M8.59357 6.49708C8.54286 5.68582 9.18716 5 10 5C10.8128 5 11.4571 5.68582 11.4064 6.49708L11.0624 12.0019C11.0273 12.563 10.5621 13 10 13C9.4379 13 8.97268 12.563 8.93762 12.0019L8.59357 6.49708Z' fill='%23EF302B'%3E%3C/path%3E%3C/svg%3E");
1895
1917
  }
1896
1918
  .u-notification-fail .u-notification-hide {
1897
1919
  cursor: pointer;
1898
- display: block;
1899
- border: none;
1900
- width: 12px;
1920
+ flex: 0 0 12px;
1901
1921
  height: 12px;
1902
- margin: auto 0 auto 16px;
1922
+ position: relative;
1923
+ top: -3px;
1924
+ padding: 5px;
1903
1925
  background-repeat: no-repeat;
1904
1926
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5301_23930)'%3E%3Cpath d='M1 1L10.5833 11M11 1L1 11' stroke='%23EF302B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5301_23930'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
1905
1927
  }
1906
1928
  .u-notification-success {
1907
1929
  width: fit-content;
1930
+ min-width: 300px;
1908
1931
  display: flex;
1909
1932
  justify-content: space-between;
1910
1933
  padding: 18px 16px 18px 52px;
1911
1934
  border-radius: 10px;
1912
1935
  font-weight: 400;
1936
+ column-gap: 8px;
1913
1937
  font-size: 16px;
1914
1938
  color: #222222;
1915
1939
  background-repeat: no-repeat;
1916
1940
  background-position: top calc(50% - 1px) left 16px;
1941
+ border: 2px solid rgba(184, 218, 255, 0.85);
1917
1942
  background-color: #EDF7EB;
1943
+ border-color: rgba(212, 237, 218, 0.85);
1918
1944
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23147246' stroke-width='2'%3E%3C/circle%3E%3Cpath d='M6 10.5L9.10148 13.6015C9.31345 13.8134 9.663 13.7925 9.8482 13.5568L15 7' stroke='%23147246' stroke-width='2' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
1919
1945
  }
1920
1946
  .u-notification-success .u-notification-hide {
1921
1947
  cursor: pointer;
1922
- display: block;
1923
- border: none;
1924
- width: 12px;
1948
+ flex: 0 0 12px;
1925
1949
  height: 12px;
1926
- margin: auto 0 auto 16px;
1950
+ position: relative;
1951
+ top: -3px;
1952
+ padding: 5px;
1927
1953
  background-repeat: no-repeat;
1928
1954
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5301_23920)'%3E%3Cpath d='M1 1L10.5833 11M11 1L1 11' stroke='%23147246' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5301_23920'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
1929
1955
  }
1930
1956
  .u-notification-warning {
1931
1957
  width: fit-content;
1958
+ min-width: 300px;
1932
1959
  display: flex;
1933
1960
  justify-content: space-between;
1934
1961
  padding: 18px 16px 18px 52px;
1935
1962
  border-radius: 10px;
1936
1963
  font-weight: 400;
1964
+ column-gap: 8px;
1937
1965
  font-size: 16px;
1938
1966
  color: #222222;
1939
1967
  background-repeat: no-repeat;
1940
1968
  background-position: top calc(50% - 1px) left 16px;
1969
+ border: 2px solid rgba(184, 218, 255, 0.85);
1970
+ border-color: rgba(255, 243, 205, 0.85);
1941
1971
  background-color: #FCF4E6;
1942
1972
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23E98446' stroke-width='2'%3E%3C/circle%3E%3Cpath d='M9.24233 13C9.03869 13 8.87361 12.8349 8.87361 12.6313C8.87361 12.229 8.92092 11.8715 9.01552 11.5587C9.11013 11.2458 9.25795 10.9665 9.45898 10.7207C9.67184 10.4749 9.84922 10.2905 9.99113 10.1676C10.1449 10.0335 10.3696 9.86034 10.6652 9.64805C10.9017 9.48045 11.0791 9.34637 11.1973 9.24581C11.3274 9.13408 11.4693 8.99441 11.6231 8.82682C11.7886 8.64804 11.9069 8.4581 11.9778 8.25698C12.0488 8.05587 12.0843 7.82681 12.0843 7.56983C12.0843 7.20112 11.9897 6.8771 11.8004 6.59777C11.6231 6.30727 11.3747 6.08939 11.0554 5.94413C10.748 5.78771 10.3991 5.7095 10.0089 5.7095C9.42942 5.7095 8.92683 5.87709 8.50111 6.21229C8.33022 6.34607 8.19259 6.4989 8.08823 6.67078C7.82922 7.09735 7.45131 7.51955 6.95227 7.51955C6.4297 7.51955 5.99284 7.08288 6.12856 6.57825C6.30589 5.91891 6.6651 5.37233 7.20621 4.93855C7.99852 4.31285 8.93275 4 10.0089 4C11.1323 4 12.0783 4.32402 12.847 4.97207C13.6157 5.62012 14 6.48603 14 7.56983C14 7.97207 13.9527 8.32961 13.8581 8.64246C13.7635 8.95531 13.6157 9.24023 13.4146 9.49721C13.2136 9.74302 13.0362 9.93296 12.8825 10.067C12.7288 10.2011 12.51 10.3743 12.2262 10.5866C11.9778 10.7765 11.7945 10.9218 11.6763 11.0223C11.5698 11.1117 11.4339 11.2458 11.2683 11.4246C11.1146 11.6034 11.0022 11.7933 10.9313 11.9944C10.8721 12.1844 10.8426 12.3966 10.8426 12.6313C10.8426 12.8349 10.6775 13 10.4739 13H9.24233Z' fill='%23E98446'%3E%3C/path%3E%3Ccircle cx='10' cy='15' r='1' fill='%23E98446'%3E%3C/circle%3E%3C/svg%3E");
1943
1973
  }
1944
1974
  .u-notification-warning .u-notification-hide {
1945
1975
  cursor: pointer;
1946
- display: block;
1947
- border: none;
1948
- width: 12px;
1976
+ flex: 0 0 12px;
1949
1977
  height: 12px;
1950
- margin: auto 0 auto 16px;
1978
+ position: relative;
1979
+ top: -3px;
1980
+ padding: 5px;
1951
1981
  background-repeat: no-repeat;
1952
1982
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5301_23925)'%3E%3Cpath d='M1 1L10.5833 11M11 1L1 11' stroke='%23E98446' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5301_23925'%3E%3Crect width='12' height='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
1953
1983
  }
@@ -2860,9 +2890,104 @@ h5 {
2860
2890
  text-decoration: underline;
2861
2891
  text-underline-offset: 0.22em;
2862
2892
  }
2893
+ .pagination-container {
2894
+ display: flex;
2895
+ align-items: center;
2896
+ justify-content: space-between;
2897
+ padding: 1.5rem 3.6rem;
2898
+ }
2899
+ .pagination-container__p,
2900
+ .pagination-container__limit,
2901
+ .pagination-container .pages {
2902
+ /*table text*/
2903
+ /*table text*/
2904
+ font-weight: 400;
2905
+ font-size: 14px;
2906
+ line-height: 20px;
2907
+ }
2908
+ .pagination-container__p {
2909
+ color: #545454;
2910
+ }
2911
+ .pagination-container__limit-wrapper {
2912
+ display: inline-flex;
2913
+ align-items: center;
2914
+ column-gap: 16px;
2915
+ padding-left: 1rem;
2916
+ }
2917
+ .pagination-container__limit {
2918
+ font-weight: 600;
2919
+ cursor: pointer;
2920
+ }
2921
+ .pagination-container .limit-active,
2922
+ .pagination-container__limit:hover {
2923
+ font-weight: 700;
2924
+ color: #1e4391;
2925
+ }
2926
+ .pagination-container .pages {
2927
+ display: flex;
2928
+ align-items: center;
2929
+ justify-content: space-between;
2930
+ margin-left: 0.8rem;
2931
+ column-gap: 0.5rem;
2932
+ user-select: none;
2933
+ }
2934
+ .pagination-container .pages * {
2935
+ cursor: pointer;
2936
+ }
2937
+ .pagination-container .pages__arrow-btn.inactive {
2938
+ cursor: not-allowed;
2939
+ }
2940
+ .pagination-container .pages-nums {
2941
+ display: flex;
2942
+ align-items: center;
2943
+ column-gap: 5px;
2944
+ }
2945
+ .pagination-container .pages-num {
2946
+ display: flex;
2947
+ align-items: flex-end;
2948
+ cursor: pointer;
2949
+ justify-content: center;
2950
+ width: 33px;
2951
+ height: 32px;
2952
+ border-radius: 8px;
2953
+ padding: 8px;
2954
+ box-sizing: border-box;
2955
+ color: #545454;
2956
+ border: none;
2957
+ text-decoration: none;
2958
+ background: transparent;
2959
+ }
2960
+ .pagination-container .pages-num-active {
2961
+ color: #fff;
2962
+ background: #1e4391;
2963
+ }
2964
+ .pagination-container .pages-num:not(.pages-num-active):hover {
2965
+ font-weight: 700;
2966
+ color: #1e4391;
2967
+ }
2968
+ .pagination-container .pages-num:focus-visible {
2969
+ border: none;
2970
+ outline: none;
2971
+ }
2972
+
2863
2973
  * {
2864
2974
  box-sizing: border-box;
2865
2975
  }
2976
+ p,
2977
+ h1,
2978
+ h2,
2979
+ h3,
2980
+ h4,
2981
+ h5,
2982
+ h6 {
2983
+ margin: 0;
2984
+ padding: 0;
2985
+ }
2986
+ button {
2987
+ text-decoration: none;
2988
+ border: none;
2989
+ background: transparent;
2990
+ }
2866
2991
  /* полоса прокрутки (скроллбар) */
2867
2992
  ::-webkit-scrollbar {
2868
2993
  background-color: transparent;
package/src/main.less CHANGED
@@ -29,6 +29,17 @@
29
29
  box-sizing: border-box;
30
30
  }
31
31
 
32
+ p, h1, h2, h3, h4, h5, h6 {
33
+ margin: 0;
34
+ padding: 0;
35
+ }
36
+
37
+ button {
38
+ text-decoration: none;
39
+ border: none;
40
+ background: transparent;
41
+ }
42
+
32
43
  /* полоса прокрутки (скроллбар) */
33
44
  ::-webkit-scrollbar {
34
45
  background-color: transparent;
@@ -2,25 +2,28 @@
2
2
 
3
3
  .notification() {
4
4
  width: fit-content;
5
+ min-width: 300px;
5
6
  display: flex;
6
7
  justify-content: space-between;
7
8
  padding: 18px 16px 18px 52px;
8
9
  border-radius: @radius;
9
10
  font-weight: 400;
11
+ column-gap: 8px;
10
12
  font-size: 16px;
11
13
  color: @clr-main-dark;
12
14
  background-repeat: no-repeat;
13
15
  background-position: top calc(50% - 1px) left 16px;
16
+ border: 2px solid rgba(184, 218, 255, 0.85);
14
17
  }
15
18
 
16
19
  .notification-hide() {
17
20
  cursor: pointer;
18
- display: block;
19
- border: none;
20
- width: 12px;
21
+ flex: 0 0 12px;
21
22
  height: 12px;
22
- margin: auto 0 auto 16px;
23
- background-repeat: no-repeat
23
+ position: relative;
24
+ top: -3px;
25
+ padding: 5px;
26
+ background-repeat: no-repeat;
24
27
  }
25
28
 
26
29
  .u-notification {
@@ -33,6 +36,7 @@
33
36
  }
34
37
  &-fail {
35
38
  .notification;
39
+ border-color: rgba(248, 215, 218, 0.85);
36
40
  background-color: #FDEAEA;
37
41
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23EF302B' stroke-width='2'%3E%3C/circle%3E%3Ccircle cx='10' cy='15' r='1' fill='%23EF302B'%3E%3C/circle%3E%3Cpath d='M8.59357 6.49708C8.54286 5.68582 9.18716 5 10 5C10.8128 5 11.4571 5.68582 11.4064 6.49708L11.0624 12.0019C11.0273 12.563 10.5621 13 10 13C9.4379 13 8.97268 12.563 8.93762 12.0019L8.59357 6.49708Z' fill='%23EF302B'%3E%3C/path%3E%3C/svg%3E");
38
42
  .u-notification-hide {
@@ -43,6 +47,7 @@
43
47
  &-success {
44
48
  .notification;
45
49
  background-color: #EDF7EB;
50
+ border-color: rgba(212, 237, 218, 0.85);
46
51
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23147246' stroke-width='2'%3E%3C/circle%3E%3Cpath d='M6 10.5L9.10148 13.6015C9.31345 13.8134 9.663 13.7925 9.8482 13.5568L15 7' stroke='%23147246' stroke-width='2' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
47
52
  .u-notification-hide {
48
53
  .notification-hide;
@@ -51,6 +56,7 @@
51
56
  }
52
57
  &-warning {
53
58
  .notification;
59
+ border-color: rgba(255, 243, 205, 0.85);
54
60
  background-color: #FCF4E6;
55
61
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23E98446' stroke-width='2'%3E%3C/circle%3E%3Cpath d='M9.24233 13C9.03869 13 8.87361 12.8349 8.87361 12.6313C8.87361 12.229 8.92092 11.8715 9.01552 11.5587C9.11013 11.2458 9.25795 10.9665 9.45898 10.7207C9.67184 10.4749 9.84922 10.2905 9.99113 10.1676C10.1449 10.0335 10.3696 9.86034 10.6652 9.64805C10.9017 9.48045 11.0791 9.34637 11.1973 9.24581C11.3274 9.13408 11.4693 8.99441 11.6231 8.82682C11.7886 8.64804 11.9069 8.4581 11.9778 8.25698C12.0488 8.05587 12.0843 7.82681 12.0843 7.56983C12.0843 7.20112 11.9897 6.8771 11.8004 6.59777C11.6231 6.30727 11.3747 6.08939 11.0554 5.94413C10.748 5.78771 10.3991 5.7095 10.0089 5.7095C9.42942 5.7095 8.92683 5.87709 8.50111 6.21229C8.33022 6.34607 8.19259 6.4989 8.08823 6.67078C7.82922 7.09735 7.45131 7.51955 6.95227 7.51955C6.4297 7.51955 5.99284 7.08288 6.12856 6.57825C6.30589 5.91891 6.6651 5.37233 7.20621 4.93855C7.99852 4.31285 8.93275 4 10.0089 4C11.1323 4 12.0783 4.32402 12.847 4.97207C13.6157 5.62012 14 6.48603 14 7.56983C14 7.97207 13.9527 8.32961 13.8581 8.64246C13.7635 8.95531 13.6157 9.24023 13.4146 9.49721C13.2136 9.74302 13.0362 9.93296 12.8825 10.067C12.7288 10.2011 12.51 10.3743 12.2262 10.5866C11.9778 10.7765 11.7945 10.9218 11.6763 11.0223C11.5698 11.1117 11.4339 11.2458 11.2683 11.4246C11.1146 11.6034 11.0022 11.7933 10.9313 11.9944C10.8721 12.1844 10.8426 12.3966 10.8426 12.6313C10.8426 12.8349 10.6775 13 10.4739 13H9.24233Z' fill='%23E98446'%3E%3C/path%3E%3Ccircle cx='10' cy='15' r='1' fill='%23E98446'%3E%3C/circle%3E%3C/svg%3E");
56
62
  .u-notification-hide {
@@ -12,8 +12,7 @@
12
12
 
13
13
  &__p,
14
14
  &__limit, .pages {
15
- font-size: 1rem;
16
- line-height: 1.5;
15
+ .tt;
17
16
  }
18
17
 
19
18
  &__p {
@@ -43,6 +42,15 @@
43
42
  justify-content: space-between;
44
43
  margin-left: 0.8rem;
45
44
  column-gap: 0.5rem;
45
+ user-select: none;
46
+
47
+ * {
48
+ cursor: pointer;
49
+ }
50
+
51
+ &__arrow-btn.inactive {
52
+ cursor: not-allowed;
53
+ }
46
54
 
47
55
  &-nums {
48
56
  .flex-container;
@@ -50,7 +58,8 @@
50
58
  }
51
59
 
52
60
  &-num {
53
- .flex-container;
61
+ display: flex;
62
+ align-items: flex-end;
54
63
  cursor: pointer;
55
64
  justify-content: center;
56
65
  width: 33px;
@@ -68,8 +77,9 @@
68
77
  background: #1e4391;
69
78
  }
70
79
 
71
- &:hover {
72
- background: rgba(30, 67, 145, 0.3);
80
+ &:not(.pages-num-active):hover {
81
+ font-weight: 700;
82
+ color: #1e4391;
73
83
  }
74
84
 
75
85
  &:focus-visible {