pict-section-recordset 1.0.66 → 1.0.68
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/docs/_brand.json +18 -0
- package/docs/_cover.md +1 -1
- package/docs/_version.json +7 -0
- package/docs/index.html +2 -4
- package/docs/retold-catalog.json +33 -1
- package/docs/retold-keyword-index.json +1 -1
- package/example_applications/bookstore/Bookstore-Application.js +1 -1
- package/example_applications/bookstore/css/bookstore.css +15 -15
- package/example_applications/bookstore/css/pure.min.css +1 -1
- package/example_applications/bookstore/views/PictView-Bookstore-Dashboard.js +3 -3
- package/example_applications/bookstore/views/PictView-Bookstore-Navigation.js +9 -9
- package/example_applications/index.html +3 -3
- package/example_applications/mocks/book-edit-view.html +5 -5
- package/example_applications/mocks/book-read-view.html +5 -5
- package/example_applications/mocks/list-view.html +6 -6
- package/example_applications/simple_entity/Simple-RecordSet-Application.js +2 -2
- package/example_applications/simple_entity/html/index.html +14 -14
- package/package.json +7 -6
- package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +1 -1
- package/source/services/RecordsSet-MetaController.js +22 -0
- package/source/templates/Pict-Template-FilterInstanceViews.js +1 -0
- package/source/views/dashboard/RecordSet-Dashboard-RecordListEntry.js +2 -2
- package/source/views/dashboard/RecordSet-Dashboard-RecordListHeader.js +2 -2
- package/source/views/list/RecordSet-List-RecordListEntry.js +2 -2
- package/source/views/list/RecordSet-List-RecordListHeader.js +2 -2
- package/test/PictSectionRecordSet-Basic_tests.js +83 -0
- package/types/Pict-Section-RecordSet.d.ts +2 -0
- package/types/providers/Filter-Data-Provider.d.ts +1 -0
- package/types/providers/Filter-Data-Provider.d.ts.map +1 -1
- package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts +6 -0
- package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +8 -0
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
- package/types/providers/RecordSet-Router.d.ts +2 -0
- package/types/providers/RecordSet-Router.d.ts.map +1 -1
- package/types/services/RecordsSet-MetaController.d.ts +10 -5
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts +42 -2
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts.map +1 -1
- package/types/templates/Pict-Template-FilterView.d.ts +0 -2
- package/types/templates/Pict-Template-FilterView.d.ts.map +1 -1
- package/types/views/Filter-PersistenceView.d.ts +31 -6
- package/types/views/Filter-PersistenceView.d.ts.map +1 -1
- package/types/views/RecordSet-Filters.d.ts +31 -0
- package/types/views/RecordSet-Filters.d.ts.map +1 -1
- package/types/views/RecordSet-RecordBaseView.d.ts +2 -0
- package/types/views/RecordSet-RecordBaseView.d.ts.map +1 -1
- package/types/views/dashboard/RecordSet-Dashboard.d.ts +2 -0
- package/types/views/dashboard/RecordSet-Dashboard.d.ts.map +1 -1
- package/docs/css/docuserve.css +0 -73
|
@@ -4,13 +4,35 @@ declare class viewFilterPersistenceView extends libPictView {
|
|
|
4
4
|
currentRecordSet: string;
|
|
5
5
|
currentViewContext: string;
|
|
6
6
|
filterExperienceSelection: any;
|
|
7
|
+
filterExperienceInitialized: boolean;
|
|
7
8
|
/**
|
|
8
|
-
*
|
|
9
|
+
* Initializes the filter persistence view UI for a given record set and view context. This will render the UI and populate it with the relevant filter experiences for the given context.
|
|
9
10
|
* @param {string} pRecordSet - The identifier of the record set.
|
|
10
11
|
* @param {string} pViewContext - The context of the view.
|
|
12
|
+
* @param {function} pCallback - A callback function to be executed after initializing the UI.
|
|
13
|
+
* @returns {boolean} - Returns true when the UI has been initialized.
|
|
14
|
+
*/
|
|
15
|
+
initializeFilterPersistenceViewUI(pRecordSet: string, pViewContext: string, pCallback: Function): boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Updates the current filter experience name in the input field based on the current filter experience applied for the given record set and view context. This is used to ensure that if the filter experience was modified outside of the UI (ex: through the URL hash), we can reflect that in the input field and also handle the button states accordingly to prevent unintended consequences of saving in an invalid state.
|
|
18
|
+
* @param {string} pRecordSet - The identifier of the record set.
|
|
19
|
+
* @param {string} pViewContext - The context of the view.
|
|
20
|
+
* @param {boolean} pIgnoreCurrentExperienceURLParam - Whether to ignore the current experience when updating the input field, use this when in a modified state and the url is now outdated, to generate a new name.
|
|
21
|
+
*/
|
|
22
|
+
updateDisplayNameInputWithCurrentFilterExperience(pRecordSet: string, pViewContext: string, pIgnoreCurrentExperienceURLParam?: boolean): void;
|
|
23
|
+
/**
|
|
24
|
+
* Toggles the filter persistence UI for a given record set and view context
|
|
25
|
+
* @param {string} pRecordSet - The identifier of the record set.
|
|
26
|
+
* @param {string} pViewContext - The context of the view.
|
|
27
|
+
* @param {function} pCallback - A callback function to be executed after toggling the UI.
|
|
11
28
|
* @returns {boolean} - Returns true when the UI has been toggled.
|
|
12
29
|
*/
|
|
13
|
-
openFilterPersistenceUI(pRecordSet: string, pViewContext: string): boolean;
|
|
30
|
+
openFilterPersistenceUI(pRecordSet: string, pViewContext: string, pCallback: Function): boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Handles the state of the filter experience when it has been modified from the URL hash instead of through the UI, which can lead to an invalid state for saving if the user tries to save without realizing the current experience was modified outside of the UI.
|
|
33
|
+
* This method will show a warning message and disable the save/set as default/remove as default/delete buttons to prevent unintended consequences of saving in that state, and will prompt the user to load a filter experience through the UI or refresh the page to reset the state before they can save. It will also disable the current filter name input and set a warning message in it to indicate that the user needs to apply or reset filters changes to be able to save settings. If the filter experience is not in that modified state, it will ensure the buttons are enabled and the current filter name input is enabled and populated with the current filter experience name for better visibility when saving.
|
|
34
|
+
*/
|
|
35
|
+
handleModifiedFiltersState(): void;
|
|
14
36
|
/**
|
|
15
37
|
* Updates the filter experience settings for a given record set and view context.
|
|
16
38
|
* @param {string} pRecordSet - The identifier of the record set.
|
|
@@ -46,20 +68,22 @@ declare class viewFilterPersistenceView extends libPictView {
|
|
|
46
68
|
* @param {Event} event - The event object.
|
|
47
69
|
* @returns {boolean} - Returns true when the settings have been loaded.
|
|
48
70
|
*/
|
|
49
|
-
loadFilterPersistenceSettings(event: Event): boolean;
|
|
71
|
+
loadFilterPersistenceSettings(event: Event, pCallback: any): boolean;
|
|
50
72
|
/**
|
|
51
73
|
* Saves the filter persistence settings for the current selection of filter experiences.
|
|
52
74
|
* @param {Event} event - The event object.
|
|
75
|
+
* @param {function} [pCallback] - A callback function to be executed after saving the settings.
|
|
53
76
|
* @returns {boolean} - Returns true when the settings have been saved.
|
|
54
77
|
*/
|
|
55
|
-
saveFilterPersistenceSettings(event: Event): boolean;
|
|
78
|
+
saveFilterPersistenceSettings(event: Event, pCallback?: Function): boolean;
|
|
56
79
|
/**
|
|
57
80
|
* Sets the filter experience as the default for the current record set and view context.
|
|
58
81
|
* @param {Event} event - The event object.
|
|
59
82
|
* @param {boolean} isDefault - Whether to set as default or not.
|
|
83
|
+
* @param {function} [pCallback] - A callback function to be executed after toggling the default setting.
|
|
60
84
|
* @returns {boolean} - Returns true when the settings have been set as default.
|
|
61
85
|
*/
|
|
62
|
-
toggleFilterExperienceAsTheDefault(event: Event, isDefault: boolean): boolean;
|
|
86
|
+
toggleFilterExperienceAsTheDefault(event: Event, isDefault: boolean, pCallback?: Function): boolean;
|
|
63
87
|
/**
|
|
64
88
|
* Handles the button states for the filter experience selection.
|
|
65
89
|
* @param {boolean} isDefault - Whether the filter experience is set as default or not.
|
|
@@ -68,9 +92,10 @@ declare class viewFilterPersistenceView extends libPictView {
|
|
|
68
92
|
/**
|
|
69
93
|
* Deletes the filter persistence settings for the current selection of filter experiences.
|
|
70
94
|
* @param {Event} event - The event object.
|
|
95
|
+
* @param {function} [pCallback] - A callback function to be executed after deleting the settings.
|
|
71
96
|
* @returns {boolean} - Returns true when the settings have been deleted.
|
|
72
97
|
*/
|
|
73
|
-
deleteFilterPersistenceSettings(event: Event): boolean;
|
|
98
|
+
deleteFilterPersistenceSettings(event: Event, pCallback?: Function): boolean;
|
|
74
99
|
}
|
|
75
100
|
declare namespace viewFilterPersistenceView {
|
|
76
101
|
export { _DEFAULT_CONFIGURATION_FilterPersistenceView as default_configuration };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Filter-PersistenceView.d.ts","sourceRoot":"","sources":["../../source/views/Filter-PersistenceView.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Filter-PersistenceView.d.ts","sourceRoot":"","sources":["../../source/views/Filter-PersistenceView.js"],"names":[],"mappings":";AAuFA;IAEC,2DASC;IAJA,yBAA4B;IAC5B,2BAA8B;IAC9B,+BAAqC;IACrC,qCAAwC;IAIzC;;;;;;OAMG;IACH,8CALW,MAAM,gBACN,MAAM,wBAEJ,OAAO,CAqCnB;IAED;;;;;OAKG;IACH,8DAJW,MAAM,gBACN,MAAM,qCACN,OAAO,QA0BjB;IAED;;;;;;OAMG;IACH,oCALW,MAAM,gBACN,MAAM,wBAEJ,OAAO,CAYnB;IAED;;;OAGG;IACH,mCA2BC;IAED;;;;;;OAMG;IACH,2CALW,MAAM,gBACN,MAAM,aACN,MAAM,GACJ,OAAO,CAenB;IAED;;;;OAIG;IACH,sCAHW,KAAK,GACH,OAAO,CA6BnB;IAED;;;OAGG;IACH,4BAFa,OAAO,CAmBnB;IAED;;;OAGG;IACH,mDAFa,OAAO,CA+CnB;IAED;;;;OAIG;IACH,8CAHW,KAAK,GACH,OAAO,CAcnB;IAED;;;;OAIG;IACH,qCAHW,KAAK,mBACH,OAAO,CAqBnB;IAED;;;;;OAKG;IACH,qCAJW,KAAK,yBAEH,OAAO,CA4BnB;IAED;;;;;;OAMG;IACH,0CALW,KAAK,aACL,OAAO,yBAEL,OAAO,CAyBnB;IAED;;;OAGG;IACH,uCAFW,OAAO,QA4BjB;IAED;;;;;OAKG;IACH,uCAJW,KAAK,yBAEH,OAAO,CAsBnB;CACD"}
|
|
@@ -6,6 +6,8 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
|
|
|
6
6
|
PictSectionRecordSet: {
|
|
7
7
|
new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
|
|
8
8
|
default_configuration: Record<string, any>;
|
|
9
|
+
isFableService: boolean;
|
|
10
|
+
CoreServiceProviderBase: typeof import("fable-serviceproviderbase");
|
|
9
11
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
10
12
|
RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
|
|
11
13
|
RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
@@ -13,6 +15,35 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
|
|
|
13
15
|
};
|
|
14
16
|
chars: string;
|
|
15
17
|
lookup: any[] | Uint8Array<ArrayBuffer>;
|
|
18
|
+
newFilterSearchApplied: boolean;
|
|
19
|
+
addFilterCallback: Function;
|
|
20
|
+
removeFilterCallback: Function;
|
|
21
|
+
_renderEpoch: number;
|
|
22
|
+
/**
|
|
23
|
+
* Bump the render epoch. Call this whenever the active filter clauses are
|
|
24
|
+
* about to change in a way that would invalidate in-flight filter renders.
|
|
25
|
+
*
|
|
26
|
+
* @return {number} The new epoch value.
|
|
27
|
+
*/
|
|
28
|
+
bumpRenderEpoch(): number;
|
|
29
|
+
/**
|
|
30
|
+
* Sets a callback function to be executed after a filter is added.
|
|
31
|
+
* @param {function} pCallback - The callback function to be executed after a filter is added.
|
|
32
|
+
*/
|
|
33
|
+
setAddFilterCallback(pCallback: Function): void;
|
|
34
|
+
/**
|
|
35
|
+
* Sets a callback function to be executed after a filter is removed.
|
|
36
|
+
* @param {function} pCallback - The callback function to be executed after a filter is removed.
|
|
37
|
+
*/
|
|
38
|
+
setRemoveFilterCallback(pCallback: Function): void;
|
|
39
|
+
/**
|
|
40
|
+
* Removes the callback function for adding a filter.
|
|
41
|
+
*/
|
|
42
|
+
removeAddFilterCallback(): void;
|
|
43
|
+
/**
|
|
44
|
+
* Removes the callback function for removing a filter.
|
|
45
|
+
*/
|
|
46
|
+
removeRemoveFilterCallback(): void;
|
|
16
47
|
/**
|
|
17
48
|
* @return {string} - The marshalling prefix configured for filters. Usually 'Bundle.'
|
|
18
49
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";AA6MA;IAEC,
|
|
1
|
+
{"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";AA6MA;IAEC,2DAuCC;IAnCA,kHAAkH;IAClH,MADW,GAAe,GAAG,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE;;;;;;;;SAAsC,CAAA;KAAE,CACrG;IAeT,cAA+E;IAG/E,wCAA0E;IAK1E,gCAAmC;IACnC,4BAA6B;IAC7B,+BAAgC;IAQhC,qBAAqB;IAGtB;;;;;OAKG;IACH,mBAFY,MAAM,CAMjB;IAED;;;OAGG;IACH,gDAGC;IAED;;;OAGG;IACH,mDAGC;IAED;;OAEG;IACH,gCAGC;IAED;;OAEG;IACH,mCAGC;IAED;;OAEG;IACH,6BAFY,MAAM,CAKjB;IAED;;;;OAIG;IACH,kCAJW,MAAM,GAEL,GAAG,CAMd;IAKD;;;OAGG;IACH,qBAFa,GAAG,CAaf;IAED;;;OAGG;IACH,mBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,qBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAUhB;IAED;;;;OAIG;IACH,0BAJW,MAAM,gBACN,MAAM,kBACN,MAAM,QAsDhB;IAED;;;;;OAKG;IACH,oBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAUhB;IAGD;;;;;OAKG;IACH,oBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAoBhB;IAED;;;;;MAKE;IACF,qBALW,KAAK,cACL,MAAM,gBACN,MAAM,GACJ,OAAO,CAQnB;IAED;;;;OAIG;IACH,0BAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAQhB;IAED;;;;;;OAMG;IACH,kBANW,KAAK,cACL,MAAM,gBACN,MAAM,cACN,MAAM,cACN,MAAM,QAWhB;IAED;;;;;OAKG;IACH,qBALW,KAAK,cACL,MAAM,gBACN,MAAM,sBACN,MAAM,QAWhB;IAED;;;;OAIG;IACH,4BAHW,MAAM,GACL,KAAK,CAAC,GAAG,CAAC,CAMrB;IAmDD;;;;OAIG;IACH,uCAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,CAiB1B;IAED;;;;OAIG;IACH,yCAHW,MAAM,GACL,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAUvC;IAED;;;;OAIG;IACH,iBAJW,MAAM,aACN,iBAAiB,GAChB,OAAO,CAAC,WAAW,CAAC,CAU/B;IAED;;;OAGG;IACH,sBAHW,UAAU,aACV,iBAAiB,mBAa3B;IAED;;;OAGG;IACH,oBAHW,WAAW,GACV,MAAM,CA2BjB;IAED;;;OAGG;IACH,eAHW,MAAM,GACL,WAAW,CAsCtB;CACD;;;;;AAxtBD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA6J5B"}
|
|
@@ -16,6 +16,8 @@ declare class viewPictSectionRecordSetViewBase extends libPictView {
|
|
|
16
16
|
PictSectionRecordSet: InstanceType<{
|
|
17
17
|
new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
|
|
18
18
|
default_configuration: Record<string, any>;
|
|
19
|
+
isFableService: boolean;
|
|
20
|
+
CoreServiceProviderBase: typeof import("fable-serviceproviderbase");
|
|
19
21
|
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
20
22
|
RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
|
|
21
23
|
RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-RecordBaseView.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-RecordBaseView.js"],"names":[],"mappings":";AA6DA;IAEC,2DAYC;IARA;;;;;;YAMQ;IACR,MAPW,OAAO,MAAM,CAAC,GAAG;QACvB,GAAG,EAAE,GAAG,CAAC;QACT,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAC7D,mBAAmB,EAAE,OAAO,8DAA8D,CAAC,CAAC;QAC5F,oBAAoB,EAAE,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordBaseView.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-RecordBaseView.js"],"names":[],"mappings":";AA6DA;IAEC,2DAYC;IARA;;;;;;YAMQ;IACR,MAPW,OAAO,MAAM,CAAC,GAAG;QACvB,GAAG,EAAE,GAAG,CAAC;QACT,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,qCAAqC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,GAAG,CAAC;QAC7D,mBAAmB,EAAE,OAAO,8DAA8D,CAAC,CAAC;QAC5F,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;SAAsC,CAAC,CAAC;KAC5E,CACK;IAGV,qCAIC;CACD;;;;;AAhFD,kCAAkC;AAClC,gDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAyD3B"}
|
|
@@ -25,6 +25,8 @@ declare class viewRecordSetDashboard extends libPictRecordSetRecordView {
|
|
|
25
25
|
* @return {Promise<void>}
|
|
26
26
|
*/
|
|
27
27
|
renderSpecificDashboard(pDashboardHash: string, pRecordSetConfiguration: Record<string, any>, pProviderHash: string, pFilterString: string, pSerializedFilterExperience: string, pOffset: number, pPageSize: number): Promise<void>;
|
|
28
|
+
_generateFormManifestTemplate(tmpManifest: any, section: any): string;
|
|
29
|
+
manifest: any;
|
|
28
30
|
/**
|
|
29
31
|
* @param {Record<string, any>} pRecordSetConfiguration
|
|
30
32
|
* @param {string} pProviderHash
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";AAqHA;IAOE;;;;;;;;MAQC;IAGF,iEAuCC;IA2BD,8CAGC;IAED,sDAuCC;IAnCA,iCAUC;IA2BF;;;;;;;;;;OAUG;IACH,wCAVW,MAAM,2BACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,iBACN,MAAM,+BACN,MAAM,WACN,MAAM,aACN,MAAM,GAEL,OAAO,CAAC,IAAI,CAAC,CAqSxB;IAED,sEAoCC;IAvBA,cAA2B;IAyB5B;;;;;;;;;OASG;IACH,yCATW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,iBACN,MAAM,+BACN,MAAM,WACN,MAAM,aACN,MAAM,GAEL,OAAO,CAAC,IAAI,CAAC,CA4QxB;CAwBD;;;;;AA92BD,kCAAkC;AAClC,iDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAwG1B"}
|
package/docs/css/docuserve.css
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
/* ============================================================================
|
|
2
|
-
Pict Docuserve - Base Styles
|
|
3
|
-
============================================================================ */
|
|
4
|
-
|
|
5
|
-
/* Reset and base */
|
|
6
|
-
*, *::before, *::after {
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
html, body {
|
|
11
|
-
margin: 0;
|
|
12
|
-
padding: 0;
|
|
13
|
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
14
|
-
font-size: 16px;
|
|
15
|
-
line-height: 1.5;
|
|
16
|
-
color: #423D37;
|
|
17
|
-
background-color: #fff;
|
|
18
|
-
-webkit-font-smoothing: antialiased;
|
|
19
|
-
-moz-osx-font-smoothing: grayscale;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* Typography */
|
|
23
|
-
h1, h2, h3, h4, h5, h6 {
|
|
24
|
-
margin-top: 0;
|
|
25
|
-
line-height: 1.3;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
a {
|
|
29
|
-
color: #2E7D74;
|
|
30
|
-
text-decoration: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
a:hover {
|
|
34
|
-
color: #256861;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
/* Application container */
|
|
38
|
-
#Docuserve-Application-Container {
|
|
39
|
-
min-height: 100vh;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/* Utility: scrollbar styling */
|
|
43
|
-
::-webkit-scrollbar {
|
|
44
|
-
width: 8px;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
::-webkit-scrollbar-track {
|
|
48
|
-
background: #F5F0E8;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
::-webkit-scrollbar-thumb {
|
|
52
|
-
background: #D4CCBE;
|
|
53
|
-
border-radius: 4px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
::-webkit-scrollbar-thumb:hover {
|
|
57
|
-
background: #B5AA9A;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/* Responsive adjustments */
|
|
61
|
-
@media (max-width: 768px) {
|
|
62
|
-
html {
|
|
63
|
-
font-size: 14px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
#Docuserve-Sidebar-Container {
|
|
67
|
-
display: none;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.docuserve-body {
|
|
71
|
-
flex-direction: column;
|
|
72
|
-
}
|
|
73
|
-
}
|