ros.grant.common 2.0.1065 → 2.0.1069

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.
@@ -144,6 +144,22 @@ html {
144
144
  text-align: justify !important;
145
145
  }
146
146
 
147
+ .nowrap {
148
+ white-space: nowrap;
149
+ }
150
+
151
+ .bold {
152
+ font-weight: bold !important;
153
+ }
154
+
155
+ .text-bold {
156
+ font-weight: bold !important;
157
+ }
158
+
159
+ .text-normal {
160
+ font-weight: normal !important;
161
+ }
162
+
147
163
  .text-nowrap {
148
164
  white-space: nowrap !important;
149
165
  }
@@ -56,10 +56,6 @@ span {
56
56
  word-break: break-word;
57
57
  }
58
58
 
59
- .nowrap {
60
- white-space: nowrap;
61
- }
62
-
63
59
  p {
64
60
  padding: 0;
65
61
  margin: 0;
@@ -143,10 +139,6 @@ h6 {
143
139
  font-size: 12px;
144
140
  }
145
141
 
146
- .bold {
147
- font-weight: bold;
148
- }
149
-
150
142
  .color-accent {
151
143
  color: var(--Main2) !important;
152
144
  }
@@ -39,38 +39,31 @@
39
39
  top: 40px;
40
40
  z-index: 100;
41
41
  background: #fff;
42
- box-shadow: 0px 4px 10px rgba(57, 52, 66, 0.15);
43
- border-radius: 4px;
42
+ box-shadow: var(--secondary_shadow);
43
+ border-radius: 8px;
44
44
  display: block !important;
45
- width: 215px;
45
+ width: 250px;
46
46
  visibility: hidden;
47
47
  opacity: 0;
48
+ overflow: hidden;
48
49
  transition: visibility 0.1s linear, opacity 0.1s linear;
49
50
 
50
51
  &__item {
51
52
 
52
53
  .nav-menu-text-link {
53
- padding: 15px 17px;
54
+ padding: 9px 17px;
54
55
  display: flex;
55
56
  align-items: center;
57
+ justify-content: center;
56
58
  color: var(--Main1);
57
- font-size: 14px;
58
- line-height: 20px;
59
+ font-size: 19px;
60
+ line-height: 120%;
59
61
  transition: 0.2s;
60
- border-bottom: 1px solid var(--Stroke);
61
-
62
- &:hover {
63
- background: var(--Bg2);
64
- color: var(--Subsidiary);
65
- text-decoration: none;
66
- }
67
62
  }
68
63
 
69
- &:last-child {
70
- .nav-menu-text-link {
71
- border-bottom: none;
72
- }
73
- }
64
+ &:hover {
65
+ background-color: var(--Bg2);
66
+ }
74
67
  }
75
68
  }
76
69
 
@@ -250,10 +250,8 @@
250
250
  width: 100%;
251
251
  height: 100%;
252
252
  font-size: 14px;
253
- background-color: var(--Bg1);
254
253
  border: 1px solid var(--Stroke);
255
254
  border-radius: 4px;
256
- padding: 15px;
257
255
  }
258
256
 
259
257
  label {
@@ -7,7 +7,7 @@
7
7
  input {
8
8
  font-size: 14px;
9
9
  border-radius: 4px;
10
- padding: 12px 16px;
10
+ padding: 8px 16px;
11
11
  border: 1px solid var(--Stroke);
12
12
  width: 100%;
13
13
  height: 48px;
@@ -43,13 +43,92 @@
43
43
  }
44
44
  }
45
45
 
46
- .label {
47
- display: flex;
48
- align-items: center;
49
- width: 100%;
50
- height: 14px;
51
- line-height: 1;
52
- margin-bottom: 6px;
46
+ &.inputbox-md {
47
+ input {
48
+ font-size: 14px;
49
+ padding: 8px 12px;
50
+ height: 40px;
51
+ }
52
+
53
+ textarea {
54
+ font-size: 14px;
55
+ padding: 8px 12px;
56
+ min-height: 40px;
57
+ }
58
+
59
+ .ng-select {
60
+ .ng-select-container {
61
+ min-height: 40px !important;
62
+
63
+ .ng-value-container {
64
+ padding-left: 12px !important;
65
+
66
+ .ng-input {
67
+ padding-left: 12px !important;
68
+ height: 28px;
69
+
70
+ >input {
71
+ padding-top: 10px;
72
+ transform: translateY(-5px);
73
+ }
74
+ }
75
+ }
76
+ }
77
+
78
+ .ng-arrow-wrapper {
79
+ min-height: 38px;
80
+ }
81
+
82
+ &.ng-select-multiple {
83
+ .ng-select-container {
84
+ .ng-value-container {
85
+ padding-left: 8px !important;
86
+ padding-top: 8px !important;
87
+
88
+ .ng-input {
89
+ padding-left: 8px !important;
90
+ padding: 0 0 0px 3px !important;
91
+
92
+ input {
93
+ transform: translateY(-10px) !important;
94
+ }
95
+ }
96
+
97
+ .ng-value {
98
+ min-height: 24px;
99
+ padding: 2px 8px;
100
+ padding-right: 32px;
101
+ margin-right: 8px;
102
+ margin-bottom: 8px;
103
+
104
+ .ng-value-icon {
105
+ width: 30px;
106
+ font-size: 32px;
107
+ }
108
+ }
109
+
110
+ .ng-placeholder {
111
+ top: 9px !important;
112
+ padding-left: 8px !important;
113
+ }
114
+ }
115
+ }
116
+ }
117
+ }
118
+ }
119
+
120
+ &.inputbox-sm {
121
+ input {
122
+ font-size: 12px;
123
+ padding: 8px;
124
+ height: 32px;
125
+ }
126
+
127
+ textarea {
128
+ font-size: 12px;
129
+ padding: 8px;
130
+ min-height: 32px;
131
+ }
53
132
  }
54
133
 
55
134
  .user_label {
@@ -89,6 +89,10 @@
89
89
  background: #f2eac2; // должно быть var(--Bg2), изменено по просьбе заказчика
90
90
  }
91
91
 
92
+ .page-container .page-content .page-header .navbar .user .auth-nav-menu__item:hover{
93
+ background: #f2eac2; // должно быть var(--Bg2), изменено по просьбе заказчика
94
+ }
95
+
92
96
  .btn {
93
97
  &.fpg {
94
98
  border: 1px solid #b4b2aa !important;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.1065",
2
+ "version": "2.0.1069",
3
3
  "name": "ros.grant.common",
4
4
  "private": false,
5
5
  "description": "Collection of static files used by RosGrant awesome team",
@@ -62,4 +62,4 @@
62
62
  "GulpTasks/*",
63
63
  "Images/*"
64
64
  ]
65
- }
65
+ }