@gnar-engine/cli 1.0.3 → 1.0.5
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/bootstrap/deploy.localdev.yml +44 -30
- package/bootstrap/secrets.localdev.yml +20 -14
- package/bootstrap/services/control/src/config.js +4 -0
- package/bootstrap/services/{agent → page}/Dockerfile +3 -3
- package/bootstrap/services/page/package.json +16 -0
- package/bootstrap/services/page/src/app.js +50 -0
- package/bootstrap/services/page/src/commands/block.handler.js +94 -0
- package/bootstrap/services/page/src/commands/page.handler.js +167 -0
- package/bootstrap/services/page/src/config.js +62 -0
- package/bootstrap/services/page/src/controllers/block.http.controller.js +87 -0
- package/bootstrap/services/page/src/controllers/message.controller.js +51 -0
- package/bootstrap/services/page/src/controllers/page.http.controller.js +89 -0
- package/bootstrap/services/page/src/policies/block.policy.js +50 -0
- package/bootstrap/services/page/src/policies/page.policy.js +49 -0
- package/bootstrap/services/page/src/schema/page.schema.js +139 -0
- package/bootstrap/services/page/src/services/block.service.js +83 -0
- package/bootstrap/services/page/src/services/page.service.js +83 -0
- package/bootstrap/services/portal/Dockerfile +7 -10
- package/bootstrap/services/portal/README.md +66 -15
- package/bootstrap/services/portal/index.html +13 -0
- package/bootstrap/services/portal/nginx.conf +5 -12
- package/bootstrap/services/portal/package.json +27 -53
- package/bootstrap/services/portal/public/vite.svg +1 -0
- package/bootstrap/services/portal/react-router.config.js +7 -0
- package/bootstrap/services/portal/src/App.jsx +16 -0
- package/bootstrap/services/portal/src/assets/gnar-engine-white-logo.svg +9 -0
- package/bootstrap/services/portal/src/assets/icon-agent.svg +6 -0
- package/bootstrap/services/portal/src/assets/icon-cog.svg +4 -0
- package/bootstrap/services/portal/src/assets/icon-delete.svg +3 -0
- package/bootstrap/services/portal/src/assets/icon-home.svg +3 -0
- package/bootstrap/services/portal/src/assets/icon-padlock.svg +3 -0
- package/bootstrap/services/portal/src/assets/icon-page.svg +6 -0
- package/bootstrap/services/portal/src/assets/icon-reports.svg +3 -0
- package/bootstrap/services/portal/src/assets/icon-user.svg +3 -0
- package/bootstrap/services/portal/src/assets/icon-users.svg +3 -0
- package/bootstrap/services/portal/src/assets/login-green-rad-back-1.jpg +0 -0
- package/bootstrap/services/portal/src/assets/react.svg +1 -0
- package/bootstrap/services/portal/src/components/CrudList/CrudList.jsx +85 -0
- package/bootstrap/services/portal/src/components/CrudList/CrudList.less +59 -0
- package/bootstrap/services/portal/src/{ui/customSelect → components/CustomSelect}/CustomSelect.jsx +21 -3
- package/bootstrap/services/portal/src/components/LoginForm/LoginForm.jsx +58 -0
- package/bootstrap/services/portal/src/components/PageBlockSwitch/PageBlockSwitch.jsx +129 -0
- package/bootstrap/services/portal/src/components/Sidebar/Sidebar.jsx +33 -0
- package/bootstrap/services/portal/src/components/Sidebar/Sidebar.less +37 -0
- package/bootstrap/services/portal/src/components/Topbar/Topbar.jsx +19 -0
- package/bootstrap/services/portal/src/components/Topbar/Topbar.less +22 -0
- package/bootstrap/services/portal/src/components/UserInfo/UserInfo.jsx +33 -0
- package/bootstrap/services/portal/src/components/UserInfo/UserInfo.less +21 -0
- package/bootstrap/services/portal/src/css/style.css +446 -742
- package/bootstrap/services/portal/src/data/pages.data.js +10 -0
- package/bootstrap/services/portal/src/elements/CustomSelect/CustomSelect.jsx +65 -0
- package/bootstrap/services/portal/src/{ui/customSelect/customSelect.less → elements/CustomSelect/CustomSelect.less} +17 -7
- package/bootstrap/services/portal/src/elements/ImageInput/ImageInput.jsx +115 -0
- package/bootstrap/services/portal/src/elements/ImageInput/ImageInput.less +43 -0
- package/bootstrap/services/portal/src/elements/ImageMultiInput/ImageMultiInput.jsx +124 -0
- package/bootstrap/services/portal/src/elements/ImageMultiInput/ImageMultiInput.less +0 -0
- package/bootstrap/services/portal/src/elements/Repeater/Repeater.jsx +52 -0
- package/bootstrap/services/portal/src/elements/Repeater/Repeater.less +70 -0
- package/bootstrap/services/portal/src/elements/RichTextInput/RichTextInput.jsx +18 -0
- package/bootstrap/services/portal/src/elements/RichTextInput/RichTextInput.less +37 -0
- package/bootstrap/services/portal/src/elements/SaveButton/SaveButton.jsx +45 -0
- package/bootstrap/services/portal/src/elements/SelectRepeater/SelectRepeater.jsx +63 -0
- package/bootstrap/services/portal/src/elements/SelectRepeater/SelectRepeater.less +23 -0
- package/bootstrap/services/portal/src/elements/TextInput/TextInput.jsx +17 -0
- package/bootstrap/services/portal/src/layouts/Card/Card.jsx +15 -0
- package/bootstrap/services/portal/src/layouts/PortalLayout/PortalLayout.jsx +29 -0
- package/bootstrap/services/portal/src/layouts/PortalLayout/PortalLayout.less +49 -0
- package/bootstrap/services/portal/src/main.jsx +51 -0
- package/bootstrap/services/portal/src/pages/BlockSinglePage/BlockSinglePage.jsx +277 -0
- package/bootstrap/services/portal/src/pages/BlocksPage/BlocksPage.jsx +23 -0
- package/bootstrap/services/portal/src/pages/DashboardPage/DashboardPage.jsx +11 -0
- package/bootstrap/services/portal/src/pages/DashboardPage/DashboardPage.less +0 -0
- package/bootstrap/services/portal/src/pages/LoginPage/LoginPage.jsx +21 -0
- package/bootstrap/services/portal/src/pages/LoginPage/LoginPage.less +51 -0
- package/bootstrap/services/portal/src/pages/PageSinglePage/PageSinglePage.jsx +338 -0
- package/bootstrap/services/portal/src/pages/PagesPage/PagesPage.jsx +23 -0
- package/bootstrap/services/portal/src/pages/UserSinglePage/UserSinglePage.jsx +9 -0
- package/bootstrap/services/portal/src/pages/UserSinglePage/UserSinglePage.less +0 -0
- package/bootstrap/services/portal/src/pages/UsersPage/UsersPage.jsx +25 -0
- package/bootstrap/services/portal/src/pages/UsersPage/UsersPage.less +0 -0
- package/bootstrap/services/portal/src/services/block.js +28 -0
- package/bootstrap/services/portal/src/services/client.js +67 -0
- package/bootstrap/services/portal/src/services/gravatar.js +14 -0
- package/bootstrap/services/portal/src/services/page.js +28 -0
- package/bootstrap/services/portal/src/services/storage.js +62 -0
- package/bootstrap/services/portal/src/services/user.js +41 -0
- package/bootstrap/services/portal/src/slices/authSlice.js +44 -14
- package/bootstrap/services/portal/src/store/configureStore.js +1 -3
- package/bootstrap/services/portal/src/style/cards.less +57 -0
- package/bootstrap/services/portal/src/{styles → style}/global.less +90 -45
- package/bootstrap/services/portal/src/style/icons.less +21 -0
- package/bootstrap/services/portal/src/style/inputs.less +52 -0
- package/bootstrap/services/portal/src/style/main.less +28 -0
- package/bootstrap/services/portal/src/utils/utils.js +9 -0
- package/bootstrap/services/portal/vite.config.js +12 -0
- package/bootstrap/services/user/Dockerfile +1 -1
- package/bootstrap/services/user/src/app.js +6 -1
- package/bootstrap/services/user/src/commands/user.handler.js +0 -3
- package/bootstrap/services/user/src/config.js +5 -1
- package/bootstrap/services/user/src/policies/user.policy.js +3 -1
- package/bootstrap/services/user/src/tests/commands/user.test.js +22 -0
- package/install-from-clone.sh +30 -0
- package/package.json +1 -1
- package/src/cli.js +8 -0
- package/src/config.js +2 -1
- package/src/dev/commands.js +10 -2
- package/src/dev/dev.service.js +167 -52
- package/src/provisioner/Dockerfile +27 -0
- package/src/provisioner/package.json +19 -0
- package/src/provisioner/src/app.js +56 -0
- package/src/provisioner/src/services/mongodb.js +58 -0
- package/src/provisioner/src/services/mysql.js +51 -0
- package/src/provisioner/src/services/secrets.js +84 -0
- package/src/scaffolder/commands.js +12 -5
- package/src/scaffolder/scaffolder.handler.js +256 -58
- package/templates/service/Dockerfile.hbs +4 -1
- package/templates/service/package.json.hbs +14 -16
- package/templates/service/src/app.js.hbs +53 -0
- package/templates/service/{commands → src/commands}/{{serviceName}}.handler.js.hbs +2 -3
- package/templates/service/src/mongodb.config.js.hbs +49 -0
- package/templates/service/{config.js.hbs → src/mysql.config.js.hbs} +10 -0
- package/{bootstrap/services/agent/src/schema/Agent.schema.js → templates/service/src/schema/{{serviceName}}.schema.js.hbs} +3 -3
- package/templates/service/src/services/mongodb.{{serviceName}}.service.js.hbs +70 -0
- package/bootstrap/services/agent/notes.md +0 -28
- package/bootstrap/services/agent/package.json +0 -16
- package/bootstrap/services/agent/src/app.js +0 -52
- package/bootstrap/services/agent/src/commands/agent.handler.js +0 -104
- package/bootstrap/services/agent/src/config.js +0 -52
- package/bootstrap/services/agent/src/controllers/http.controller.js +0 -44
- package/bootstrap/services/agent/src/controllers/message.controller.js +0 -51
- package/bootstrap/services/agent/src/db/migrations/01-init.js +0 -50
- package/bootstrap/services/agent/src/db/migrations/02-agent-service-init.js +0 -36
- package/bootstrap/services/agent/src/policies/agent.policy.js +0 -13
- package/bootstrap/services/agent/src/services/agent.service.js +0 -259
- package/bootstrap/services/agent/src/services/chatgpt.service.js +0 -46
- package/bootstrap/services/agent/src/services/manifest.service.js +0 -21
- package/bootstrap/services/portal/Dockerfile.remote +0 -40
- package/bootstrap/services/portal/public/favicon.ico +0 -0
- package/bootstrap/services/portal/public/gnar-white.png +0 -0
- package/bootstrap/services/portal/public/gnarengine-logo-black.png +0 -0
- package/bootstrap/services/portal/public/index.html +0 -43
- package/bootstrap/services/portal/public/logo192.png +0 -0
- package/bootstrap/services/portal/public/logo512.png +0 -0
- package/bootstrap/services/portal/public/manifest.json +0 -25
- package/bootstrap/services/portal/public/robots.txt +0 -3
- package/bootstrap/services/portal/src/App.js +0 -56
- package/bootstrap/services/portal/src/assets/Logo_Anchord_Black.svg +0 -1
- package/bootstrap/services/portal/src/assets/Logo_Anchord_Black_Green.svg +0 -1
- package/bootstrap/services/portal/src/assets/Logo_Anchord_White_Green.svg +0 -1
- package/bootstrap/services/portal/src/assets/activity.svg +0 -3
- package/bootstrap/services/portal/src/assets/arrow.svg +0 -3
- package/bootstrap/services/portal/src/assets/bin-white.svg +0 -3
- package/bootstrap/services/portal/src/assets/bin.svg +0 -3
- package/bootstrap/services/portal/src/assets/check.svg +0 -3
- package/bootstrap/services/portal/src/assets/chevron.svg +0 -3
- package/bootstrap/services/portal/src/assets/contact.svg +0 -3
- package/bootstrap/services/portal/src/assets/dots-vertical.svg +0 -5
- package/bootstrap/services/portal/src/assets/eye-off.svg +0 -3
- package/bootstrap/services/portal/src/assets/eye.svg +0 -4
- package/bootstrap/services/portal/src/assets/gnar-engine-black.svg +0 -47
- package/bootstrap/services/portal/src/assets/gnar-engine-white.svg +0 -47
- package/bootstrap/services/portal/src/assets/gnar_engine.svg +0 -3
- package/bootstrap/services/portal/src/assets/gnarengine-logo-black.png +0 -0
- package/bootstrap/services/portal/src/assets/home.svg +0 -3
- package/bootstrap/services/portal/src/assets/link.svg +0 -3
- package/bootstrap/services/portal/src/assets/lock.svg +0 -3
- package/bootstrap/services/portal/src/assets/package.svg +0 -4
- package/bootstrap/services/portal/src/assets/raffle.svg +0 -3
- package/bootstrap/services/portal/src/assets/settings.svg +0 -4
- package/bootstrap/services/portal/src/assets/shopping-bag.svg +0 -3
- package/bootstrap/services/portal/src/assets/user-black.svg +0 -3
- package/bootstrap/services/portal/src/assets/user.svg +0 -3
- package/bootstrap/services/portal/src/assets/users.svg +0 -3
- package/bootstrap/services/portal/src/assets/wallet.svg +0 -3
- package/bootstrap/services/portal/src/data/data.js +0 -70
- package/bootstrap/services/portal/src/features/attributeFormRow/AttributeFormRow.jsx +0 -32
- package/bootstrap/services/portal/src/features/billingShipping/BillingShipping.jsx +0 -160
- package/bootstrap/services/portal/src/features/crud/crudEdit.less +0 -230
- package/bootstrap/services/portal/src/features/crud/crudList.less +0 -134
- package/bootstrap/services/portal/src/features/crud/crudPage.less +0 -31
- package/bootstrap/services/portal/src/features/crudContact/CrudContactList.jsx +0 -108
- package/bootstrap/services/portal/src/features/crudContact/CrudContactSingle.jsx +0 -243
- package/bootstrap/services/portal/src/features/crudOrder/CrudOrderList.jsx +0 -109
- package/bootstrap/services/portal/src/features/crudOrder/CrudOrderSingle.jsx +0 -315
- package/bootstrap/services/portal/src/features/crudProducts/CrudProductList.jsx +0 -104
- package/bootstrap/services/portal/src/features/crudProducts/CrudProductSingle.jsx +0 -388
- package/bootstrap/services/portal/src/features/crudRaffles/CrudRafflesList.jsx +0 -104
- package/bootstrap/services/portal/src/features/crudRaffles/CrudRafflesSingle.jsx +0 -208
- package/bootstrap/services/portal/src/features/crudSubscription/CrudSubscriptionList.jsx +0 -110
- package/bootstrap/services/portal/src/features/crudSubscription/CrudSubscriptionSingle.jsx +0 -261
- package/bootstrap/services/portal/src/features/crudUser/CrudUserList.jsx +0 -107
- package/bootstrap/services/portal/src/features/crudUser/CrudUserSingle.jsx +0 -402
- package/bootstrap/services/portal/src/features/inventoryFormRow/InventoryFormRow.jsx +0 -30
- package/bootstrap/services/portal/src/features/lineItems/LineItems.jsx +0 -113
- package/bootstrap/services/portal/src/features/loginForm/LoginForm.jsx +0 -56
- package/bootstrap/services/portal/src/features/loginForm/loginForm.less +0 -56
- package/bootstrap/services/portal/src/features/notes/Notes.jsx +0 -18
- package/bootstrap/services/portal/src/features/passwordReset/PasswordResetForm.jsx +0 -96
- package/bootstrap/services/portal/src/features/passwordReset/PasswordResetRequestForm.jsx +0 -74
- package/bootstrap/services/portal/src/features/priceFormRow/PriceFormRow.jsx +0 -102
- package/bootstrap/services/portal/src/features/priceFormRow/priceFormRow.less +0 -24
- package/bootstrap/services/portal/src/features/raffleEntriesList/RaffleEntriesList.jsx +0 -99
- package/bootstrap/services/portal/src/features/raffleProductFormRow/RaffleProductFormRow.jsx +0 -46
- package/bootstrap/services/portal/src/features/sidebar/Sidebar.jsx +0 -64
- package/bootstrap/services/portal/src/features/sidebar/sidebar.less +0 -49
- package/bootstrap/services/portal/src/features/skus/Skus.jsx +0 -109
- package/bootstrap/services/portal/src/features/subscriptionSchedule/SubscriptionSchedule.jsx +0 -44
- package/bootstrap/services/portal/src/features/taxonomyFormRow/TaxonomyFormRow.jsx +0 -32
- package/bootstrap/services/portal/src/features/user/User.jsx +0 -54
- package/bootstrap/services/portal/src/features/user/user.less +0 -57
- package/bootstrap/services/portal/src/includes/utilities.js +0 -259
- package/bootstrap/services/portal/src/index.js +0 -14
- package/bootstrap/services/portal/src/layouts/CrudLayout.jsx +0 -50
- package/bootstrap/services/portal/src/layouts/LoginLayout.jsx +0 -17
- package/bootstrap/services/portal/src/layouts/PortalLayout.jsx +0 -48
- package/bootstrap/services/portal/src/layouts/loginLayout.less +0 -33
- package/bootstrap/services/portal/src/layouts/portalLayout.less +0 -67
- package/bootstrap/services/portal/src/pages/contacts/Contacts.jsx +0 -199
- package/bootstrap/services/portal/src/pages/dashboard/Dashboard.jsx +0 -17
- package/bootstrap/services/portal/src/pages/integrations/Integrations.jsx +0 -10
- package/bootstrap/services/portal/src/pages/login/Login.jsx +0 -15
- package/bootstrap/services/portal/src/pages/login/login.less +0 -10
- package/bootstrap/services/portal/src/pages/orders/Orders.jsx +0 -199
- package/bootstrap/services/portal/src/pages/passwordReset/PasswordResetPage.jsx +0 -15
- package/bootstrap/services/portal/src/pages/passwordResetRequest/PasswordResetRequestPage.jsx +0 -15
- package/bootstrap/services/portal/src/pages/payments/Payments.jsx +0 -10
- package/bootstrap/services/portal/src/pages/portal/Portal.jsx +0 -43
- package/bootstrap/services/portal/src/pages/products/Products.jsx +0 -212
- package/bootstrap/services/portal/src/pages/raffleEntries/RaffleEntries.jsx +0 -124
- package/bootstrap/services/portal/src/pages/raffles/Raffles.jsx +0 -186
- package/bootstrap/services/portal/src/pages/reports/Reports.jsx +0 -10
- package/bootstrap/services/portal/src/pages/settings/Settings.jsx +0 -10
- package/bootstrap/services/portal/src/pages/subscriptions/Subscriptions.jsx +0 -199
- package/bootstrap/services/portal/src/pages/users/Users.jsx +0 -193
- package/bootstrap/services/portal/src/pages/users/users.less +0 -25
- package/bootstrap/services/portal/src/styles/inputs.less +0 -157
- package/bootstrap/services/portal/src/styles/main.less +0 -26
- package/bootstrap/services/portal/src/ui/collapsible/Collapsible.jsx +0 -97
- package/bootstrap/services/portal/src/ui/collapsible/collapsible.less +0 -23
- package/bootstrap/services/portal/src/ui/customCheckbox/CustomCheckbox.jsx +0 -17
- package/bootstrap/services/portal/src/ui/customCheckbox/customCheckbox.less +0 -42
- package/bootstrap/services/portal/src/ui/customMultiSelect/CustomMultiSelect.jsx +0 -63
- package/bootstrap/services/portal/src/ui/customMultiSelect/CustomMultiSelectPeriod.jsx +0 -63
- package/bootstrap/services/portal/src/ui/goBack/GoBack.jsx +0 -19
- package/bootstrap/services/portal/src/ui/loader/Loader.jsx +0 -12
- package/bootstrap/services/portal/src/ui/pagination/Pagination.jsx +0 -23
- package/bootstrap/services/portal/src/ui/repeater/Repeater.jsx +0 -29
- package/bootstrap/services/portal/src/ui/saveButton/SaveButton.jsx +0 -69
- package/bootstrap/services/user/src/db/seeders/development/02-portal-admin-user.js +0 -27
- package/bootstrap/services/user/src/tests/user.test.js +0 -126
- package/templates/service/app.js.hbs +0 -38
- package/templates/service/schema/{{serviceName}}.schema.js.hbs +0 -14
- /package/bootstrap/services/portal/src/{ui/saveButton/saveButton.less → components/CustomSelect/CustomSelect.less} +0 -0
- /package/templates/service/{controllers → src/controllers}/http.controller.js.hbs +0 -0
- /package/templates/service/{controllers → src/controllers}/message.controller.js.hbs +0 -0
- /package/templates/service/{db → src/mysql.db}/migrations/01-init.js.hbs +0 -0
- /package/templates/service/{db → src/mysql.db}/migrations/02-{{lowerCase serviceName}}-service-init.js.hbs +0 -0
- /package/templates/service/{policies → src/policies}/{{serviceName}}.policy.js.hbs +0 -0
- /package/templates/service/{services/{{serviceName}}.service.js.hbs → src/services/mysql.{{serviceName}}.service.js.hbs} +0 -0
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
/* vars */
|
|
2
2
|
/* Fonts */
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
html {
|
|
4
|
+
background: #242424;
|
|
5
|
+
}
|
|
6
|
+
body,
|
|
7
|
+
body * {
|
|
8
|
+
font-family: ubuntu, sans-serif !important;
|
|
9
|
+
color: #ffffff;
|
|
6
10
|
font-size: 14px;
|
|
7
11
|
}
|
|
8
12
|
/* Global styles */
|
|
9
13
|
h1 {
|
|
10
14
|
margin-top: 0px;
|
|
11
|
-
|
|
12
|
-
font-
|
|
15
|
+
margin-bottom: 40px;
|
|
16
|
+
font-size: 18px;
|
|
17
|
+
font-weight: 400;
|
|
13
18
|
}
|
|
14
19
|
h2 {
|
|
15
|
-
font-size:
|
|
20
|
+
font-size: 14px;
|
|
16
21
|
font-weight: 500;
|
|
17
22
|
}
|
|
18
23
|
body {
|
|
@@ -23,10 +28,12 @@ body #root {
|
|
|
23
28
|
min-height: 100vh;
|
|
24
29
|
}
|
|
25
30
|
.separator {
|
|
31
|
+
display: inline-block;
|
|
26
32
|
margin-top: 20px;
|
|
27
33
|
margin-bottom: 20px;
|
|
28
34
|
height: 0px;
|
|
29
|
-
border-top: 1px solid #
|
|
35
|
+
border-top: 1px solid #3C3C3C;
|
|
36
|
+
width: 100%;
|
|
30
37
|
}
|
|
31
38
|
.content-wrap {
|
|
32
39
|
display: flex;
|
|
@@ -41,9 +48,9 @@ body #root {
|
|
|
41
48
|
padding-right: 20px;
|
|
42
49
|
}
|
|
43
50
|
.instruction {
|
|
44
|
-
font-size: 12px;
|
|
45
51
|
margin-top: 10px;
|
|
46
52
|
margin-bottom: 10px;
|
|
53
|
+
color: #D9D9D9;
|
|
47
54
|
}
|
|
48
55
|
.flex-row {
|
|
49
56
|
display: flex;
|
|
@@ -90,843 +97,409 @@ body #root {
|
|
|
90
97
|
gap: 20px;
|
|
91
98
|
}
|
|
92
99
|
.button.button-loading {
|
|
93
|
-
background: #
|
|
100
|
+
background: #3C3C3C !important;
|
|
94
101
|
cursor: not-allowed !important;
|
|
95
102
|
}
|
|
96
103
|
.button.button-loading:disabled {
|
|
97
104
|
cursor: not-allowed;
|
|
98
105
|
opacity: 0.5;
|
|
99
106
|
}
|
|
100
|
-
.
|
|
101
|
-
|
|
102
|
-
border: 1px solid #E4E4E4;
|
|
103
|
-
border-radius: 10px;
|
|
104
|
-
margin-top: 20px;
|
|
105
|
-
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
|
|
106
|
-
}
|
|
107
|
-
.card .card-header {
|
|
108
|
-
width: 100%;
|
|
109
|
-
background-color: #434343;
|
|
110
|
-
color: #FFFFFF;
|
|
111
|
-
border-top-left-radius: 10px;
|
|
112
|
-
border-top-right-radius: 10px;
|
|
113
|
-
display: flex;
|
|
114
|
-
justify-content: space-between;
|
|
115
|
-
}
|
|
116
|
-
.card .card-header h2 {
|
|
117
|
-
padding: 20px;
|
|
118
|
-
margin: 0px;
|
|
119
|
-
}
|
|
120
|
-
.card .card-content {
|
|
121
|
-
padding: 20px;
|
|
122
|
-
}
|
|
123
|
-
input[type="text"],
|
|
124
|
-
input[type="password"],
|
|
125
|
-
input[type="email"],
|
|
126
|
-
input[type="number"] {
|
|
127
|
-
width: 100%;
|
|
128
|
-
padding: 6px 10px;
|
|
129
|
-
margin: 10px 0;
|
|
130
|
-
border: 1px solid #E4E4E4;
|
|
131
|
-
background: #FFFFFF;
|
|
132
|
-
border-radius: 25px;
|
|
133
|
-
box-sizing: border-box;
|
|
134
|
-
font-size: 14px;
|
|
135
|
-
color: #3C5063;
|
|
136
|
-
}
|
|
137
|
-
input:focus {
|
|
138
|
-
outline: none;
|
|
139
|
-
border: 1px solid #479E78;
|
|
140
|
-
}
|
|
141
|
-
textarea {
|
|
142
|
-
font-family: 'Roboto', sans-serif;
|
|
143
|
-
width: 100%;
|
|
144
|
-
padding: 10px;
|
|
145
|
-
margin: 10px 0;
|
|
146
|
-
border: 1px solid #E4E4E4;
|
|
147
|
-
background: #FFFFFF;
|
|
148
|
-
border-radius: 4px;
|
|
149
|
-
box-sizing: border-box;
|
|
150
|
-
font-size: 14px;
|
|
151
|
-
color: #3C5063;
|
|
152
|
-
}
|
|
153
|
-
button,
|
|
154
|
-
.mainButton {
|
|
155
|
-
padding: 6px 10px;
|
|
156
|
-
margin: 10px 0;
|
|
157
|
-
border: none;
|
|
158
|
-
background: #479E78;
|
|
159
|
-
color: #FFFFFF;
|
|
160
|
-
border-radius: 25px;
|
|
161
|
-
font-size: 14px;
|
|
107
|
+
.text-link {
|
|
108
|
+
color: #D9D9D9;
|
|
162
109
|
cursor: pointer;
|
|
163
|
-
|
|
164
|
-
width: 150px;
|
|
165
|
-
border: 1px solid #479E78;
|
|
110
|
+
display: inline-block;
|
|
166
111
|
text-decoration: none;
|
|
167
|
-
|
|
112
|
+
font-size: 14px;
|
|
168
113
|
}
|
|
169
|
-
|
|
170
|
-
.
|
|
171
|
-
width: 215px;
|
|
114
|
+
.text-link:hover {
|
|
115
|
+
opacity: 0.8;
|
|
172
116
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
cursor: pointer;
|
|
117
|
+
.input {
|
|
118
|
+
font-size: 12px;
|
|
119
|
+
color: #2C2C2C;
|
|
177
120
|
}
|
|
178
|
-
.
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
border-radius: 25px;
|
|
121
|
+
.input input {
|
|
122
|
+
background: #242424 !important;
|
|
123
|
+
color: white;
|
|
124
|
+
padding: 10px;
|
|
125
|
+
padding-left: 48px;
|
|
126
|
+
border-radius: 20px;
|
|
185
127
|
font-size: 14px;
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
width: 150px;
|
|
189
|
-
border: 1px solid #434343;
|
|
190
|
-
text-decoration: none;
|
|
191
|
-
max-height: 40px;
|
|
128
|
+
margin-top: 5px;
|
|
129
|
+
margin-bottom: 5px !important;
|
|
192
130
|
}
|
|
193
|
-
.
|
|
194
|
-
|
|
131
|
+
.input.icon {
|
|
132
|
+
background-size: 15px;
|
|
133
|
+
background-repeat: no-repeat;
|
|
134
|
+
background-position: 15px 15px;
|
|
195
135
|
}
|
|
196
|
-
.
|
|
197
|
-
|
|
198
|
-
cursor: pointer;
|
|
136
|
+
.input.icon input {
|
|
137
|
+
padding-left: 50px;
|
|
199
138
|
}
|
|
200
|
-
.
|
|
201
|
-
|
|
202
|
-
display: inline-block;
|
|
139
|
+
.single-crud-page .top-bar {
|
|
140
|
+
margin-bottom: 20px;
|
|
203
141
|
}
|
|
204
|
-
.
|
|
205
|
-
|
|
142
|
+
.single-crud-page .bottom-bar {
|
|
143
|
+
margin-top: 20px;
|
|
144
|
+
margin-bottom: 20px;
|
|
145
|
+
justify-content: flex-end;
|
|
206
146
|
}
|
|
207
|
-
.
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
color: #FFFFFF;
|
|
212
|
-
border: none;
|
|
213
|
-
border-radius: 50%;
|
|
214
|
-
cursor: pointer;
|
|
147
|
+
.error-messages {
|
|
148
|
+
display: flex;
|
|
149
|
+
flex-direction: row;
|
|
150
|
+
justify-content: flex-end;
|
|
215
151
|
}
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
width: 30px;
|
|
220
|
-
height: 30px;
|
|
152
|
+
.error-messages ul {
|
|
153
|
+
list-style: none;
|
|
154
|
+
margin: 0px;
|
|
221
155
|
}
|
|
222
|
-
|
|
223
|
-
|
|
156
|
+
.error-messages li,
|
|
157
|
+
.error-messages a,
|
|
158
|
+
.error-messages span,
|
|
159
|
+
.error-messages p {
|
|
160
|
+
color: #FF4D4F;
|
|
224
161
|
}
|
|
225
|
-
.
|
|
226
|
-
|
|
227
|
-
text-align: center;
|
|
228
|
-
line-height: 1.2em;
|
|
229
|
-
box-sizing: border-box;
|
|
162
|
+
.button-group button {
|
|
163
|
+
margin-left: 15px;
|
|
230
164
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
165
|
+
input[type="text"],
|
|
166
|
+
input[type="password"],
|
|
167
|
+
input[type="email"],
|
|
168
|
+
textarea,
|
|
169
|
+
.custom-select .custom-select-input {
|
|
170
|
+
border: 1px solid #3C3C3C;
|
|
171
|
+
border-radius: 17px;
|
|
172
|
+
padding: 8px 10px;
|
|
235
173
|
font-size: 14px;
|
|
236
|
-
}
|
|
237
|
-
button.error::after {
|
|
238
|
-
content: '✘';
|
|
239
|
-
color: #c73939;
|
|
240
|
-
margin-left: 8px;
|
|
241
|
-
font-size: 16px;
|
|
242
|
-
}
|
|
243
|
-
button.grey-btn {
|
|
244
|
-
color: #479E78;
|
|
245
|
-
border: 1px solid #E4E4E4;
|
|
246
|
-
background: #F6F8F9;
|
|
247
|
-
}
|
|
248
|
-
.date-selector-cont {
|
|
249
|
-
width: 100%;
|
|
250
|
-
display: inline-block;
|
|
251
|
-
}
|
|
252
|
-
.react-datepicker-wrapper {
|
|
253
|
-
width: 300px;
|
|
254
|
-
margin-bottom: 10px;
|
|
255
|
-
}
|
|
256
|
-
.react-datepicker-wrapper .react-datepicker__input-container {
|
|
257
174
|
width: 100%;
|
|
258
|
-
|
|
259
|
-
.text-button {
|
|
175
|
+
box-sizing: border-box;
|
|
260
176
|
background: none;
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
177
|
+
margin-bottom: 25px;
|
|
178
|
+
transition: border-color 0.3s;
|
|
179
|
+
}
|
|
180
|
+
input[type="text"]::placeholder,
|
|
181
|
+
input[type="password"]::placeholder,
|
|
182
|
+
input[type="email"]::placeholder,
|
|
183
|
+
textarea::placeholder,
|
|
184
|
+
.custom-select .custom-select-input::placeholder {
|
|
185
|
+
color: #ffffff;
|
|
186
|
+
}
|
|
187
|
+
input[type="text"]:focus,
|
|
188
|
+
input[type="password"]:focus,
|
|
189
|
+
input[type="email"]:focus,
|
|
190
|
+
textarea:focus,
|
|
191
|
+
.custom-select .custom-select-input:focus {
|
|
192
|
+
outline: none;
|
|
193
|
+
border-color: #47DCA6;
|
|
194
|
+
}
|
|
195
|
+
button {
|
|
196
|
+
background: #47DCA6;
|
|
197
|
+
border: 1px solid #47DCA6;
|
|
198
|
+
border-radius: 17px;
|
|
199
|
+
color: #242424;
|
|
200
|
+
padding: 9px 19px;
|
|
201
|
+
min-width: 143px;
|
|
202
|
+
font-weight: 700;
|
|
203
|
+
transition: opacity 0.3s;
|
|
204
|
+
}
|
|
205
|
+
button[type="submit"] {
|
|
206
|
+
margin-top: 25px;
|
|
207
|
+
margin-bottom: 25px;
|
|
208
|
+
}
|
|
209
|
+
button:hover {
|
|
268
210
|
opacity: 0.8;
|
|
211
|
+
cursor: pointer;
|
|
269
212
|
}
|
|
270
|
-
.
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
flex-direction: row;
|
|
275
|
-
position: relative;
|
|
213
|
+
button.secondary-btn {
|
|
214
|
+
background: #2C2C2C;
|
|
215
|
+
color: #ffffff;
|
|
216
|
+
border: 1px solid #3C3C3C;
|
|
276
217
|
}
|
|
277
|
-
.
|
|
278
|
-
|
|
279
|
-
max-width: 50%;
|
|
280
|
-
min-height: 100%;
|
|
281
|
-
display: flex;
|
|
282
|
-
justify-content: center;
|
|
283
|
-
align-items: center;
|
|
218
|
+
.icon-dashboard {
|
|
219
|
+
background: url('../assets/icon-home.svg');
|
|
284
220
|
}
|
|
285
|
-
.
|
|
286
|
-
|
|
287
|
-
min-width: 60%;
|
|
221
|
+
.icon-users {
|
|
222
|
+
background: url('../assets/icon-users.svg');
|
|
288
223
|
}
|
|
289
|
-
.
|
|
290
|
-
background:
|
|
291
|
-
min-height: 100%;
|
|
292
|
-
min-width: 50%;
|
|
293
|
-
max-width: 50%;
|
|
294
|
-
display: flex;
|
|
295
|
-
flex-direction: column;
|
|
296
|
-
justify-content: center;
|
|
297
|
-
flex-wrap: nowrap;
|
|
298
|
-
padding: 50px;
|
|
299
|
-
box-sizing: border-box;
|
|
224
|
+
.icon-settings {
|
|
225
|
+
background: url('../assets/icon-settings.svg');
|
|
300
226
|
}
|
|
301
|
-
.
|
|
302
|
-
|
|
303
|
-
background: linear-gradient(to right, #E7E7E7 0%, #E7E7E7 49%, #f7f7f7 51%, #f7f7f7 100%);
|
|
227
|
+
.icon-reports {
|
|
228
|
+
background: url('../assets/icon-reports.svg');
|
|
304
229
|
}
|
|
305
|
-
.
|
|
306
|
-
background:
|
|
307
|
-
height: 30px;
|
|
308
|
-
padding-top: 20px;
|
|
309
|
-
padding-bottom: 20px;
|
|
310
|
-
box-sizing: border-box;
|
|
311
|
-
display: flex;
|
|
312
|
-
flex-direction: row;
|
|
313
|
-
align-items: center;
|
|
230
|
+
.icon-agent {
|
|
231
|
+
background: url('../assets/icon-agent.svg');
|
|
314
232
|
}
|
|
315
|
-
.
|
|
316
|
-
|
|
233
|
+
.icon-page {
|
|
234
|
+
background: url('../assets/icon-page.svg');
|
|
317
235
|
}
|
|
318
|
-
.
|
|
319
|
-
|
|
320
|
-
flex-direction: row;
|
|
321
|
-
flex-wrap: nowrap;
|
|
322
|
-
justify-content: space-between;
|
|
323
|
-
max-height: 100%;
|
|
324
|
-
align-items: center;
|
|
236
|
+
.icon-delete {
|
|
237
|
+
background: url('../assets/icon-delete.svg');
|
|
325
238
|
}
|
|
326
|
-
.
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
.portal-layout .main .content {
|
|
332
|
-
height: 100%;
|
|
333
|
-
min-height: 100%;
|
|
239
|
+
.card {
|
|
240
|
+
border: 1px solid #3C3C3C;
|
|
241
|
+
border-radius: 10px;
|
|
242
|
+
margin-bottom: 30px;
|
|
243
|
+
width: 100%;
|
|
334
244
|
}
|
|
335
|
-
.
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
245
|
+
.card .card-title {
|
|
246
|
+
background: #242424;
|
|
247
|
+
margin: 0px;
|
|
248
|
+
padding: 20px 40px;
|
|
249
|
+
font-size: 16px;
|
|
250
|
+
font-weight: 400;
|
|
251
|
+
border-top-left-radius: 10px;
|
|
252
|
+
border-top-right-radius: 10px;
|
|
253
|
+
overflow: hidden;
|
|
339
254
|
}
|
|
340
|
-
.
|
|
341
|
-
background: #f7f7f7;
|
|
342
|
-
width: 100%;
|
|
343
|
-
height: 100%;
|
|
344
|
-
min-height: calc(100vh - 100px);
|
|
255
|
+
.card .card-content {
|
|
345
256
|
padding: 30px 40px;
|
|
346
257
|
}
|
|
347
|
-
.
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
align-items: center;
|
|
351
|
-
justify-content: space-between;
|
|
352
|
-
padding-bottom: 20px;
|
|
258
|
+
.card .instruction {
|
|
259
|
+
color: #868686;
|
|
260
|
+
margin-bottom: 30px;
|
|
353
261
|
}
|
|
354
|
-
.
|
|
355
|
-
max-height: 100%;
|
|
356
|
-
width: 180px;
|
|
262
|
+
.card-columns {
|
|
357
263
|
display: flex;
|
|
358
|
-
|
|
359
|
-
|
|
264
|
+
flex-wrap: no-wrap;
|
|
265
|
+
gap: 50px;
|
|
360
266
|
}
|
|
361
|
-
.
|
|
362
|
-
|
|
267
|
+
.card-columns > .col-66 {
|
|
268
|
+
width: 66%;
|
|
269
|
+
}
|
|
270
|
+
.card-columns > .col-33 {
|
|
271
|
+
width: 33%;
|
|
363
272
|
}
|
|
364
|
-
.
|
|
273
|
+
.card-columns p {
|
|
365
274
|
margin-top: 0px;
|
|
366
|
-
margin-bottom: 10px;
|
|
367
275
|
}
|
|
368
|
-
.
|
|
369
|
-
|
|
276
|
+
.card input[type="text"],
|
|
277
|
+
.card input[type="password"],
|
|
278
|
+
.card input[type="email"],
|
|
279
|
+
.card textarea {
|
|
280
|
+
margin-top: 8px;
|
|
281
|
+
background: #242424;
|
|
282
|
+
}
|
|
283
|
+
.card input[type="text"]::placeholder,
|
|
284
|
+
.card input[type="password"]::placeholder,
|
|
285
|
+
.card input[type="email"]::placeholder,
|
|
286
|
+
.card textarea::placeholder {
|
|
287
|
+
color: #D9D9D9;
|
|
288
|
+
}
|
|
289
|
+
.portal-main {
|
|
290
|
+
background: #2C2C2C;
|
|
291
|
+
min-height: calc(100vh - 71px);
|
|
292
|
+
width: 100vw;
|
|
293
|
+
position: absolute;
|
|
294
|
+
top: 71px;
|
|
295
|
+
left: 0px;
|
|
296
|
+
border-top-left-radius: 15px;
|
|
297
|
+
border-top-right-radius: 15px;
|
|
298
|
+
overflow: hidden;
|
|
370
299
|
}
|
|
371
|
-
.
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
300
|
+
.portal-main .portal-main-inner {
|
|
301
|
+
position: relative;
|
|
302
|
+
width: 100%;
|
|
303
|
+
min-height: calc(100vh - 71px);
|
|
304
|
+
gap: 0px;
|
|
376
305
|
}
|
|
377
|
-
.
|
|
378
|
-
|
|
379
|
-
|
|
306
|
+
.portal-main .portal-page {
|
|
307
|
+
width: 100%;
|
|
308
|
+
padding: 45px 45px 70px 45px;
|
|
309
|
+
box-sizing: border-box;
|
|
310
|
+
position: relative;
|
|
380
311
|
}
|
|
381
|
-
.
|
|
382
|
-
|
|
383
|
-
gap: 20px;
|
|
312
|
+
.portal-main .portal-page .portal-page-header {
|
|
313
|
+
margin-bottom: 30px;
|
|
384
314
|
}
|
|
385
|
-
.
|
|
386
|
-
|
|
387
|
-
flex-direction: column;
|
|
388
|
-
align-items: center;
|
|
389
|
-
justify-content: center;
|
|
315
|
+
.portal-main .portal-page .portal-page-header .logo {
|
|
316
|
+
max-width: 200px;
|
|
390
317
|
}
|
|
391
|
-
.
|
|
318
|
+
.portal-main .portal-page .portal-page-footer {
|
|
392
319
|
display: flex;
|
|
393
|
-
flex-direction:
|
|
394
|
-
width:
|
|
395
|
-
}
|
|
396
|
-
.login .login-form #login-message {
|
|
397
|
-
color: #c73939;
|
|
398
|
-
min-height: 40px;
|
|
399
|
-
}
|
|
400
|
-
.login .login-form button.loading {
|
|
401
|
-
opacity: 0.6;
|
|
402
|
-
cursor: not-allowed;
|
|
403
|
-
}
|
|
404
|
-
.login .login-form a {
|
|
405
|
-
text-decoration: none;
|
|
406
|
-
color: #479E78;
|
|
407
|
-
margin-left: 10px;
|
|
408
|
-
}
|
|
409
|
-
.login .login-form .input-container {
|
|
410
|
-
position: relative;
|
|
411
|
-
}
|
|
412
|
-
.login .login-form .input-container input {
|
|
413
|
-
padding-left: 50px;
|
|
414
|
-
}
|
|
415
|
-
.login .login-form .input-container::before {
|
|
416
|
-
content: '';
|
|
320
|
+
flex-direction: row-reverse;
|
|
321
|
+
width: 100%;
|
|
417
322
|
position: absolute;
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
height: 20px;
|
|
423
|
-
background-size: contain;
|
|
424
|
-
background-repeat: no-repeat;
|
|
425
|
-
}
|
|
426
|
-
.login .login-form .input-container:nth-child(1)::before {
|
|
427
|
-
background-image: url('../assets/user-black.svg');
|
|
323
|
+
box-sizing: border-box;
|
|
324
|
+
bottom: 30px;
|
|
325
|
+
left: 0px;
|
|
326
|
+
padding: 0px 45px;
|
|
428
327
|
}
|
|
429
|
-
.
|
|
430
|
-
|
|
328
|
+
.portal-main .portal-page .portal-page-footer p,
|
|
329
|
+
.portal-main .portal-page .portal-page-footer span {
|
|
330
|
+
margin: 0px;
|
|
331
|
+
color: #868686;
|
|
431
332
|
}
|
|
432
|
-
.sidebar {
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
333
|
+
.portal-sidebar {
|
|
334
|
+
background: #242424;
|
|
335
|
+
min-width: 264px;
|
|
336
|
+
min-height: 100%;
|
|
337
|
+
padding: 43px 32px;
|
|
436
338
|
box-sizing: border-box;
|
|
437
339
|
}
|
|
438
|
-
.sidebar .
|
|
439
|
-
|
|
340
|
+
.portal-sidebar .inner ul {
|
|
341
|
+
padding: 0px;
|
|
440
342
|
}
|
|
441
|
-
.sidebar .
|
|
442
|
-
|
|
343
|
+
.portal-sidebar .inner ul li {
|
|
344
|
+
list-style: none;
|
|
345
|
+
background-size: 28px 28px;
|
|
346
|
+
background-position: left center;
|
|
347
|
+
background-repeat: no-repeat;
|
|
443
348
|
}
|
|
444
|
-
.sidebar a {
|
|
349
|
+
.portal-sidebar .inner ul li a {
|
|
350
|
+
display: block;
|
|
445
351
|
text-decoration: none;
|
|
446
|
-
color: #
|
|
352
|
+
color: #868686;
|
|
353
|
+
padding-top: 7px;
|
|
354
|
+
padding-bottom: 7px;
|
|
355
|
+
padding-left: 50px;
|
|
447
356
|
font-size: 18px;
|
|
448
|
-
|
|
449
|
-
padding-top: 12px;
|
|
450
|
-
padding-bottom: 12px;
|
|
451
|
-
display: inline-block;
|
|
452
|
-
min-width: 100%;
|
|
357
|
+
cursor: pointer;
|
|
453
358
|
}
|
|
454
|
-
.sidebar .
|
|
455
|
-
|
|
456
|
-
align-items: center;
|
|
457
|
-
gap: 10px;
|
|
458
|
-
padding-left: 16px;
|
|
459
|
-
padding-right: 16px;
|
|
460
|
-
transition: all 0.3s;
|
|
359
|
+
.portal-sidebar .inner ul li:first-of-type a {
|
|
360
|
+
color: #ffffff;
|
|
461
361
|
}
|
|
462
|
-
.
|
|
463
|
-
|
|
464
|
-
|
|
362
|
+
.portal-topbar {
|
|
363
|
+
background: #47DCA6;
|
|
364
|
+
min-height: 100vh;
|
|
365
|
+
width: 100%;
|
|
465
366
|
}
|
|
466
|
-
.
|
|
467
|
-
|
|
367
|
+
.portal-topbar .content {
|
|
368
|
+
padding-left: 45px;
|
|
369
|
+
padding-right: 45px;
|
|
370
|
+
box-sizing: border-box;
|
|
468
371
|
}
|
|
469
|
-
.
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
372
|
+
.portal-topbar > .flex-row {
|
|
373
|
+
height: 71px;
|
|
374
|
+
align-items: center;
|
|
375
|
+
justify-content: flex-end;
|
|
473
376
|
}
|
|
474
|
-
.
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
flex-direction: column;
|
|
478
|
-
align-items: flex-end;
|
|
479
|
-
padding-bottom: 10px;
|
|
377
|
+
.portal-topbar .agent-question {
|
|
378
|
+
width: 50%;
|
|
379
|
+
box-sizing: border-box;
|
|
480
380
|
}
|
|
481
|
-
.user-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
align-items: center;
|
|
485
|
-
justify-content: center;
|
|
381
|
+
.user-info {
|
|
382
|
+
position: absolute;
|
|
383
|
+
bottom: 30px;
|
|
486
384
|
}
|
|
487
|
-
.user-
|
|
488
|
-
width: 40px;
|
|
489
|
-
height: 40px;
|
|
490
|
-
border-radius: 50%;
|
|
491
|
-
border: 2px solid #37936B;
|
|
492
|
-
background: #479E78;
|
|
493
|
-
display: flex;
|
|
494
|
-
justify-content: center;
|
|
385
|
+
.user-info .user-info-mini {
|
|
495
386
|
align-items: center;
|
|
496
387
|
}
|
|
497
|
-
.user-
|
|
498
|
-
|
|
388
|
+
.user-info .user-info-mini .email {
|
|
389
|
+
margin-top: auto;
|
|
390
|
+
margin-bottom: auto;
|
|
391
|
+
height: auto;
|
|
499
392
|
font-size: 18px;
|
|
500
|
-
font-weight: 400;
|
|
501
|
-
color: #479E78;
|
|
502
|
-
}
|
|
503
|
-
.user-avatar-container .user-info .userAvatar span img {
|
|
504
|
-
width: 30px;
|
|
505
|
-
height: 30px;
|
|
506
|
-
}
|
|
507
|
-
.user-avatar-container .user-info span {
|
|
508
|
-
color: #479E78;
|
|
509
|
-
font-size: 14px;
|
|
510
|
-
}
|
|
511
|
-
.user-avatar-container .user-info .log-out {
|
|
512
|
-
color: #3C5063;
|
|
513
|
-
transition-duration: 0.4s;
|
|
514
393
|
}
|
|
515
|
-
.user-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
}
|
|
519
|
-
.crud-list {
|
|
520
|
-
width: 100%;
|
|
521
|
-
/* Adjust width as needed */
|
|
522
|
-
margin-bottom: 20px;
|
|
523
|
-
/* Adjust margin as needed */
|
|
394
|
+
.user-info .gravatar-image {
|
|
395
|
+
width: 35px;
|
|
396
|
+
border-radius: 20px;
|
|
524
397
|
}
|
|
525
|
-
.
|
|
398
|
+
.list-table table {
|
|
526
399
|
width: 100%;
|
|
527
400
|
border-collapse: collapse;
|
|
528
|
-
border-spacing: 0px;
|
|
529
|
-
border: none;
|
|
530
|
-
}
|
|
531
|
-
.crud-list .custom-table .separator-row {
|
|
532
|
-
display: inline-block;
|
|
533
401
|
}
|
|
534
|
-
.
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
background-color: #434343;
|
|
540
|
-
color: #FFFFFF;
|
|
402
|
+
.list-table table thead th {
|
|
403
|
+
padding-top: 24px;
|
|
404
|
+
padding-bottom: 24px;
|
|
405
|
+
font-size: 16px;
|
|
406
|
+
font-weight: 400;
|
|
541
407
|
text-align: left;
|
|
542
|
-
|
|
543
|
-
|
|
408
|
+
border: none;
|
|
409
|
+
background: #242424;
|
|
410
|
+
overflow: hidden;
|
|
544
411
|
}
|
|
545
|
-
.
|
|
412
|
+
.list-table table thead th:first-child {
|
|
546
413
|
border-top-left-radius: 10px;
|
|
414
|
+
padding-left: 30px;
|
|
547
415
|
}
|
|
548
|
-
.
|
|
416
|
+
.list-table table thead th:last-child {
|
|
549
417
|
border-top-right-radius: 10px;
|
|
550
|
-
|
|
551
|
-
}
|
|
552
|
-
.crud-list .custom-table td {
|
|
553
|
-
padding: 5px 10px;
|
|
554
|
-
border: none;
|
|
555
|
-
}
|
|
556
|
-
.crud-list .custom-table td:last-child {
|
|
557
|
-
border-bottom: none;
|
|
558
|
-
}
|
|
559
|
-
.crud-list .custom-table td.edit-dots {
|
|
560
|
-
text-align: start;
|
|
561
|
-
}
|
|
562
|
-
.crud-list .custom-table tbody button {
|
|
563
|
-
width: 20px;
|
|
564
|
-
background: none;
|
|
565
|
-
border: none;
|
|
566
|
-
margin: 0;
|
|
567
|
-
}
|
|
568
|
-
.crud-list .custom-table tbody tr {
|
|
569
|
-
border-top: 1px solid transparent;
|
|
570
|
-
border-bottom: 1px solid transparent;
|
|
571
|
-
}
|
|
572
|
-
.crud-list .custom-table tbody tr td {
|
|
573
|
-
line-height: 1em;
|
|
574
|
-
}
|
|
575
|
-
.crud-list .custom-table tbody tr td:first-child {
|
|
576
|
-
border-left: 1px solid #E4E4E4;
|
|
577
|
-
}
|
|
578
|
-
.crud-list .custom-table tbody tr td:last-child {
|
|
579
|
-
border-right: 1px solid #E4E4E4;
|
|
580
|
-
}
|
|
581
|
-
.crud-list .custom-table tbody tr:first-of-type td {
|
|
582
|
-
border-top: 1px solid #E4E4E4;
|
|
583
|
-
}
|
|
584
|
-
.crud-list .custom-table tbody tr:first-of-type td:first-child {
|
|
585
|
-
border-left: 1px solid #E4E4E4;
|
|
418
|
+
padding-right: 30px;
|
|
586
419
|
}
|
|
587
|
-
.
|
|
588
|
-
|
|
420
|
+
.list-table table tr td {
|
|
421
|
+
padding-top: 15px;
|
|
422
|
+
padding-bottom: 15px;
|
|
423
|
+
transition: color 0.2s;
|
|
589
424
|
}
|
|
590
|
-
.
|
|
591
|
-
|
|
592
|
-
}
|
|
593
|
-
.crud-list .custom-table tbody tr:last-of-type td:first-child {
|
|
594
|
-
border-left: 1px solid #E4E4E4;
|
|
595
|
-
border-bottom-left-radius: 10px;
|
|
596
|
-
}
|
|
597
|
-
.crud-list .custom-table tbody tr:last-of-type td:last-child {
|
|
598
|
-
border-right: 1px solid #E4E4E4;
|
|
599
|
-
border-bottom-right-radius: 10px;
|
|
425
|
+
.list-table table tr td:first-child {
|
|
426
|
+
padding-left: 30px;
|
|
600
427
|
}
|
|
601
|
-
.
|
|
602
|
-
|
|
428
|
+
.list-table table tr td:last-child {
|
|
429
|
+
padding-right: 30px;
|
|
603
430
|
}
|
|
604
|
-
.
|
|
605
|
-
|
|
606
|
-
border-bottom: 1px solid #479E78;
|
|
607
|
-
cursor: pointer;
|
|
431
|
+
.list-table table tr:nth-child(even) td {
|
|
432
|
+
background: #242424;
|
|
608
433
|
}
|
|
609
|
-
.
|
|
610
|
-
border-left: 1px solid #479E78;
|
|
434
|
+
.list-table table tr:hover {
|
|
611
435
|
cursor: pointer;
|
|
612
436
|
}
|
|
613
|
-
.
|
|
614
|
-
|
|
615
|
-
cursor: pointer;
|
|
437
|
+
.list-table table tr:hover td {
|
|
438
|
+
color: #47DCA6;
|
|
616
439
|
}
|
|
617
|
-
.
|
|
440
|
+
.repeater-row {
|
|
618
441
|
display: flex;
|
|
619
442
|
flex-direction: row;
|
|
620
|
-
|
|
443
|
+
flex-wrap: nowrap;
|
|
444
|
+
position: relative;
|
|
621
445
|
align-items: center;
|
|
622
|
-
}
|
|
623
|
-
.pagination-count {
|
|
624
|
-
margin-bottom: 20px;
|
|
625
|
-
text-align: left;
|
|
626
|
-
font-size: 12px;
|
|
627
|
-
}
|
|
628
|
-
.crud-edit .edit-heading {
|
|
629
|
-
display: flex;
|
|
630
|
-
justify-content: space-between;
|
|
631
|
-
}
|
|
632
|
-
.single-edit .single-edit-header {
|
|
633
|
-
display: flex;
|
|
634
|
-
justify-content: space-between;
|
|
635
|
-
margin-bottom: 20px;
|
|
636
|
-
}
|
|
637
|
-
.single-edit.subscriptions .subscriptions-table {
|
|
638
|
-
width: 100%;
|
|
639
|
-
border-collapse: collapse;
|
|
640
|
-
}
|
|
641
|
-
.single-edit.subscriptions .subscriptions-table thead {
|
|
642
|
-
border-bottom: 1px solid #434343;
|
|
643
|
-
}
|
|
644
|
-
.single-edit.subscriptions .subscriptions-table th,
|
|
645
|
-
.single-edit.subscriptions .subscriptions-table td {
|
|
646
|
-
padding: 8px;
|
|
647
|
-
text-align: left;
|
|
648
|
-
}
|
|
649
|
-
.single-edit.order .billing-shipping-cont,
|
|
650
|
-
.single-edit.subscriptions .billing-shipping-cont {
|
|
651
|
-
display: flex;
|
|
652
|
-
justify-content: space-between;
|
|
653
|
-
margin-bottom: 20px;
|
|
654
|
-
}
|
|
655
|
-
.single-edit.order .billing-shipping-cont .billing-cont,
|
|
656
|
-
.single-edit.subscriptions .billing-shipping-cont .billing-cont,
|
|
657
|
-
.single-edit.order .billing-shipping-cont .shipping-cont,
|
|
658
|
-
.single-edit.subscriptions .billing-shipping-cont .shipping-cont {
|
|
659
|
-
width: 50%;
|
|
660
|
-
padding-right: 20px;
|
|
661
|
-
}
|
|
662
|
-
.single-edit.order .line-items-totals-cont .line-items-cont,
|
|
663
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont {
|
|
664
|
-
margin-bottom: 40px;
|
|
665
|
-
}
|
|
666
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .line-items-table,
|
|
667
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .line-items-table,
|
|
668
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .totals-table,
|
|
669
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .totals-table {
|
|
670
|
-
width: 100%;
|
|
671
|
-
border-collapse: collapse;
|
|
672
|
-
}
|
|
673
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .line-items-table th,
|
|
674
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .line-items-table th,
|
|
675
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .totals-table th,
|
|
676
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .totals-table th {
|
|
677
|
-
border-bottom: 1px solid #434343;
|
|
678
|
-
}
|
|
679
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .line-items-table th,
|
|
680
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .line-items-table th,
|
|
681
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .totals-table th,
|
|
682
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .totals-table th,
|
|
683
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .line-items-table td,
|
|
684
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .line-items-table td,
|
|
685
|
-
.single-edit.order .line-items-totals-cont .line-items-cont .totals-table td,
|
|
686
|
-
.single-edit.subscriptions .line-items-totals-cont .line-items-cont .totals-table td {
|
|
687
|
-
padding: 8px;
|
|
688
|
-
text-align: left;
|
|
689
|
-
}
|
|
690
|
-
.single-edit.order .totals-cont,
|
|
691
|
-
.single-edit.subscriptions .totals-cont {
|
|
692
|
-
display: flex;
|
|
693
|
-
justify-content: flex-end;
|
|
694
|
-
}
|
|
695
|
-
.single-edit.order .totals-cont .totals-table tr td,
|
|
696
|
-
.single-edit.subscriptions .totals-cont .totals-table tr td {
|
|
697
|
-
padding: 8px 0px 8px 15px;
|
|
698
|
-
text-align: right;
|
|
699
|
-
}
|
|
700
|
-
.single-edit.order .totals-cont .totals-table .order-total,
|
|
701
|
-
.single-edit.subscriptions .totals-cont .totals-table .order-total {
|
|
702
|
-
font-weight: bold;
|
|
703
|
-
}
|
|
704
|
-
.single-edit.order .subscription-details-cont,
|
|
705
|
-
.single-edit.subscriptions .subscription-details-cont {
|
|
706
|
-
display: flex;
|
|
707
|
-
justify-content: space-between;
|
|
708
|
-
margin-bottom: 20px;
|
|
709
|
-
}
|
|
710
|
-
.single-edit.order .order-notes-cont .note-item,
|
|
711
|
-
.single-edit.subscriptions .order-notes-cont .note-item {
|
|
712
|
-
display: flex;
|
|
713
|
-
margin-bottom: 20px;
|
|
714
|
-
width: 100%;
|
|
715
|
-
justify-content: space-between;
|
|
716
|
-
}
|
|
717
|
-
.single-edit.order .order-notes-cont .note-item .note-item-body,
|
|
718
|
-
.single-edit.subscriptions .order-notes-cont .note-item .note-item-body {
|
|
719
|
-
flex: 1;
|
|
720
|
-
display: flex;
|
|
721
|
-
}
|
|
722
|
-
.single-edit.order .order-notes-cont .note-item .note-item-body textarea,
|
|
723
|
-
.single-edit.subscriptions .order-notes-cont .note-item .note-item-body textarea {
|
|
724
|
-
width: 100%;
|
|
725
|
-
flex-grow: 1;
|
|
726
|
-
}
|
|
727
|
-
.single-edit .account form,
|
|
728
|
-
.single-edit .contacts form {
|
|
729
|
-
display: flex;
|
|
730
|
-
gap: 20px;
|
|
731
|
-
align-items: flex-end;
|
|
732
|
-
}
|
|
733
|
-
.single-edit .user-form {
|
|
734
|
-
display: flex;
|
|
735
446
|
gap: 20px;
|
|
736
|
-
align-items: flex-end;
|
|
737
|
-
}
|
|
738
|
-
.single-edit .api-key form {
|
|
739
|
-
width: 100%;
|
|
740
|
-
}
|
|
741
|
-
.single-edit .api-key form input {
|
|
742
|
-
width: 100%;
|
|
743
|
-
}
|
|
744
|
-
.single-edit .single-inner-cont {
|
|
745
|
-
position: relative;
|
|
746
|
-
}
|
|
747
|
-
.single-edit .single-inner-cont .repeater-cont {
|
|
748
|
-
width: 100%;
|
|
749
|
-
margin-top: 15px;
|
|
750
|
-
}
|
|
751
|
-
.single-edit .single-inner-cont .repeater-cont table {
|
|
752
|
-
width: 100%;
|
|
753
|
-
border-collapse: separate;
|
|
754
|
-
border-spacing: 10px;
|
|
755
|
-
}
|
|
756
|
-
.single-edit .single-inner-cont .repeater-cont table th {
|
|
757
|
-
min-width: 100%;
|
|
758
|
-
color: #3C5063;
|
|
759
|
-
opacity: 0.5;
|
|
760
|
-
font-size: 10px;
|
|
761
|
-
line-height: 1.1em;
|
|
762
|
-
font-style: italic;
|
|
763
|
-
}
|
|
764
|
-
.single-edit .single-inner-cont .repeater-cont table .contacts-bin-icon {
|
|
765
|
-
cursor: pointer;
|
|
766
|
-
margin-top: 15px;
|
|
767
|
-
}
|
|
768
|
-
.single-edit .single-inner-cont .repeater-cont table th,
|
|
769
|
-
.single-edit .single-inner-cont .repeater-cont table td {
|
|
770
|
-
text-align: left;
|
|
771
|
-
vertical-align: top;
|
|
772
|
-
}
|
|
773
|
-
.single-edit .single-inner-cont .repeater-cont table th input,
|
|
774
|
-
.single-edit .single-inner-cont .repeater-cont table td input {
|
|
775
|
-
width: 100%;
|
|
776
|
-
}
|
|
777
|
-
.single-edit .single-inner-cont .repeater-cont table .react-datepicker-wrapper {
|
|
778
|
-
width: 100%;
|
|
779
447
|
}
|
|
780
|
-
.
|
|
781
|
-
width: 100%;
|
|
782
|
-
display: block;
|
|
783
|
-
}
|
|
784
|
-
.single-edit .single-inner-cont .react-datepicker-popper {
|
|
785
|
-
z-index: 99;
|
|
786
|
-
}
|
|
787
|
-
.single-edit .field-instruction {
|
|
788
|
-
min-width: 100%;
|
|
448
|
+
.remove-repeater-row {
|
|
789
449
|
display: inline-block;
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
.single-edit .error-messages {
|
|
797
|
-
width: 100%;
|
|
798
|
-
background: #ffeeee;
|
|
799
|
-
border: 1px solid #c73939;
|
|
800
|
-
border-radius: 5px;
|
|
801
|
-
padding: 15px;
|
|
802
|
-
margin-bottom: 20px;
|
|
803
|
-
box-sizing: border-box;
|
|
804
|
-
}
|
|
805
|
-
.single-edit .error-messages p {
|
|
806
|
-
color: #c73939;
|
|
807
|
-
line-height: 1em;
|
|
808
|
-
margin-top: 3px;
|
|
809
|
-
margin-bottom: 3px;
|
|
810
|
-
}
|
|
811
|
-
.single-edit form label {
|
|
812
|
-
display: block;
|
|
813
|
-
}
|
|
814
|
-
.single-edit form input {
|
|
815
|
-
width: 300px;
|
|
816
|
-
}
|
|
817
|
-
.single-edit form input#marketingOptIn {
|
|
818
|
-
width: 15px;
|
|
819
|
-
height: 15px;
|
|
820
|
-
}
|
|
821
|
-
.crud-page,
|
|
822
|
-
.manage-students {
|
|
823
|
-
position: relative;
|
|
824
|
-
}
|
|
825
|
-
.crud-page .flex-row-select-cont,
|
|
826
|
-
.manage-students .flex-row-select-cont {
|
|
827
|
-
margin-top: 50px;
|
|
828
|
-
}
|
|
829
|
-
.crud-page .clear-filters-btn,
|
|
830
|
-
.manage-students .clear-filters-btn {
|
|
831
|
-
position: absolute;
|
|
832
|
-
top: 65px;
|
|
833
|
-
right: 5px;
|
|
450
|
+
width: 30px;
|
|
451
|
+
height: 30px;
|
|
452
|
+
background-repeat: no-repeat;
|
|
453
|
+
background-position: center center;
|
|
454
|
+
margin-bottom: 10px;
|
|
455
|
+
opacity: 0.6;
|
|
834
456
|
}
|
|
835
|
-
.
|
|
836
|
-
.manage-students .clear-filters-btn:hover {
|
|
457
|
+
.remove-repeater-row:hover {
|
|
837
458
|
cursor: pointer;
|
|
838
|
-
opacity:
|
|
459
|
+
opacity: 1;
|
|
839
460
|
}
|
|
840
|
-
.
|
|
841
|
-
.manage-students .password-reset-btn {
|
|
842
|
-
display: block;
|
|
461
|
+
.repeater-row {
|
|
843
462
|
position: relative;
|
|
844
|
-
color: #479E78;
|
|
845
|
-
text-decoration: underline;
|
|
846
|
-
}
|
|
847
|
-
.crud-page .password-reset-btn:hover,
|
|
848
|
-
.manage-students .password-reset-btn:hover {
|
|
849
|
-
cursor: pointer;
|
|
850
|
-
opacity: 0.8;
|
|
851
|
-
}
|
|
852
|
-
.form-row {
|
|
853
|
-
display: flex;
|
|
854
|
-
justify-content: space-between;
|
|
855
|
-
margin-bottom: 10px;
|
|
856
|
-
gap: 20px;
|
|
857
|
-
align-items: center;
|
|
858
463
|
flex-wrap: wrap;
|
|
859
464
|
}
|
|
860
|
-
.
|
|
861
|
-
display: flex;
|
|
862
|
-
flex-direction: column;
|
|
863
|
-
}
|
|
864
|
-
.form-row .input-cont input {
|
|
865
|
-
width: 250px;
|
|
866
|
-
}
|
|
867
|
-
.form-group.categories {
|
|
465
|
+
.repeater-row .nested-block .nested-block {
|
|
868
466
|
width: 100%;
|
|
467
|
+
margin-bottom: 0px;
|
|
468
|
+
position: relative;
|
|
869
469
|
}
|
|
870
|
-
.
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
justify-content: space-between;
|
|
876
|
-
}
|
|
877
|
-
.collapsible-header h3 {
|
|
878
|
-
margin: 0px;
|
|
879
|
-
}
|
|
880
|
-
.collapsible-header:hover {
|
|
881
|
-
cursor: pointer;
|
|
882
|
-
}
|
|
883
|
-
.collapsible-content {
|
|
884
|
-
overflow: hidden;
|
|
885
|
-
transition-duration: 0.5s;
|
|
886
|
-
}
|
|
887
|
-
.collapsible-content-open {
|
|
888
|
-
margin-top: 30px;
|
|
889
|
-
}
|
|
890
|
-
.collapsible-content-inner ul {
|
|
891
|
-
margin: 0px;
|
|
470
|
+
.repeater-row .nested-block .nested-block .repeater {
|
|
471
|
+
box-sizing: border-box;
|
|
472
|
+
margin-bottom: 60px;
|
|
473
|
+
border-left: 1px solid #3C3C3C;
|
|
474
|
+
padding-left: 35px;
|
|
892
475
|
}
|
|
893
|
-
.
|
|
894
|
-
|
|
895
|
-
margin-top: 15px;
|
|
896
|
-
margin-bottom: 10px;
|
|
476
|
+
.repeater-row .nested-block .nested-block .repeater-row {
|
|
477
|
+
justify-content: flex-start;
|
|
897
478
|
}
|
|
898
|
-
.
|
|
899
|
-
opacity: 0;
|
|
479
|
+
.repeater-row .nested-block .nested-block .add-repeater-row {
|
|
900
480
|
position: absolute;
|
|
901
481
|
left: 0px;
|
|
902
|
-
|
|
903
|
-
min-height: 18px;
|
|
904
|
-
}
|
|
905
|
-
.custom-checkbox input:hover {
|
|
906
|
-
cursor: pointer;
|
|
482
|
+
bottom: 10px;
|
|
907
483
|
}
|
|
908
|
-
.
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
484
|
+
.repeater-row .nested-block .nested-block input[type="text"],
|
|
485
|
+
.repeater-row .nested-block .nested-block input[type="password"],
|
|
486
|
+
.repeater-row .nested-block .nested-block input[type="email"],
|
|
487
|
+
.repeater-row .nested-block .nested-block textarea,
|
|
488
|
+
.repeater-row .nested-block .nested-block .custom-select .custom-select-input {
|
|
489
|
+
margin-bottom: 0px;
|
|
912
490
|
}
|
|
913
|
-
.
|
|
914
|
-
|
|
915
|
-
opacity: 0.8;
|
|
491
|
+
.repeater-row .nested-block .remove-repeater-row {
|
|
492
|
+
top: 25px;
|
|
916
493
|
}
|
|
917
|
-
.
|
|
918
|
-
content: '';
|
|
919
|
-
min-width: 18px;
|
|
920
|
-
min-height: 18px;
|
|
921
|
-
background: #F6F8F9;
|
|
922
|
-
border: 1px solid #E4E4E4;
|
|
923
|
-
border-radius: 6px;
|
|
494
|
+
.repeater-row .remove-repeater-row {
|
|
924
495
|
position: absolute;
|
|
925
|
-
|
|
496
|
+
right: -35px;
|
|
926
497
|
}
|
|
927
|
-
.custom-
|
|
928
|
-
|
|
929
|
-
|
|
498
|
+
.custom-select-cont {
|
|
499
|
+
display: inline-block;
|
|
500
|
+
}
|
|
501
|
+
.custom-select-cont label {
|
|
502
|
+
width: 100%;
|
|
930
503
|
}
|
|
931
504
|
.custom-select {
|
|
932
505
|
max-width: 215px;
|
|
@@ -938,12 +511,12 @@ button.grey-btn {
|
|
|
938
511
|
width: 100%;
|
|
939
512
|
padding: 6px 10px;
|
|
940
513
|
margin: 10px 0;
|
|
941
|
-
border: 1px solid #
|
|
942
|
-
background: #
|
|
514
|
+
border: 1px solid #3C3C3C;
|
|
515
|
+
background: #242424;
|
|
943
516
|
border-radius: 25px;
|
|
944
517
|
box-sizing: border-box;
|
|
945
518
|
font-size: 15px;
|
|
946
|
-
color: #
|
|
519
|
+
color: #242424;
|
|
947
520
|
z-index: 3;
|
|
948
521
|
}
|
|
949
522
|
.custom-select .custom-select-input:hover {
|
|
@@ -966,8 +539,8 @@ button.grey-btn {
|
|
|
966
539
|
max-height: 200px;
|
|
967
540
|
height: 0px !important;
|
|
968
541
|
overflow: hidden;
|
|
969
|
-
background: #
|
|
970
|
-
border: 1px solid #
|
|
542
|
+
background: #242424;
|
|
543
|
+
border: 1px solid #3C3C3C;
|
|
971
544
|
box-sizing: border-box;
|
|
972
545
|
border-radius: 15px;
|
|
973
546
|
z-index: 2;
|
|
@@ -985,13 +558,13 @@ button.grey-btn {
|
|
|
985
558
|
padding: 10px;
|
|
986
559
|
opacity: 0.8;
|
|
987
560
|
transition-duration: 0.1s;
|
|
988
|
-
color: #
|
|
561
|
+
color: #D9D9D9;
|
|
989
562
|
font-size: 15px;
|
|
990
563
|
}
|
|
991
564
|
.custom-select .custom-select-options .custom-select-option:hover {
|
|
992
565
|
opacity: 1;
|
|
993
566
|
cursor: pointer;
|
|
994
|
-
color: #
|
|
567
|
+
color: #47DCA6;
|
|
995
568
|
}
|
|
996
569
|
.custom-select.open {
|
|
997
570
|
z-index: 5;
|
|
@@ -999,9 +572,140 @@ button.grey-btn {
|
|
|
999
572
|
.custom-select.open .custom-select-options {
|
|
1000
573
|
height: 400px !important;
|
|
1001
574
|
}
|
|
575
|
+
.custom-select.open .custom-select-input {
|
|
576
|
+
border: 1px solid #47DCA6;
|
|
577
|
+
}
|
|
1002
578
|
.custom-select.open .custom-select-input:after {
|
|
1003
579
|
transform: rotate(180deg);
|
|
1004
580
|
}
|
|
1005
581
|
.custom-select.closing {
|
|
1006
582
|
z-index: 5;
|
|
1007
583
|
}
|
|
584
|
+
.quill {
|
|
585
|
+
margin-top: 10px;
|
|
586
|
+
}
|
|
587
|
+
.quill .ql-toolbar {
|
|
588
|
+
border-color: #3C3C3C !important;
|
|
589
|
+
border-top-left-radius: 10px;
|
|
590
|
+
border-top-right-radius: 10px;
|
|
591
|
+
}
|
|
592
|
+
.quill .ql-toolbar button svg * {
|
|
593
|
+
stroke: #D9D9D9 !important;
|
|
594
|
+
}
|
|
595
|
+
.quill .ql-container {
|
|
596
|
+
border-color: #3C3C3C !important;
|
|
597
|
+
border-bottom-left-radius: 10px;
|
|
598
|
+
border-bottom-right-radius: 10px;
|
|
599
|
+
}
|
|
600
|
+
.quill .ql-editor {
|
|
601
|
+
min-height: 150px;
|
|
602
|
+
}
|
|
603
|
+
.quill button {
|
|
604
|
+
min-width: unset;
|
|
605
|
+
}
|
|
606
|
+
.quill .ql-picker .ql-picker-label {
|
|
607
|
+
border: none !important;
|
|
608
|
+
}
|
|
609
|
+
.quill .ql-picker-options {
|
|
610
|
+
background: #242424 !important;
|
|
611
|
+
border-color: #3C3C3C !important;
|
|
612
|
+
}
|
|
613
|
+
.ql-snow.ql-toolbar button:hover,
|
|
614
|
+
.ql-snow .ql-toolbar button:hover,
|
|
615
|
+
.ql-snow.ql-toolbar button:focus,
|
|
616
|
+
.ql-snow .ql-toolbar button:focus,
|
|
617
|
+
.ql-snow.ql-toolbar button.ql-active,
|
|
618
|
+
.ql-snow .ql-toolbar button.ql-active,
|
|
619
|
+
.ql-snow.ql-toolbar .ql-picker-label:hover,
|
|
620
|
+
.ql-snow .ql-toolbar .ql-picker-label:hover,
|
|
621
|
+
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
|
|
622
|
+
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
|
|
623
|
+
.ql-snow.ql-toolbar .ql-picker-item:hover,
|
|
624
|
+
.ql-snow .ql-toolbar .ql-picker-item:hover,
|
|
625
|
+
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
|
|
626
|
+
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
|
|
627
|
+
color: #47DCA6 !important;
|
|
628
|
+
}
|
|
629
|
+
.image-input {
|
|
630
|
+
position: relative;
|
|
631
|
+
}
|
|
632
|
+
.image-input > .flex-row {
|
|
633
|
+
margin-top: 10px;
|
|
634
|
+
flex-direction: row-reverse;
|
|
635
|
+
gap: 0px;
|
|
636
|
+
}
|
|
637
|
+
.image-input .upload-area {
|
|
638
|
+
border-color: #3C3C3C !important;
|
|
639
|
+
min-width: 190px;
|
|
640
|
+
margin-bottom: auto;
|
|
641
|
+
flex-grow: 2;
|
|
642
|
+
}
|
|
643
|
+
.image-input .preview-area .image-preview {
|
|
644
|
+
margin-right: 35px;
|
|
645
|
+
}
|
|
646
|
+
.image-input .preview-area .image-preview img {
|
|
647
|
+
max-width: 100%;
|
|
648
|
+
object-fit: contain;
|
|
649
|
+
}
|
|
650
|
+
.image-input .icon-delete {
|
|
651
|
+
min-width: 20px;
|
|
652
|
+
min-height: 20px;
|
|
653
|
+
display: inline-block;
|
|
654
|
+
background-size: contain;
|
|
655
|
+
background-repeat: no-repeat;
|
|
656
|
+
position: absolute;
|
|
657
|
+
right: -25px;
|
|
658
|
+
top: -3px;
|
|
659
|
+
opacity: 0.7;
|
|
660
|
+
}
|
|
661
|
+
.image-input .icon-delete:hover {
|
|
662
|
+
cursor: pointer;
|
|
663
|
+
opacity: 1;
|
|
664
|
+
}
|
|
665
|
+
.login-page {
|
|
666
|
+
width: 100%;
|
|
667
|
+
max-width: 100%;
|
|
668
|
+
height: 100vh;
|
|
669
|
+
gap: 0px;
|
|
670
|
+
}
|
|
671
|
+
.login-page .login-left-panel {
|
|
672
|
+
min-width: 50%;
|
|
673
|
+
background: url('../assets/login-green-rad-back-1.jpg');
|
|
674
|
+
background-size: cover;
|
|
675
|
+
background-position: center center;
|
|
676
|
+
display: flex;
|
|
677
|
+
align-items: center;
|
|
678
|
+
justify-content: center;
|
|
679
|
+
}
|
|
680
|
+
.login-page .login-right-panel {
|
|
681
|
+
min-width: 50%;
|
|
682
|
+
background: #242424;
|
|
683
|
+
padding: 135px;
|
|
684
|
+
box-sizing: border-box;
|
|
685
|
+
display: flex;
|
|
686
|
+
align-items: center;
|
|
687
|
+
justify-content: center;
|
|
688
|
+
}
|
|
689
|
+
.login-page .username,
|
|
690
|
+
.login-page .password {
|
|
691
|
+
padding-left: 50px;
|
|
692
|
+
position: relative;
|
|
693
|
+
background-repeat: no-repeat;
|
|
694
|
+
background-position: 12px center;
|
|
695
|
+
background-size: 18px 18px;
|
|
696
|
+
}
|
|
697
|
+
.login-page .username {
|
|
698
|
+
background-image: url('../assets/icon-user.svg');
|
|
699
|
+
}
|
|
700
|
+
.login-page .password {
|
|
701
|
+
background-image: url('../assets/icon-padlock.svg');
|
|
702
|
+
}
|
|
703
|
+
.login-page .login-form {
|
|
704
|
+
max-width: 450px;
|
|
705
|
+
}
|
|
706
|
+
.login-page .forgotten-password {
|
|
707
|
+
width: 100%;
|
|
708
|
+
}
|
|
709
|
+
#MagiCSS-bookmarklet span {
|
|
710
|
+
color: black !important;
|
|
711
|
+
}
|