@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,96 @@
1
+ .page-loader,
2
+ .module-loader {
3
+ text-align: center;
4
+ }
5
+
6
+ .page-loader {
7
+ padding-top: 88px;
8
+ }
9
+
10
+ .module-loader {
11
+ padding: 16px;
12
+ }
13
+
14
+ @keyframes ldio-pjg92h09b2o {
15
+ 0% {
16
+ transform: translate(-50%, -50%) rotate(0deg);
17
+ }
18
+
19
+ 100% {
20
+ transform: translate(-50%, -50%) rotate(360deg);
21
+ }
22
+ }
23
+
24
+ .ldio-pjg92h09b2o div {
25
+ position: absolute;
26
+ width: 52px;
27
+ height: 52px;
28
+ border: 12px solid theme(colors.secondary);
29
+ border-top-color: transparent;
30
+ border-radius: 50%;
31
+ }
32
+
33
+ .ldio-pjg92h09b2o div {
34
+ animation: ldio-pjg92h09b2o 1s linear infinite;
35
+ top: 50px;
36
+ left: 50px;
37
+ }
38
+
39
+ .loadingio-spinner-rolling-faewnb8ux8 {
40
+ width: 48px;
41
+ height: 48px;
42
+ display: inline-block;
43
+ overflow: hidden;
44
+ background: none;
45
+ }
46
+
47
+ .ldio-pjg92h09b2o {
48
+ width: 100%;
49
+ height: 100%;
50
+ position: relative;
51
+ transform: translateZ(0) scale(0.48);
52
+ backface-visibility: hidden;
53
+ transform-origin: 0 0;
54
+ /* see note above */
55
+ }
56
+
57
+ .ldio-pjg92h09b2o div {
58
+ box-sizing: content-box;
59
+ }
60
+
61
+ /*
62
+ .loader {
63
+ position: absolute;
64
+ left: 50%;
65
+ top: 50%;
66
+ z-index: 1;
67
+ width: 80px;
68
+ height: 80px;
69
+ margin: -80px 0 0 -40px;
70
+ border: 8px solid #f3f3f3;
71
+ border-radius: 50%;
72
+ border-top-color: #3498db;
73
+ -webkit-animation: loader-spin 1s linear infinite;
74
+ animation: loader-spin 1s linear infinite;
75
+ }
76
+
77
+ @-webkit-keyframes loader-spin {
78
+ 0% {
79
+ -webkit-transform: rotate(0deg);
80
+ }
81
+
82
+ 100% {
83
+ -webkit-transform: rotate(360deg);
84
+ }
85
+ }
86
+
87
+ @keyframes loader-spin {
88
+ 0% {
89
+ transform: rotate(0deg);
90
+ }
91
+
92
+ 100% {
93
+ transform: rotate(360deg);
94
+ }
95
+ }
96
+ */
@@ -0,0 +1,45 @@
1
+ .bg-loader-with-gap-container {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ height: 100%;
6
+ width: 100%;
7
+ display: flex;
8
+ flex-direction: column;
9
+ background-color: rgba(0, 0, 0, 0.7);
10
+ position: fixed;
11
+ top: 0;
12
+ left: 0;
13
+ z-index: 99999;
14
+
15
+ .bg-loader {
16
+ border: 0.5rem solid rgb(255, 255, 255);
17
+ border-top: 0.5rem solid rgba(80, 76, 76, 0);
18
+ border-radius: 50%;
19
+ width: 3.125rem;
20
+ height: 3.125rem;
21
+ animation: spin 2s linear infinite;
22
+ }
23
+
24
+ .bg-loader-inner {
25
+ border: 1px solid rgb(255, 255, 255);
26
+ border-radius: 50%;
27
+ width: 100%;
28
+ height: 100%;
29
+ }
30
+
31
+ .bg-loader-text {
32
+ color: whitesmoke;
33
+ padding-top: 1.25rem;
34
+ }
35
+ }
36
+
37
+ @keyframes spin {
38
+ 0% {
39
+ transform: rotate(0deg);
40
+ }
41
+
42
+ 100% {
43
+ transform: rotate(360deg);
44
+ }
45
+ }
@@ -0,0 +1,30 @@
1
+ .map-wrap {
2
+ @apply pb-lg;
3
+ }
4
+
5
+ .map {
6
+ width: 100%;
7
+ height: 384px;
8
+ overflow: visible;
9
+ position: relative;
10
+ }
11
+
12
+ .map-search-bar-wrap {
13
+ border-radius: 4px;
14
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
15
+ margin-bottom: 4px;
16
+ display: flex;
17
+ width: 100%;
18
+ }
19
+
20
+ .map-search-bar-icon {
21
+ @apply inline h-6 w-6 m-sm;
22
+ }
23
+
24
+ .map-search-bar {
25
+ @apply block outline-none text-form-field text-text-primary h-10 w-full !important;
26
+ }
27
+
28
+ .map-search-bar:focus {
29
+ border: none;
30
+ }
File without changes
@@ -0,0 +1,29 @@
1
+ .metricsTable {
2
+ @apply bg-white px-md pt-md pb-lg shadow-card;
3
+ max-width: 440px;
4
+ border-radius: 4px;
5
+
6
+ .row {
7
+ @apply flex justify-between;
8
+ height: 80px;
9
+ width: 100%;
10
+ }
11
+
12
+ .lower_red {
13
+ @apply inline;
14
+ color: rgb(229, 77, 66);
15
+ }
16
+
17
+ .upper_green {
18
+ @apply inline;
19
+ color: theme(colors.success);
20
+ }
21
+ }
22
+
23
+ .chart-metric-wrapper{
24
+ display: flex;
25
+ align-items: baseline;
26
+ flex-wrap: wrap;
27
+ margin-top: 15px;
28
+ justify-content: space-evenly;
29
+ }
@@ -0,0 +1,88 @@
1
+ .multilink-labelWrap{
2
+ top: 73px;
3
+ @apply flex items-center align-middle text-center m-md absolute right-0 z-10;
4
+ }
5
+
6
+ .multilink-link-button{
7
+ margin: 0;
8
+ @apply text-heading-s text-primary-light
9
+ }
10
+
11
+ .multilink-optionWrap{
12
+ right: 0;
13
+ top:110px;
14
+ width: max-content;
15
+ @apply absolute shadow-card bg-white m-md z-10;
16
+
17
+ .multilink-option{
18
+
19
+ svg{
20
+ margin-top: auto;
21
+ margin-bottom: auto;
22
+ @apply mx-sm
23
+ }
24
+
25
+ &:hover{
26
+ @apply bg-grey-mid cursor-pointer;
27
+ }
28
+ @apply p-md;
29
+ }
30
+ }
31
+ .overCard{
32
+ top: 23px;
33
+ }
34
+
35
+ .multilink-block-wrapper{
36
+ @apply relative;
37
+ .multilink-labelWrap{
38
+ margin: 0 !important;
39
+ top: unset;
40
+ @apply relative text-text-primary !important;
41
+ svg{
42
+ fill: theme(colors.text.secondary);
43
+ }
44
+ span{
45
+ @apply text-text-primary !important;
46
+ }
47
+ }
48
+ .multilink-optionWrap{
49
+ top: 8px;
50
+ right: -50%;
51
+ @apply block !important;
52
+ }
53
+ }
54
+
55
+ @screen dt {
56
+
57
+ .multilink-block-wrapper{
58
+ .multilink-optionWrap{
59
+ right: 0 !important;
60
+ }
61
+ }
62
+
63
+ .multilink-labelWrap{
64
+ right: 20%;
65
+ top: 80px;
66
+ }
67
+
68
+ .multilink-optionWrap{
69
+ right: 20%;
70
+ top: 110px;
71
+ @apply shadow-card rounded-sm;
72
+ }
73
+ }
74
+
75
+ .reports-download-btn{
76
+ justify-content: flex-end;
77
+ position: unset;
78
+ }
79
+
80
+ .reports-options-download{
81
+ position: absolute;
82
+ justify-content: flex-end;
83
+ float: right;
84
+ right:0%;
85
+ display: flex;
86
+ flex-direction: row;
87
+ top:2rem;
88
+ }
@@ -0,0 +1,78 @@
1
+ .multi-select-dropdown-wrap{
2
+ @apply relative text-form-field text-text-primary w-full;
3
+ max-width: 540px;
4
+ .master, .master-active{
5
+ @apply relative border border-solid border-input-border h-10 w-full;
6
+ input[type=text]{
7
+ @apply absolute top-0 left-0 p-sm pl-sm min-h-full min-w-full opacity-0;
8
+ &:focus{
9
+ @apply outline-none;
10
+ }
11
+ }
12
+ .label{
13
+ @apply flex justify-between p-sm w-full h-full;
14
+ svg{
15
+ @apply h-6 w-6;
16
+ }
17
+ }
18
+
19
+ &:hover{
20
+ @apply border-2 border-solid border-primary-main;
21
+ }
22
+ }
23
+
24
+ .master-active{
25
+ @apply border-2 border-primary-main;
26
+ input[type=text]{
27
+ @apply opacity-100;
28
+ }
29
+ .label{
30
+ @apply hidden;
31
+ }
32
+ }
33
+
34
+ .server{
35
+
36
+ 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);
37
+ top:40px;
38
+
39
+ max-height:20vmax;
40
+ overflow: scroll;
41
+ @apply absolute min-w-full z-20;
42
+ div{
43
+ @apply flex w-full bg-white;
44
+ justify-content: flex-start;
45
+ align-items: center;
46
+ &:hover{
47
+ @apply bg-grey-mid;
48
+ }
49
+ input{
50
+ height: 44px;
51
+ @apply absolute min-w-full opacity-0 z-20 cursor-pointer;
52
+ }
53
+ p{
54
+ padding: 12px;
55
+ margin-top: 5px;
56
+ margin-bottom: 5px;
57
+ @apply text-form-field text-text-primary;
58
+ }
59
+ .custom-checkbox{
60
+ height: 28px;
61
+ width: 28px;
62
+ @apply border border-solid border-input-border m-sm;
63
+ svg{
64
+ @apply opacity-0 z-10;
65
+ }
66
+ }
67
+ input:checked ~ .custom-checkbox,
68
+ input:hover ~ .custom-checkbox {
69
+ @apply border-2 border-primary-main;
70
+ }
71
+
72
+ input:checked ~ .custom-checkbox svg {
73
+ @apply opacity-100;
74
+ }
75
+
76
+ }
77
+ }
78
+ }
@@ -0,0 +1,321 @@
1
+ .navbar {
2
+ @apply text-white bg-secondary p-md w-full;
3
+ position: fixed;
4
+ z-index: 9999;
5
+
6
+ img {
7
+ display: inline-block;
8
+ min-width: 78px;
9
+ height: 24px;
10
+ }
11
+ .nav {
12
+ display: flex;
13
+ justify-content: space-between;
14
+ }
15
+ .nav-wrapper {
16
+ display: flex;
17
+ @media (min-width: 780px) {
18
+ .hamburger-span {
19
+ display: none;
20
+ }
21
+ }
22
+ }
23
+
24
+ h3 {
25
+ @apply inline-block border-l border-solid border-white pl-sm ml-sm;
26
+ }
27
+ }
28
+
29
+ .img-circle {
30
+ border-radius: 50%;
31
+ }
32
+
33
+ .profile-section {
34
+ height: auto;
35
+ display: flex;
36
+ flex-direction: column;
37
+ align-items: center;
38
+ padding-top: 30px;
39
+ background-color: theme(colors.white);
40
+
41
+ img {
42
+ width: 89px;
43
+ height: 88px;
44
+ margin: 0px auto 16px;
45
+ }
46
+
47
+ .label-container {
48
+ .label-text {
49
+ color: #767676;
50
+ }
51
+ &.name-Profile {
52
+ .label-text {
53
+ padding: 0 1rem;
54
+ word-break: break-word;
55
+ margin-bottom: 0.5rem;
56
+ letter-spacing: 0.6px;
57
+ font-weight: 700;
58
+ font-size: 18px;
59
+ color: theme(colors.text.primary);
60
+ }
61
+ }
62
+ }
63
+ .profile-divider {
64
+ border-top: 1px solid theme(colors.border);
65
+ margin-left: 20px;
66
+ margin-right: 20px;
67
+ width: 90%;
68
+ margin-top: 1rem;
69
+ }
70
+ }
71
+
72
+ .drawer-list {
73
+ @apply pt-md;
74
+ margin-bottom: 2rem;
75
+ position: relative;
76
+ min-height: 1px;
77
+ overflow: auto;
78
+ .menu-item {
79
+ border: 10px;
80
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
81
+ cursor: pointer;
82
+ text-decoration: none;
83
+ margin: 0px;
84
+ padding: 0px;
85
+ outline: none;
86
+ font-size: 16px;
87
+ position: relative;
88
+ color: rgb(95, 92, 98);
89
+ line-height: 48px;
90
+ transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
91
+ min-height: 48px;
92
+ white-space: initial;
93
+ background: none;
94
+ .icon {
95
+ display: block;
96
+ color: rgb(117, 117, 117);
97
+ fill: rgb(117, 117, 117);
98
+ height: 21px;
99
+ width: 21px;
100
+ float: left;
101
+ margin-top: 12px;
102
+ }
103
+ .edit-btn-ico{
104
+ height: 17px;
105
+ width: 17px;
106
+ margin-top: 16px;
107
+ }
108
+ .icon + .menu-label {
109
+ margin-left: 36px;
110
+ text-overflow: ellipsis;
111
+ white-space: nowrap;
112
+ }
113
+ }
114
+ .sidebar-list {
115
+ padding-right: 16px;
116
+ padding-left: 16px;
117
+ &.active {
118
+ border-left: 5px solid theme(colors.primary.main);
119
+ .menu-label {
120
+ color: theme(colors.primary.main);
121
+ }
122
+ .icon {
123
+ fill: theme(colors.primary.main);
124
+ }
125
+ }
126
+
127
+ .submenu-container {
128
+ cursor: pointer;
129
+ display: flex;
130
+ flex-direction: column;
131
+
132
+ .sidebar-link {
133
+ display: flex;
134
+ justify-content: space-between;
135
+ align-items: center;
136
+ svg {
137
+ width: 21px;
138
+ height: 21px;
139
+ color: rgb(117, 117, 117);
140
+ fill: rgb(117, 117, 117);
141
+ }
142
+ }
143
+ .actions {
144
+ display: flex;
145
+ align-items: center;
146
+ overflow: hidden !important;
147
+
148
+ span {
149
+ margin-left: 13px;
150
+ line-height: 48px;
151
+ white-space: nowrap;
152
+ color: #5f5c62;
153
+ overflow: hidden;
154
+ text-overflow: ellipsis;
155
+ }
156
+ input {
157
+ border: none;
158
+ outline: none;
159
+ margin-left: 16px;
160
+ padding: 0.5em;
161
+ color: #5f5c62;
162
+ }
163
+ }
164
+ }
165
+ }
166
+
167
+ .dropdown-link {
168
+ .actions {
169
+ display: flex;
170
+ padding: 1em;
171
+ svg {
172
+ width: 21px;
173
+ height: 21px;
174
+ color: rgb(117, 117, 117);
175
+ fill: rgb(117, 117, 117);
176
+ }
177
+ span {
178
+ color: #5f5c62;
179
+ }
180
+ }
181
+ }
182
+ }
183
+
184
+ .drawer-desktop {
185
+ overflow: auto;
186
+ .menu-item {
187
+ border: 10px;
188
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
189
+ cursor: pointer;
190
+ text-decoration: none;
191
+ margin: 0px;
192
+ padding: 0px;
193
+ outline: none;
194
+ font-size: 16px;
195
+ position: relative;
196
+ color: rgb(95, 92, 98);
197
+ line-height: 48px;
198
+ transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
199
+ min-height: 48px;
200
+ white-space: initial;
201
+ background: none;
202
+ .icon {
203
+ display: block;
204
+ color: rgb(117, 117, 117);
205
+ fill: rgb(117, 117, 117);
206
+ height: 21px !important;
207
+ width: 21px !important;
208
+ float: left;
209
+ margin-top: 12px;
210
+ }
211
+ .edit-btn-ico {
212
+ height: 17px;
213
+ width: 17px;
214
+ margin-top: 16px;
215
+ }
216
+ .icon + .menu-label {
217
+ margin-left: 36px;
218
+ overflow: hidden;
219
+ text-overflow: ellipsis;
220
+ white-space: nowrap;
221
+ }
222
+ }
223
+ @media (min-width: 780px) {
224
+ .sidebar-list {
225
+ padding-right: 16px;
226
+ padding-left: 16px;
227
+ &.active {
228
+ border-left: 5px solid theme(colors.primary.main);
229
+ padding-left: 11px;
230
+ .menu-label {
231
+ color: theme(colors.primary.main);
232
+ }
233
+ .icon {
234
+ fill: theme(colors.primary.main);
235
+ }
236
+ }
237
+
238
+ .submenu-container {
239
+ margin-left: 1.5rem;
240
+ cursor: pointer;
241
+ display: flex;
242
+ flex-direction: column;
243
+
244
+ .sidebar-link {
245
+ display: flex;
246
+ justify-content: space-between;
247
+ align-items: center;
248
+ svg {
249
+ width: 21px;
250
+ height: 21px;
251
+ color: rgb(117, 117, 117);
252
+ fill: rgb(117, 117, 117);
253
+ }
254
+ .actions {
255
+ .tooltip {
256
+ margin-left: 16px;
257
+ }
258
+ }
259
+ }
260
+ .actions {
261
+ display: flex;
262
+ align-items: center;
263
+ overflow: hidden !important;
264
+
265
+ span {
266
+ margin-left: 13px;
267
+ line-height: 48px;
268
+ white-space: nowrap;
269
+ color: #5f5c62;
270
+ overflow: hidden;
271
+ text-overflow: ellipsis;
272
+ }
273
+ }
274
+ }
275
+ }
276
+
277
+ .dropdown-link {
278
+ .actions {
279
+ display: flex;
280
+ padding: 1em;
281
+ svg {
282
+ width: 21px;
283
+ height: 21px;
284
+ color: rgb(117, 117, 117);
285
+ fill: rgb(117, 117, 117);
286
+ }
287
+ span {
288
+ color: #5f5c62;
289
+ }
290
+ }
291
+ }
292
+ }
293
+ }
294
+
295
+ /* .navbar-header{
296
+ @apply text-navbarheader float-left px-sm
297
+ }
298
+
299
+ .navbar-subheader{
300
+ @apply font-light px-sm border-solid border-l border-white border-opacity-100
301
+ }*/
302
+
303
+ .side-bar-footer {
304
+ width: 200px;
305
+ margin-left: 50px;
306
+ margin-top: 24px;
307
+ margin-bottom: 16px;
308
+ position: relative;
309
+ }
310
+
311
+ .digit-footer {
312
+ @apply flex h-4 mb-sm;
313
+ img {
314
+ @apply mr-sm;
315
+ }
316
+ }
317
+
318
+ .sidebar-list-footer {
319
+ position: fixed;
320
+ bottom: 0;
321
+ }
@@ -0,0 +1,15 @@
1
+ .PlusMinus {
2
+ text-align: center;
3
+ display: flex;
4
+ align-content: center;
5
+ justify-content: center;
6
+ }
7
+ .PlusMinusbutton{
8
+ border: 1px solid theme(colors.border);
9
+ background-color: theme(colors.grey.mid);
10
+ color: theme(colors.text.secondary);
11
+ font-size: 27px;
12
+ font-weight: 400;
13
+ text-align: center;
14
+ width: 40px;
15
+ }
@@ -0,0 +1,16 @@
1
+ .popup-wrap {
2
+ background: rgba(0, 0, 0, 0.7);
3
+ @apply flex fixed w-full h-full overflow-auto top-0 left-0 min-h-screen;
4
+ z-index: 10000;
5
+ }
6
+
7
+ @screen dt {
8
+ .popup-wrap {
9
+ background: rgba(0, 0, 0, 0.7);
10
+ @apply min-h-screen;
11
+ }
12
+ }
13
+
14
+ .popup-close-icon{
15
+ @apply flex justify-end;
16
+ }