@selco/installation-ui-css 1.0.0

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.
Files changed (161) hide show
  1. package/CHANGELOG.md +163 -0
  2. package/README.md +62 -0
  3. package/dist/index.css +14290 -0
  4. package/dist/index.min.css +6 -0
  5. package/img/browser-icon.png +0 -0
  6. package/img/m_seva_white_logo.png +0 -0
  7. package/img/mseva-demo.png +0 -0
  8. package/package.json +68 -0
  9. package/src/components/CardBasedOptions.scss +46 -0
  10. package/src/components/CitizenHomeCard.scss +60 -0
  11. package/src/components/EllipsisMenu.scss +17 -0
  12. package/src/components/EventCalendarView.scss +10 -0
  13. package/src/components/FAQ.scss +64 -0
  14. package/src/components/OnGroundEventCard.scss +72 -0
  15. package/src/components/PageBasedInput.scss +42 -0
  16. package/src/components/PopupHeadingLabel.scss +15 -0
  17. package/src/components/PropertySearchForm.scss +58 -0
  18. package/src/components/SearchForm.scss +56 -0
  19. package/src/components/SearchOnRadioButton.scss +10 -0
  20. package/src/components/StandaloneSearchBar.scss +10 -0
  21. package/src/components/TimeLine.scss +68 -0
  22. package/src/components/WhatsNewCard.scss +13 -0
  23. package/src/components/actionLink.scss +3 -0
  24. package/src/components/actionbar.scss +97 -0
  25. package/src/components/bannercomponents.scss +136 -0
  26. package/src/components/body.scss +144 -0
  27. package/src/components/buttons.scss +101 -0
  28. package/src/components/card.scss +391 -0
  29. package/src/components/cardHeaderWithOptions.scss +14 -0
  30. package/src/components/changeLanguage.scss +3 -0
  31. package/src/components/charts.scss +186 -0
  32. package/src/components/checkbox.scss +53 -0
  33. package/src/components/checkpoint.scss +64 -0
  34. package/src/components/citizenInfoLabel.scss +14 -0
  35. package/src/components/custombtn.scss +11 -0
  36. package/src/components/datatable.scss +134 -0
  37. package/src/components/datewrap.scss +21 -0
  38. package/src/components/detailscard.scss +6 -0
  39. package/src/components/detailscontainer.scss +13 -0
  40. package/src/components/filters.scss +98 -0
  41. package/src/components/grey.scss +3 -0
  42. package/src/components/hoc/InboxComposer.scss +115 -0
  43. package/src/components/hoc/index.scss +1 -0
  44. package/src/components/howItWorks.scss +71 -0
  45. package/src/components/imageviewer.scss +33 -0
  46. package/src/components/inboxv2/InboxLinks.scss +59 -0
  47. package/src/components/inboxv2/horizontalNav.scss +224 -0
  48. package/src/components/inboxv2/inboxSearch.scss +116 -0
  49. package/src/components/inboxv2/inboxSearchComposer.scss +169 -0
  50. package/src/components/inboxv2/index.scss +5 -0
  51. package/src/components/inboxv2/searchComponentTable.scss +45 -0
  52. package/src/components/info-banner.scss +35 -0
  53. package/src/components/inputotp.scss +15 -0
  54. package/src/components/keynote.scss +27 -0
  55. package/src/components/languageSelector.scss +23 -0
  56. package/src/components/loader.scss +96 -0
  57. package/src/components/loaderWithGap.scss +45 -0
  58. package/src/components/map.scss +30 -0
  59. package/src/components/menu.scss +0 -0
  60. package/src/components/metricsTable.scss +29 -0
  61. package/src/components/multiLink.scss +88 -0
  62. package/src/components/multiSelectDropdown.scss +78 -0
  63. package/src/components/navbar.scss +321 -0
  64. package/src/components/plusMinus.scss +15 -0
  65. package/src/components/popup.scss +16 -0
  66. package/src/components/radiobtn.scss +46 -0
  67. package/src/components/ratingstar.scss +33 -0
  68. package/src/components/roundedLabel.scss +10 -0
  69. package/src/components/searchAction.scss +20 -0
  70. package/src/components/sectionalDropdown.scss +43 -0
  71. package/src/components/selectdropdown.scss +175 -0
  72. package/src/components/sidebar.scss +141 -0
  73. package/src/components/staticDynamicMessages.scss +107 -0
  74. package/src/components/staticSideBar.scss +27 -0
  75. package/src/components/statushighlight.scss +17 -0
  76. package/src/components/submiterrors.scss +11 -0
  77. package/src/components/summary.scss +29 -0
  78. package/src/components/table.scss +201 -0
  79. package/src/components/tag.scss +27 -0
  80. package/src/components/telephone.scss +17 -0
  81. package/src/components/textfields.scss +96 -0
  82. package/src/components/toast.scss +31 -0
  83. package/src/components/toggleSwitch.scss +41 -0
  84. package/src/components/topbar.scss +153 -0
  85. package/src/components/uploadcomponents.scss +102 -0
  86. package/src/digitv2/components/ErrorMessage.scss +6 -0
  87. package/src/digitv2/components/FormComposerV2.scss +126 -0
  88. package/src/digitv2/components/actionLinkV2.scss +7 -0
  89. package/src/digitv2/components/actionbarV2.scss +108 -0
  90. package/src/digitv2/components/appContainerV2.scss +55 -0
  91. package/src/digitv2/components/backButtonV2.scss +26 -0
  92. package/src/digitv2/components/bannerV2.scss +120 -0
  93. package/src/digitv2/components/bodyContainerV2.scss +39 -0
  94. package/src/digitv2/components/breakLineV2.scss +7 -0
  95. package/src/digitv2/components/cardV2.scss +385 -0
  96. package/src/digitv2/components/checkboxV2.scss +61 -0
  97. package/src/digitv2/components/checkpointV2.scss +71 -0
  98. package/src/digitv2/components/collapseAndExpandGroups.scss +60 -0
  99. package/src/digitv2/components/dateWrapV2.scss +12 -0
  100. package/src/digitv2/components/displayPhotosV2.scss +33 -0
  101. package/src/digitv2/components/headerV2.scss +6 -0
  102. package/src/digitv2/components/infoBannerV2.scss +37 -0
  103. package/src/digitv2/components/keynoteV2.scss +35 -0
  104. package/src/digitv2/components/loaderV2.scss +90 -0
  105. package/src/digitv2/components/mobileNumberV2.scss +33 -0
  106. package/src/digitv2/components/multiSelectDropdownV2.scss +92 -0
  107. package/src/digitv2/components/noresultsfoundV2.scss +11 -0
  108. package/src/digitv2/components/otpInputV2.scss +15 -0
  109. package/src/digitv2/components/popUpV2.scss +24 -0
  110. package/src/digitv2/components/radiobtnV2.scss +51 -0
  111. package/src/digitv2/components/ratingV2.scss +33 -0
  112. package/src/digitv2/components/selectdropdownV2.scss +180 -0
  113. package/src/digitv2/components/tagV2.scss +28 -0
  114. package/src/digitv2/components/telephoneV2.scss +18 -0
  115. package/src/digitv2/components/textInputV2.scss +123 -0
  116. package/src/digitv2/components/textareaV2.scss +11 -0
  117. package/src/digitv2/components/uploadFileV2.scss +146 -0
  118. package/src/digitv2/index.scss +166 -0
  119. package/src/digitv2/pages/employee/index.scss +35 -0
  120. package/src/digitv2/pages/employee/workbench.scss +1112 -0
  121. package/src/digitv2/typography.scss +241 -0
  122. package/src/index.scss +868 -0
  123. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +8 -0
  124. package/src/pages/citizen/DocumentList.scss +305 -0
  125. package/src/pages/citizen/Events.scss +47 -0
  126. package/src/pages/citizen/HomePageWrapper.scss +158 -0
  127. package/src/pages/citizen/SurveyList.scss +22 -0
  128. package/src/pages/citizen/citizenDocument.scss +22 -0
  129. package/src/pages/citizen/container.scss +19 -0
  130. package/src/pages/citizen/payment/payment-type.scss +3 -0
  131. package/src/pages/citizen/updatePropertyNumber.scss +46 -0
  132. package/src/pages/employee/EmployeeLogin.scss +7 -0
  133. package/src/pages/employee/cardfix.scss +13 -0
  134. package/src/pages/employee/container.scss +72 -0
  135. package/src/pages/employee/dss.scss +266 -0
  136. package/src/pages/employee/form-fields.scss +24 -0
  137. package/src/pages/employee/iframe.scss +66 -0
  138. package/src/pages/employee/inbox.scss +593 -0
  139. package/src/pages/employee/index.scss +613 -0
  140. package/src/pages/employee/login.scss +351 -0
  141. package/src/pages/employee/oldMobileInbox.scss +5 -0
  142. package/src/pages/employee/popupmodule.scss +34 -0
  143. package/src/pages/employee/response.scss +3 -0
  144. package/src/pages/employee/sandbox.scss +1293 -0
  145. package/src/pages/employee/scroll-table.scss +119 -0
  146. package/src/pages/employee/searchaction.scss +14 -0
  147. package/src/pages/employee/surveys.scss +273 -0
  148. package/src/pages/employee/tooltip.scss +36 -0
  149. package/src/pages/employee/updateNumber.scss +13 -0
  150. package/svg/arrowdown.svg +1 -0
  151. package/svg/arrowleft.svg +1 -0
  152. package/svg/calendar.svg +1 -0
  153. package/svg/camera.svg +4 -0
  154. package/svg/check.svg +4 -0
  155. package/svg/close.svg +4 -0
  156. package/svg/error.svg +4 -0
  157. package/svg/error2.svg +5 -0
  158. package/svg/searchicon.svg +4 -0
  159. package/svg/starempty.svg +4 -0
  160. package/svg/starfilled.svg +5 -0
  161. package/svg/success.svg +4 -0
