@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
Binary file
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@selco/installation-ui-css",
3
+ "version": "1.0.0",
4
+ "license": "MIT",
5
+ "main": "dist/index.css",
6
+ "author": "Adithya Katuku",
7
+ "engines": {
8
+ "node": ">=14"
9
+ },
10
+ "cssConfig": {
11
+ "prefix": ""
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "scripts": {
17
+ "start": "gulp build",
18
+ "build:prod": "NODE_ENV=production gulp build",
19
+ "prepublish": "yarn build:prod",
20
+ "deploy": "gulp && cp -R svg example && cp -R img example && gh-pages -d example"
21
+ },
22
+ "browserslist": [
23
+ "> 3%",
24
+ "last 2 versions"
25
+ ],
26
+ "style": "./dist/index.css",
27
+ "dependencies": {
28
+ "node-sass": "4.14.1",
29
+ "normalize.css": "8.0.1",
30
+ "postcss-scss": "3.0.5",
31
+ "tailwindcss": "1.9.6"
32
+ },
33
+ "devDependencies": {
34
+ "autoprefixer": "10.4.14",
35
+ "cssnano": "4.1.11",
36
+ "gh-pages": "3.2.3",
37
+ "gulp": "4.0.2",
38
+ "gulp-clean": "0.4.0",
39
+ "gulp-clean-css": "4.3.0",
40
+ "gulp-livereload": "4.0.2",
41
+ "gulp-postcss": "9.0.1",
42
+ "gulp-rename": "2.0.0",
43
+ "gulp-sass": "4.1.1",
44
+ "postcss": "8.4.26",
45
+ "postcss-cli": "8.3.1",
46
+ "postcss-header": "2.0.0",
47
+ "postcss-import": "12.0.1",
48
+ "postcss-prefixer": "2.1.3",
49
+ "postcss-preset-env": "6.7.1",
50
+ "postcss-scss": "3.0.5",
51
+ "sass": "^1.26.11"
52
+ },
53
+ "files": [
54
+ "dist/index.min.css",
55
+ "dist/index.css",
56
+ "svg/**/*.svg",
57
+ "img/**/*.png",
58
+ "src/**/*.scss",
59
+ "src/**/*.css"
60
+ ],
61
+ "keywords": [
62
+ "digit",
63
+ "egov",
64
+ "dpg",
65
+ "digit-ui",
66
+ "css"
67
+ ]
68
+ }
@@ -0,0 +1,46 @@
1
+ .CardBasedOptions {
2
+ box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16);
3
+ @apply bg-white mb-md px-sm py-md mx-sm rounded w-full;
4
+ .headContent {
5
+ @apply flex justify-between mb-lg;
6
+ h2 {
7
+ @apply text-heading-s font-bold text-text-primary;
8
+ }
9
+ p {
10
+ @apply text-link text-primary-main font-medium cursor-pointer;
11
+ }
12
+ }
13
+
14
+ .mainContent {
15
+ @apply flex justify-evenly;
16
+ .CardBasedOptionsMainChildOption {
17
+ width: 25%;
18
+ @apply text-center;
19
+ .ChildOptionImageWrapper {
20
+ margin: auto !important;
21
+ background: rgba(244, 119, 56, 0.12);
22
+ mix-blend-mode: normal;
23
+ padding-top: 14px;
24
+ @apply h-12 w-12 rounded-full cursor-pointer;
25
+ svg {
26
+ height: 20px;
27
+ width: 20px;
28
+ fill: theme(colors.primary.main);
29
+ margin: auto;
30
+ }
31
+ }
32
+ .ChildOptionName {
33
+ font-size: 12px;
34
+ line-height: 14px;
35
+ padding-top: 1rem;
36
+ }
37
+ }
38
+ }
39
+ }
40
+
41
+ @screen dt {
42
+ .CardBasedOptions {
43
+ width: calc(50% - 16px);
44
+ @apply p-md;
45
+ }
46
+ }
@@ -0,0 +1,60 @@
1
+ .CitizenHomeCard {
2
+ @apply bg-white mx-md p-md mb-lg;
3
+
4
+ .header {
5
+ @apply flex font-bold text-heading-l text-text-primary justify-between pb-sm;
6
+
7
+ svg {
8
+ width: 33px;
9
+ height: 33px;
10
+ }
11
+ }
12
+
13
+ .links {
14
+ @apply text-heading-s text-primary-main;
15
+
16
+ a {
17
+ @apply block pb-sm;
18
+ color: theme(colors.primary.main) !important;
19
+ text-decoration: none !important;
20
+ }
21
+ }
22
+ }
23
+
24
+ @screen dt {
25
+ .citizenAllServiceGrid {
26
+ display: flex;
27
+ flex-direction: column;
28
+ justify-content: center;
29
+ flex: 1;
30
+ }
31
+
32
+ .CitizenHomeCard {
33
+ @apply p-lg;
34
+ .header {
35
+ @apply pb-lg text-heading-l-dt;
36
+ svg {
37
+ @apply w-12 h-12;
38
+ }
39
+ }
40
+
41
+ .links {
42
+ @apply grid grid-cols-4 gap-px;
43
+ .linksWrapper {
44
+ height: 25px;
45
+ margin-bottom: 0.5em;
46
+ }
47
+ a {
48
+ @apply pb-md;
49
+ padding-left: 0.2em;
50
+ margin-bottom: 16px;
51
+ width: 100%;
52
+ overflow: hidden;
53
+ text-overflow: ellipsis;
54
+ min-width: 0;
55
+ color: theme(colors.primary.main) !important;
56
+ text-decoration: none !important;
57
+ }
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,17 @@
1
+ .ellipsis-menu-wrap{
2
+ @apply relative;
3
+
4
+ .menu{
5
+ box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
6
+ @apply absolute right-0 bg-white z-30;
7
+ .item{
8
+ @apply flex items-center justify-between p-sm;
9
+ &:hover{
10
+ @apply bg-grey-mid cursor-pointer;
11
+ }
12
+ svg {
13
+ margin-right: 10px;
14
+ }
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,10 @@
1
+ .EventCalendarView{
2
+ .MonthViewInEventCalendar{
3
+ @apply bg-primary-main text-legend text-white font-medium text-center py-sm;
4
+ }
5
+
6
+ .DateViewInEventCalendar{
7
+ @apply bg-grey-mid text-heading-l font-bold text-primary-main text-center py-md;
8
+ }
9
+
10
+ }
@@ -0,0 +1,64 @@
1
+ .searchInputFAQs {
2
+ @apply mr-lg;
3
+ margin-bottom: 10px;
4
+ input{
5
+ margin-bottom: 0;
6
+ background: border-box;
7
+ @apply pr-xl;
8
+ }
9
+ }
10
+
11
+ .faq-page{
12
+ width: 92%;
13
+ margin: 16px;
14
+ }
15
+
16
+ .faqs{
17
+ cursor: pointer;
18
+ .faq-question{
19
+ font-weight: 400;
20
+ margin: 16px;
21
+ background: #fff;
22
+ justify-content: space-between;
23
+ display: flex;
24
+ font-size: 16px;
25
+ }
26
+
27
+ .faqicon{
28
+ float: right;
29
+ }
30
+
31
+ .faq-answer{
32
+ background: #fff;
33
+ overflow: hidden;
34
+ margin: 5px;
35
+ @apply text-form-field text-text-secondary mb-sm;
36
+
37
+ span {
38
+ display: block;
39
+ font-size: 14px;
40
+ font-weight: 400;
41
+ margin: 0px 12px 5px
42
+ }
43
+ }
44
+ .cs-box-border {
45
+ height: 1px;
46
+ position: relative;
47
+ border-bottom: 1px solid lightgray;;
48
+ background: lightgray;
49
+ margin-left: 16px;
50
+ margin-right: 16px;
51
+ }
52
+ }
53
+
54
+ .faq-list{
55
+ background: #fff;
56
+ margin: 5px 0;
57
+ padding-top: 4px;
58
+ padding-bottom: 4px;
59
+ }
60
+
61
+ .rotate {
62
+ transform: rotate(90deg);
63
+ }
64
+
@@ -0,0 +1,72 @@
1
+ .OnGroundEventCard{
2
+ box-shadow: 0px 1px 2px 0px #00000029;
3
+ @apply bg-white mx-sm mb-md p-md cursor-pointer;
4
+
5
+ .EventCalendarView{
6
+ width: 100px;
7
+ @apply inline-block mr-md;
8
+ }
9
+
10
+ .EventDetails{
11
+ width: calc( 100% - 116px );
12
+ @apply inline-block align-top;
13
+
14
+ h2{
15
+ @apply text-caption-m font-bold mb-md text-text-primary;
16
+ }
17
+
18
+ .EventLocation{
19
+ @apply flex mb-md;
20
+ svg{
21
+ @apply h-4 w-4;
22
+ }
23
+ p{
24
+ @apply text-body-s text-text-primary ml-sm;
25
+ }
26
+ }
27
+
28
+ .EventTime{
29
+ @apply flex ;
30
+ svg{
31
+ @apply h-4 w-4;
32
+ }
33
+ p{
34
+ @apply text-body-s text-text-primary ml-sm;
35
+ }
36
+ }
37
+
38
+ .EventCategory{
39
+ p{
40
+ @apply text-body-s text-text-primary ;
41
+ }
42
+ }
43
+
44
+ }
45
+
46
+
47
+ }
48
+
49
+ @screen dt{
50
+ .OnGroundEventCard{
51
+ .EventDetails{
52
+ .EventLocation{
53
+ p{
54
+ @apply text-body-s-dt;
55
+ }
56
+ }
57
+
58
+ .EventTime{
59
+ p{
60
+ @apply text-body-s-dt;
61
+ }
62
+ }
63
+
64
+ .EventCategory{
65
+ p{
66
+ @apply text-body-s-dt;
67
+ }
68
+ }
69
+
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,42 @@
1
+ .PageBasedInputWrapper {
2
+ .SubmitBar {
3
+ z-index: 60;
4
+ @apply p-sm fixed w-full bottom-0 left-0 text-right bg-white;
5
+ }
6
+ .SubmitBarInCardInDesktopView {
7
+ @apply hidden;
8
+ }
9
+ label {
10
+ margin-left: 0 !important;
11
+ }
12
+ }
13
+ .digit-page-based-input-wrapper {
14
+ .digit-page-based-submit-bar {
15
+ @apply hidden;
16
+ }
17
+ .digit-submit-bar-container {
18
+ z-index: 60;
19
+ @apply p-sm fixed w-full bottom-0 left-0 text-right bg-white;
20
+ }
21
+ }
22
+ @screen dt {
23
+ .digit-page-based-input-wrapper {
24
+ .digit-submit-bar-container {
25
+ @apply hidden;
26
+ }
27
+ }
28
+ .PageBasedInputWrapper {
29
+ .SubmitBar {
30
+ @apply hidden;
31
+ }
32
+ .SubmitBarInCardInDesktopView {
33
+ @apply block;
34
+ }
35
+ .card {
36
+ max-width: 960px;
37
+ }
38
+ button {
39
+ max-width: 240px;
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,15 @@
1
+ .popupModalHeading{
2
+ @apply flex gap-3 mb-lg;
3
+ .headingIconAndLabel{
4
+ @apply flex gap-3 items-center;
5
+ svg{
6
+ @apply w-6 h-4;
7
+ }
8
+ h3{
9
+ @apply text-heading-l font-bold;
10
+ }
11
+ }
12
+ .popupResetFormButton{
13
+ @apply p-sm border border-solid border-text-primary border-opacity-25 self-center;
14
+ }
15
+ }
@@ -0,0 +1,58 @@
1
+ .PropertySearchForm {
2
+ .pt-search-action {
3
+ @apply w-full;
4
+ display: flex;
5
+ margin-right: 10px;
6
+ justify-content: end;
7
+ align-items: center;
8
+ .pt-search-action-submit button {
9
+ width: 100% !important;
10
+ }
11
+ .pt-search-action-reset {
12
+ text-align: right;
13
+ cursor: pointer;
14
+ }
15
+ }
16
+
17
+ .PropertySearchFormSwitcher{
18
+ border-bottom: 1px solid theme(colors.border);
19
+ cursor: pointer;
20
+ margin-bottom: 20px;
21
+ display: flex;
22
+ .non-selected {
23
+ color: theme(colors.text.secondary);
24
+ font-weight: 400;
25
+ }
26
+ .selected {
27
+ color: theme(colors.primary.main);
28
+ font-weight: 700;
29
+ padding-bottom: 10px;
30
+ border-bottom: 2px solid theme(colors.primary.main);
31
+ }
32
+ span {
33
+ margin-right: 20px;
34
+ }
35
+ }
36
+
37
+
38
+ .form-field {
39
+ width: 30% !important;
40
+ margin-bottom: 20px;
41
+ }
42
+ @media (min-width: 780px) {
43
+ .pt-form-field{
44
+ width: 30% !important;
45
+ margin-bottom: 20px;
46
+ }
47
+ }
48
+ @media (max-width: 780px) {
49
+ .form-field{
50
+ width: 100% !important;
51
+ margin-bottom: 15px;
52
+ }
53
+ .pt-form-field{
54
+ width: 100% !important;
55
+ margin-bottom: 15px;
56
+ }
57
+ }
58
+ }
@@ -0,0 +1,56 @@
1
+ .search-form-wrapper{
2
+ @apply flex flex-wrap justify-between bg-white mb-lg py-lg pl-lg;
3
+ .form-field{
4
+ width: calc( 25% - 16px );
5
+ @apply inline-block mr-md align-middle;
6
+ }
7
+ .SubmitAndClearAllContainer{
8
+ @apply w-full;
9
+ .submit{
10
+ right: 36px;
11
+ margin-top: 22px;
12
+ margin-left: -16px !important;
13
+ @apply flex flex-row-reverse items-center w-full align-middle text-center !important;
14
+ button{
15
+ margin: 0;
16
+ @apply inline-block w-1/4 !important;
17
+ }
18
+ p{
19
+ @apply cursor-pointer text-link text-focus w-1/4 inline-block ;
20
+ }
21
+ }
22
+ }
23
+ .submit{
24
+ right: 36px;
25
+ margin-top: 22px;
26
+ @apply inline align-middle text-center !important;
27
+ button{
28
+ margin: 0;
29
+ @apply inline-block w-full !important;
30
+ }
31
+ p{
32
+ @apply cursor-pointer text-link text-focus w-full inline-block ;
33
+ }
34
+ }
35
+ .pt-property-search{
36
+ justify-content: unset;
37
+ }
38
+
39
+ }
40
+
41
+ @media (min-width: 780px) {
42
+ .search-form-wrapper{
43
+ .pt-form-field{
44
+ width: 30% !important;
45
+ margin-bottom: 20px;
46
+ }
47
+ }
48
+ }
49
+ @media (max-width: 780px) {
50
+ .search-form-wrapper{
51
+ .pt-form-field{
52
+ width: 100% !important;
53
+ margin-bottom: 15px;
54
+ }
55
+ }
56
+ }
@@ -0,0 +1,10 @@
1
+ .SearchOnRadioButton{
2
+ svg{
3
+ fill: theme(colors.text.secondary);
4
+ width: 24px;
5
+ height: 24px;
6
+ top: 8px;
7
+ right: 8px;
8
+ @apply absolute;
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ .StandaloneSearchBar{
2
+ @apply bg-white flex rounded-3xl px-md py-sm w-full;
3
+ svg{
4
+ fill: theme(colors.text.secondary);
5
+ @apply mr-md;
6
+ }
7
+ input{
8
+ @apply w-full mr-md outline-none;
9
+ }
10
+ }
@@ -0,0 +1,68 @@
1
+ .timeline-container {
2
+ @apply flex;
3
+ margin: 0px 8px 15px;
4
+ .timeline-checkpoint {
5
+ @apply relative flex-1;
6
+ z-index: 1;
7
+ }
8
+
9
+ .timeline-content {
10
+ @apply flex flex-col items-center;
11
+
12
+ span {
13
+ text-align: center;
14
+ color: white;
15
+ }
16
+
17
+ .secondary-color {
18
+ color: theme(colors.text.primary);
19
+ padding: 5px;
20
+ font-size: small;
21
+ }
22
+ }
23
+
24
+ .line {
25
+ @apply absolute;
26
+ top: 12px;
27
+ left: calc(50% + 8px);
28
+ right: calc(-50% + 8px);
29
+ border-top: 4px solid theme(colors.border);
30
+ z-index: -1;
31
+ }
32
+
33
+ .circle {
34
+ width: 24px;
35
+ height: 24px;
36
+ background-color: #B1B4B6;
37
+ border-radius: 50%;
38
+ text-align: center;
39
+ }
40
+
41
+ .active {
42
+ background-color: theme(colors.primary.main);
43
+ border-color: theme(colors.primary.main);
44
+ }
45
+ }
46
+
47
+ .TLComments{
48
+ max-width: 360px;
49
+ @apply mb-sm p-sm bg-grey-light;
50
+ h3{
51
+ @apply font-bold text-caption-m;
52
+ }
53
+ p{
54
+ @apply text-body-l;
55
+ }
56
+ }
57
+
58
+ @screen dt{
59
+ .TLComments{
60
+ width: 360px;
61
+ h3{
62
+ @apply text-caption-m-dt;
63
+ }
64
+ p{
65
+ @apply text-body-l-dt;
66
+ }
67
+ }
68
+ }
@@ -0,0 +1,13 @@
1
+ .WhatsNewCard{
2
+ box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16);
3
+ @apply rounded bg-white border-primary-main border-l-4 border-solid p-sm;
4
+ h2{
5
+ @apply text-body-l text-text-primary font-medium mb-xs;
6
+ }
7
+ p{
8
+ @apply text-form-field text-text-secondary mb-sm;
9
+ }
10
+ a{
11
+ @apply block text-form-field text-primary-main mb-sm
12
+ }
13
+ }
@@ -0,0 +1,3 @@
1
+ .action-link {
2
+ @apply text-primary-main text-text-btn mr-lg !important;
3
+ }