@@ -0,0 +1,224 @@
1
+ @import url("../../digitv2/index.scss");
2
+
3
+ .horizontal-nav {
4
+ @extend .light-paper-primary;
5
+ @extend .light-text-color-primary;
6
+ overflow: auto;
7
+ display: flex;
8
+ margin-top: 3rem;
9
+
10
+ .menu-item {
11
+ border: 10px;
12
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
13
+ cursor: pointer;
14
+ text-decoration: none;
15
+ margin: 0px;
16
+ padding: 0px;
17
+ outline: none;
18
+ font-size: 16px;
19
+ position: relative;
20
+ color: rgb(95, 92, 98);
21
+ line-height: 48px;
22
+ transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
23
+ min-height: 48px;
24
+ white-space: initial;
25
+ background: none;
26
+
27
+ .icon {
28
+ @extend .light-background;
29
+ display: block;
30
+ color: rgb(117, 117, 117);
31
+ fill: rgb(117, 117, 117);
32
+ height: 21px !important;
33
+ width: 21px !important;
34
+ float: left;
35
+ margin-top: 12px;
36
+ }
37
+
38
+ .edit-btn-ico {
39
+ height: 17px;
40
+ width: 17px;
41
+ margin-top: 16px;
42
+ }
43
+
44
+ .icon+.menu-label {
45
+ margin-left: 36px;
46
+ overflow: hidden;
47
+ text-overflow: ellipsis;
48
+ white-space: nowrap;
49
+ }
50
+ }
51
+
52
+ @media (min-width: 780px) {
53
+ .sidebar-list {
54
+ padding-right: 30px;
55
+ padding-left: 30px;
56
+ background-color: #EEEEEE;
57
+ border: 1px solid #DDDDDD;
58
+ border-radius: 8px 8px 0px 0px;
59
+
60
+ &.active {
61
+ font-weight: 600;
62
+ border-bottom: 3px solid theme(colors.primary.main);
63
+
64
+ background-color: #FFFFFF;
65
+
66
+ .menu-label {
67
+ color: theme(colors.primary.main);
68
+ }
69
+
70
+ .icon {
71
+ fill: theme(colors.primary.main);
72
+ }
73
+ }
74
+
75
+ .submenu-container {
76
+ cursor: pointer;
77
+ display: flex;
78
+ flex-direction: column;
79
+
80
+ .sidebar-link {
81
+ display: flex;
82
+ justify-content: space-between;
83
+ align-items: center;
84
+ padding: 15px!important;
85
+ padding-top: 20px!important;
86
+ svg {
87
+ width: 24px !important;
88
+ height: 24px !important;
89
+ color: rgb(117, 117, 117);
90
+ fill: rgb(117, 117, 117);
91
+ }
92
+
93
+ .actions {
94
+ .tooltip {
95
+ margin-left: 16px;
96
+ }
97
+ }
98
+ }
99
+
100
+ .actions {
101
+ display: flex;
102
+ align-items: center;
103
+ overflow: hidden !important;
104
+
105
+ span {
106
+ margin-left: 13px;
107
+ line-height: 48px;
108
+ white-space: nowrap;
109
+ color: #5f5c62;
110
+ overflow: hidden;
111
+ text-overflow: ellipsis;
112
+ }
113
+ }
114
+ }
115
+ .submenu-container:first-child {
116
+ margin-top:5px;
117
+ .employee-search-input{
118
+ margin-left:16px !important;
119
+ }
120
+ }
121
+ }
122
+ .sidebar-list-search-form {
123
+ padding-right: 30px;
124
+ padding-left: 30px;
125
+
126
+ &.active {
127
+ font-weight: 600;
128
+ border-bottom: 3px solid theme(colors.primary.main);
129
+
130
+ background-color: #FFFFFF;
131
+
132
+ .menu-label {
133
+ color: theme(colors.primary.main);
134
+ }
135
+
136
+ .icon {
137
+ fill: theme(colors.primary.main);
138
+ }
139
+ }
140
+
141
+ .submenu-container {
142
+ cursor: pointer;
143
+ display: flex;
144
+ flex-direction: column;
145
+
146
+ .sidebar-link {
147
+ display: flex;
148
+ justify-content: space-between;
149
+ align-items: center;
150
+ padding: 15px!important;
151
+ padding-top: 20px!important;
152
+ svg {
153
+ width: 24px !important;
154
+ height: 24px !important;
155
+ color: rgb(117, 117, 117);
156
+ fill: rgb(117, 117, 117);
157
+ }
158
+
159
+ .actions {
160
+ .tooltip {
161
+ margin-left: 16px;
162
+ }
163
+ }
164
+ }
165
+
166
+ .actions {
167
+ display: flex;
168
+ align-items: center;
169
+ overflow: hidden !important;
170
+
171
+ span {
172
+ margin-left: 13px;
173
+ line-height: 48px;
174
+ white-space: nowrap;
175
+ color: #5f5c62;
176
+ overflow: hidden;
177
+ text-overflow: ellipsis;
178
+ }
179
+ }
180
+ }
181
+ .submenu-container:first-child {
182
+ margin-top:5px;
183
+ .employee-search-input{
184
+ margin-left:16px !important;
185
+ }
186
+ }
187
+ }
188
+
189
+
190
+ .dropdown-link {
191
+ .actions {
192
+ display: flex;
193
+ padding: 1em;
194
+
195
+ svg {
196
+ width: 21px;
197
+ height: 21px;
198
+ color: rgb(117, 117, 117);
199
+ fill: rgb(117, 117, 117);
200
+ }
201
+
202
+ span {
203
+ color: #5f5c62;
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+
210
+
211
+
212
+ .sidebar-link {
213
+ display: flex;
214
+ justify-content: space-between;
215
+ align-items: center;
216
+ padding: 15px!important;
217
+ padding-top: 20px!important;
218
+ svg {
219
+ width: 24px !important;
220
+ height: 26px !important;
221
+ color: rgb(117, 117, 117);
222
+ fill: rgb(117, 117, 117);
223
+ }
224
+ }
@@ -0,0 +1,116 @@
1
+ @import url("../../digitv2/index.scss");
2
+
3
+ .search-wrapper {
4
+ @extend .light-text-color-primary;
5
+ @extend .light-paper-primary;
6
+ height: 100%;
7
+ width: 100%;
8
+ padding: 1rem;
9
+
10
+ .popup-label {
11
+ display: flex;
12
+ font-size: large;
13
+ @extend .light-text-color-primary;
14
+ .header {
15
+ @extend .light-text-color-primary;
16
+ width: 100%;
17
+ font-weight: normal;
18
+ font-size: large;
19
+ .icon {
20
+ @extend .light-primary;
21
+ margin-right: 12px;
22
+ margin-top: 5px;
23
+ }
24
+ }
25
+ }
26
+
27
+ .filter-header-wrapper {
28
+ @extend .light-text-color-primary;
29
+ display: grid;
30
+ grid-template-columns: 15% 1fr 15%;
31
+ height: 3rem;
32
+ margin-bottom: 1rem;
33
+ .icon-refresh {
34
+ display: flex;
35
+ align-items: center;
36
+ justify-content: center;
37
+ border: 1px solid #00000017;
38
+ cursor: pointer;
39
+ svg {
40
+ height: 60%;
41
+ width: 40%;
42
+ }
43
+ }
44
+ .label {
45
+ @extend .light-text-color-primary;
46
+ display: flex;
47
+ align-items: center;
48
+ justify-content: flex-start;
49
+ }
50
+
51
+ @media (min-width: 1024px) {
52
+ .label {
53
+ font-size: 24px;
54
+ }
55
+ }
56
+
57
+ @media (max-width: 1024px) {
58
+ .label {
59
+ font-size: 16px;
60
+ }
61
+ }
62
+
63
+ .icon-filter {
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: flex-start;
67
+ }
68
+ }
69
+
70
+ .search-field-wrapper {
71
+ display: grid;
72
+ row-gap: 0.25rem;
73
+ column-gap: 1rem;
74
+ &.inbox {
75
+ grid-template-columns: repeat(3, 1fr);
76
+ &.filter {
77
+ display: flex;
78
+ flex-direction: column;
79
+ }
80
+ }
81
+ &.search {
82
+ grid-template-columns: repeat(4, 1fr);
83
+ }
84
+ .text-input{
85
+ @extend .light-primary;
86
+ }
87
+ }
88
+
89
+ .search-button-wrapper {
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: flex-end;
93
+ gap: 1rem;
94
+ padding-top: 8px;
95
+ &.inbox {
96
+ grid-column: 2 / span 2;
97
+ &.filter {
98
+ button {
99
+ width: 100%;
100
+ }
101
+ }
102
+ }
103
+ &.search {
104
+ grid-column: 3 / span 2;
105
+ }
106
+ }
107
+ }
108
+
109
+ @screen sm {
110
+ .search-wrapper {
111
+ .search-field-wrapper {
112
+ display: flex;
113
+ flex-direction: column;
114
+ }
115
+ }
116
+ }
@@ -0,0 +1,169 @@
1
+ @import url("../../digitv2/index.scss");
2
+
3
+ .inbox-search-wrapper {
4
+ /*
5
+ TODO NABEEL/ANIL Removed these since it creates issues in search screen
6
+ @extend .light-background;
7
+
8
+ */
9
+ height: 100%;
10
+ .inbox-search-component-wrapper {
11
+ /*
12
+ TODO NABEEL/ANIL Removed these since it creates issues in search screen
13
+ @extend .light-background;
14
+
15
+ */ height: 100%;
16
+ width: 100%;
17
+ .sections-parent {
18
+ /*
19
+ TODO NABEEL/ANIL Removed these since it creates issues in search screen
20
+ @extend .light-background;
21
+
22
+ */ height: 100%;
23
+ display: grid;
24
+ grid-template-columns: 20% 1fr;
25
+ gap : 1rem;
26
+ &.inbox {
27
+ @extend .light-text-color-primary;
28
+ .links{
29
+ @extend .light-primary;
30
+ @extend .light-paper-primary;
31
+ .text{
32
+ @extend .light-text-color-primary;
33
+ }
34
+ .inbox-links-icon{
35
+ color:theme(colors.primary.main);
36
+ fill:theme(colors.primary.main);
37
+ path{
38
+ fill:theme(colors.primary.main);
39
+ }
40
+ }
41
+ }
42
+ }
43
+ &.search {
44
+ display: flex;
45
+ flex-direction: column;
46
+ .section {
47
+ &.links {
48
+ display: none;
49
+ }
50
+ &.filter {
51
+ display: none;
52
+ }
53
+ }
54
+ .search-wrapper {
55
+ @extend .light-paper-primary;
56
+ .search-field-wrapper.search.custom-both-clear-search{
57
+ .search-button-wrapper.search {
58
+ grid-column: initial;
59
+ }
60
+ .search-button-wrapper{
61
+ .link-label{
62
+ @extend .light-primary;
63
+ white-space:initial;
64
+ }
65
+ .submit-bar {
66
+ @extend .light-primary-button;
67
+ width: 60%;
68
+ }
69
+ }
70
+ }
71
+ }
72
+ }
73
+ &.download {
74
+ grid-template-columns: 100%
75
+ }
76
+ .section {
77
+ @extend .light-paper-primary;
78
+ @extend .light-text-color-primary;
79
+ min-height: 10rem;
80
+ /* background-color: white; */
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ border-radius: 4px;
85
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
86
+ &.search-results {
87
+ min-height: 0;
88
+ }
89
+ &.links {
90
+ height: 100%;
91
+ color : theme(colors.primary.main);
92
+ .inbox-search-links-component {
93
+ height: 100% !important;
94
+ width: 100%;
95
+ }
96
+ }
97
+ &.filter {
98
+ @extend .light-paper-primary;
99
+ @extend .light-text-color-primary;
100
+ height: fit-content;
101
+ }
102
+ &.tab{
103
+ display: block;
104
+ background-color: #eee;
105
+ box-shadow: none;
106
+ .search-wrapper{
107
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
108
+ }
109
+ }
110
+ }
111
+ }
112
+ }
113
+ }
114
+
115
+ @screen sm {
116
+ .employee-main-application-details-for-modal {
117
+ padding: 0 !important;
118
+ }
119
+ .inbox-search-wrapper {
120
+ .inbox-search-component-wrapper {
121
+ .sections-parent {
122
+ display: flex;
123
+ flex-direction : column;
124
+ .section {
125
+ &.search-results {
126
+ }
127
+ &.links {
128
+ }
129
+ &.filter {
130
+
131
+ }
132
+ &.as-modal {
133
+ position : fixed;
134
+ top : 0;
135
+ height : 100vh;
136
+ width : 100vw;
137
+ }
138
+ }
139
+ }
140
+ }
141
+ }
142
+ }
143
+
144
+ .global-search-results-table-wrapper{
145
+ display: flex;
146
+ flex-direction: column;
147
+ align-items: flex-end;
148
+ }
149
+
150
+ .global-search-results-table{
151
+ margin-bottom: 1.5rem;
152
+
153
+
154
+ @media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
155
+ /* Media query for tablets */
156
+ min-width: 27.5rem;
157
+ }
158
+
159
+ @media (max-aspect-ratio: 9/16) {
160
+ /* Media query for mobile */
161
+ min-width: 100%;
162
+ width: 100%;
163
+ }
164
+
165
+ @media (min-aspect-ratio: 3/4) {
166
+ /* Media query for desktop */
167
+ min-width: 37.5rem;
168
+ }
169
+ }
@@ -0,0 +1,5 @@
1
+ @import "./horizontalNav.scss";
2
+ @import "./InboxLinks.scss";
3
+ @import "./inboxSearch.scss";
4
+ @import "./searchComponentTable.scss";
5
+ @import "./inboxSearchComposer.scss";
@@ -0,0 +1,45 @@
1
+ .search-component-table {
2
+ width: 100%;
3
+ display: block;
4
+ overflow-x: auto;
5
+ overflow-y:hidden;
6
+ table {
7
+ th {
8
+ background-color: #FFFFFF;
9
+ .tooltip {
10
+ min-width: 80px;
11
+ }
12
+ }
13
+ tr {
14
+ td {
15
+ span {
16
+ white-space: pre;
17
+ min-width: 80px;
18
+ .tooltip {
19
+ position: relative;
20
+ min-width: 80px;
21
+ display: inline-block;
22
+ margin-left: 16px;
23
+ .tooltiptext {
24
+ visibility: hidden;
25
+ background-color: #555;
26
+ color: #fff;
27
+ text-align: left;
28
+ border-radius: 6px;
29
+ padding: 5px;
30
+ position: absolute;
31
+ z-index: 1;
32
+ bottom: 125%;
33
+ left: 50%;
34
+ margin-left: -60px;
35
+ opacity: 0;
36
+ transition: opacity 0.3s;
37
+ width: 30rem;
38
+ }
39
+ }
40
+
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
@@ -0,0 +1,35 @@
1
+ .info-banner-wrap {
2
+ @apply bg-link-normal bg-opacity-25 m-sm p-md;
3
+ max-width: 960px;
4
+
5
+ background-color: #C7E0F1;
6
+ border-radius: 4px;
7
+ svg {
8
+ margin-top: 5px;
9
+ @apply rounded-full;
10
+ }
11
+
12
+ div {
13
+ @apply flex;
14
+ }
15
+
16
+ h2 {
17
+ @apply text-heading-m text-link-normal mb-md font-bold ml-sm;
18
+ }
19
+
20
+ p {
21
+ @apply text-body-l text-link-normal whitespace-pre-line;
22
+ }
23
+ }
24
+
25
+ @screen dt {
26
+ .info-banner-wrap {
27
+ h2 {
28
+ @apply text-heading-m-dt;
29
+ }
30
+
31
+ p {
32
+ @apply text-body-l-dt;
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,15 @@
1
+ .input-otp-wrap {
2
+ @apply mb-lg;
3
+
4
+ input {
5
+ @apply border-2 border-solid border-input-border outline-none h-10 w-10 text-form-field text-text-primary mr-sm mb-sm text-center;
6
+ }
7
+ input::-webkit-outer-spin-button,
8
+ input::-webkit-inner-spin-button {
9
+ -webkit-appearance: none;
10
+ margin: 0;
11
+ }
12
+ input[type="number"] {
13
+ -moz-appearance: textfield;
14
+ }
15
+ }
@@ -0,0 +1,27 @@
1
+ .key-note-pair {
2
+ @apply mb-md;
3
+
4
+ h3 {
5
+ margin-bottom: 4px;
6
+ @apply font-bold text-text-primary text-heading-s;
7
+ }
8
+
9
+ p {
10
+ @apply text-text-primary text-body-l;
11
+ }
12
+
13
+ .caption {
14
+ @apply text-body-l text-text-secondary;
15
+ }
16
+ }
17
+
18
+ @screen dt {
19
+ .key-note-pair {
20
+ p {
21
+ @apply text-body-l-dt;
22
+ }
23
+ .caption {
24
+ @apply text-body-l-dt text-text-secondary;
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,23 @@
1
+ .language-selector {
2
+ @apply flex flex-wrap;
3
+ }
4
+
5
+ .language-selector div:not(:first-child) {
6
+ margin-left: 10px;
7
+ }
8
+ .bannerCard .language-button-container button {
9
+ width: 6.2rem;
10
+ height: 2.5rem;
11
+ }
12
+ .bannerCard .customBtn {
13
+ border-color: theme(colors.text.secondary);
14
+ }
15
+ .bannerCard .customBtn:focus {
16
+ outline: none;
17
+ }
18
+ .bannerCard .customBtn-selected {
19
+ border-color: transparent;
20
+ }
21
+ .bannerCard .bannerHeader p {
22
+ font-size: 19px;
23
+ }