matterbridge 1.6.8-dev.11 → 1.6.8-dev.14

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/CHANGELOG.md CHANGED
@@ -13,7 +13,14 @@ It is also available the official Matterbridge Home Assistant plugin https://git
13
13
 
14
14
  Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord group: https://discord.gg/QX58CDe6hd.
15
15
 
16
- ## [1.6.8-dev.11] - 2024-12-23
16
+ ### Breaking Changes
17
+
18
+ Matterbridge edge is now released.
19
+
20
+ The frontend has a dark mode that is the default mode.
21
+ It is possible to change the mode (Classic or Dark) in Settings, Matterbridge settings.
22
+
23
+ ## [1.6.8-dev.14] - 2024-12-26
17
24
 
18
25
  ### Added
19
26
 
@@ -22,6 +29,7 @@ Tamer (https://github.com/tammeryousef1006) has created the Matterbridge Discord
22
29
  - [storage]: Added conversion for childbridge mode too.
23
30
  - [package]: Update README.md and README-SERVICE.md to include instructions for using SSL on port 443.
24
31
  - [platform]: Added checkEndpointNumbers() to detect endpoint numbers changes.
32
+ - [frontend]: Added dark mode to the frontend. Dark mode is now the default mode. It is possible to change the mode in Settings, Matterbridge settings.
25
33
 
26
34
  ### Changed
27
35
 
package/README-DOCKER.md CHANGED
@@ -40,12 +40,14 @@ sudo groupadd docker
40
40
  sudo usermod -aG docker $USER
41
41
  ```
42
42
 
43
+ After adding your user to the docker group, you need to log out and log back in for the changes to take effect. This ensures that your current session recognizes the group membership change.
44
+
43
45
  ### Run the Docker container and start it
44
46
 
45
47
  The container must have full access to the host network (needed for mdns).
46
48
 
47
49
  ```
48
- docker run --name matterbridge \
50
+ sudo docker run --name matterbridge \
49
51
  -v ${HOME}/Matterbridge:/root/Matterbridge \
50
52
  -v ${HOME}/.matterbridge:/root/.matterbridge \
51
53
  --network host --restart always -d luligu/matterbridge:latest
@@ -61,12 +63,12 @@ The docker-compose.yml file is available in the docker directory of the package
61
63
  services:
62
64
  matterbridge:
63
65
  container_name: matterbridge
64
- image: luligu/matterbridge:latest # Matterbridge image with the latest tag
65
- network_mode: host # Ensures the Matter mdns works
66
- restart: always # Ensures the container always restarts automatically
66
+ image: luligu/matterbridge:latest # Matterbridge image with the latest tag
67
+ network_mode: host # Ensures the Matter mdns works
68
+ restart: always # Ensures the container always restarts automatically
67
69
  volumes:
68
- - "${HOME}/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
69
- - "${HOME}/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
70
+ - "${HOME}/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
71
+ - "${HOME}/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
70
72
  ```
71
73
 
72
74
  copy it in the home directory or edit the existing one to add the matterbridge service.
package/README-EDGE.md ADDED
@@ -0,0 +1,76 @@
1
+ # <img src="https://github.com/Luligu/matterbridge/blob/main/frontend/public/matterbridge%2064x64.png" alt="Matterbridge Logo" width="64px" height="64px">&nbsp;&nbsp;&nbsp;Matterbridge
2
+
3
+ # Matterbridge edge
4
+
5
+ Matterbridge Edge is the version of Matterbridge running with the new Matter.js API.
6
+
7
+ After months of work, the migration of Matterbridge from the old API to the new API is now complete. This includes the conversion of the entire old storage format to the new API storage format, encompassing fabrics, resumption records, network, commissioning, operational credentials, ACL, and part numbers.
8
+
9
+ A special thanks goes to Apollon for answering my countless questions and helping to resolve the many small issues that arose during this process.
10
+
11
+ I also want to express my gratitude to Tamer, who continues to test everything daily to ensure we reach a level of confidence needed to release the update with the latest tag.
12
+
13
+ ## Storage conversion
14
+
15
+ Starting from version 1.6.8 (1.6.8-dev.11 before it is published with tag latest), the conversion process is automatic and is triggered each time you shut down, restart, or update Matterbridge using the frontend.
16
+
17
+ A message is displayed to inform you when the conversion is complete.
18
+
19
+ Once you run Matterbridge in Edge mode for the first time, the conversion will no longer be triggered.
20
+
21
+ The conversion only creates a new storage directory in the new format. It does not modify the old storage in any way, so there is no risk in trying Edge mode before its official release. You can also revert to normal mode by simply removing the -edge parameter. After the conversion is complete, the two storages will be identical. However, once you start using Edge mode, any changes made to one storage will not be reflected in the other. Therefore, it is recommended to let the conversion complete, switch to Edge mode, and continue using it exclusively.
22
+ There is no conversion back to the old storage.
23
+
24
+ ## When it will be released
25
+
26
+ Matterbridge Edge will be officially released as version 2.0.0, as it represents a major update.
27
+
28
+ ## How to run matterbridge in edge mode
29
+
30
+ To start Matterbridge in Edge mode before its official release, you need to add the -edge parameter to the command line or Docker command.
31
+
32
+ ### When you run matterbridge from a terminal
33
+
34
+ ```
35
+ matterbridge -edge
36
+ ```
37
+
38
+ ### When you run matterbridge with systemctl
39
+
40
+ Modify your /etc/systemd/system/matterbridge.service
41
+
42
+ ```
43
+ ExecStart=matterbridge -service -edge
44
+ ```
45
+
46
+ Then run:
47
+
48
+ ```
49
+ sudo systemctl daemon-reload
50
+ sudo systemctl restart matterbridge
51
+ ```
52
+
53
+ ### When you run matterbridge with docker
54
+
55
+ ```
56
+ sudo docker run --name matterbridge \
57
+ -v ${HOME}/Matterbridge:/root/Matterbridge \
58
+ -v ${HOME}/.matterbridge:/root/.matterbridge \
59
+ --network host --restart always -d luligu/matterbridge:latest \
60
+ matterbridge -docker -edge
61
+ ```
62
+
63
+ ### When you run matterbridge with docker compose
64
+
65
+ ```
66
+ services:
67
+ matterbridge:
68
+ container_name: matterbridge
69
+ image: luligu/matterbridge:latest # Matterbridge image with the latest tag
70
+ network_mode: host # Ensures the Matter mdns works
71
+ restart: always # Ensures the container always restarts automatically
72
+ volumes:
73
+ - "${HOME}/Matterbridge:/root/Matterbridge" # Mounts the Matterbridge plugin directory
74
+ - "${HOME}/.matterbridge:/root/.matterbridge" # Mounts the Matterbridge storage directory
75
+ command: [ "matterbridge", "-docker", "-edge" ] # Override the image command adding -edge
76
+ ```
package/README.md CHANGED
@@ -179,15 +179,18 @@ Features:
179
179
  - Shelly wifi battery-powered devices with sleep_mode are supported.
180
180
  - Shelly BLU devices are supported through local devices configured as ble gateway.
181
181
  - Discovered shellies are stored in local storage for quick loading on startup.
182
- - The components exposed are Light (with brightness and RGB color), Switch, Relay, Roller, Cover, PowerMeter, Temperature, Humidity and Input.
183
- - All components expose the electrical measurements with the EveHistory cluster (displayed on HA), waiting for the controllers to upgrade to the Matter 1.3 specs.
182
+ - The components exposed are Light (with brightness and RGB color), Switch, Relay, Roller, Cover, PowerMeter, Temperature, Humidity, Illuminance, Thermostat, Button and Input.
183
+ - PowerMeters expose the electrical measurements with the electricalSensor device type (suppoerted by Home Assistant and partially by SmartThings), waiting for the controllers to upgrade to the Matter 1.3 specs.
184
184
  - Shellies are controlled locally, eliminating the need for cloud or MQTT (which can both be disabled).
185
- - Shelly Gen 1 devices are controlled using the CoIoT protocol (see the note below).
185
+ - Shelly Gen 1 devices are controlled using the CoIoT protocol.
186
186
  - Shelly Gen 2 and Gen 3 devices are controlled using WebSocket.
187
187
  - The Matter device takes the name configured in the Shelly device's web page.
188
+ - Each device can be blacklisted or whitelisted using its name, id or mac address.
189
+ - Device components can be blacklisted globally or on a per-device basis.
188
190
  - If the device has a firmware update available, a message is displayed.
189
191
  - If the device's CoIoT protocol is not correctly configured, a message is displayed.
190
192
  - If the device cover/roller component is not calibrated, a message is displayed.
193
+ - If a device changes its ip address on the network, a message is displayed and the new address is stored.
191
194
  - A 10-minute timer checks if the device has reported within that time frame, and fetch un update.
192
195
 
193
196
  ### Zigbee2MQTT
@@ -162,6 +162,7 @@ export class MatterbridgePlatform {
162
162
  continue;
163
163
  if (endpointMap.has(device.uniqueId + separator + childId) && endpointMap.get(device.uniqueId + separator + childId) !== child.maybeNumber) {
164
164
  this.log.warn(`Child endpoint number for device ${CYAN}${device.uniqueId}${wr}.${CYAN}${childId}${wr} changed from ${CYAN}${endpointMap.get(device.uniqueId + separator + childId)}${wr} to ${CYAN}${child.maybeNumber}${wr}`);
165
+ endpointMap.set(device.uniqueId + separator + childId, child.maybeNumber);
165
166
  }
166
167
  if (!endpointMap.has(device.uniqueId + separator + childId)) {
167
168
  this.log.debug(`Setting child endpoint number for device ${CYAN}${device.uniqueId}${db}.${CYAN}${childId}${db} to ${CYAN}${child.maybeNumber}${db}`);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "files": {
3
- "main.css": "./static/css/main.823e08b6.css",
4
- "main.js": "./static/js/main.4dd7e165.js",
3
+ "main.css": "./static/css/main.288dc3f6.css",
4
+ "main.js": "./static/js/main.69c73b51.js",
5
5
  "static/js/453.abd36b29.chunk.js": "./static/js/453.abd36b29.chunk.js",
6
6
  "static/media/roboto-latin-700-normal.woff2": "./static/media/roboto-latin-700-normal.4535474e1cf8598695ad.woff2",
7
7
  "static/media/roboto-latin-500-normal.woff2": "./static/media/roboto-latin-500-normal.7077203b1982951ecf76.woff2",
@@ -60,12 +60,12 @@
60
60
  "static/media/roboto-greek-ext-300-normal.woff": "./static/media/roboto-greek-ext-300-normal.b590dbe5c639944366d1.woff",
61
61
  "static/media/roboto-greek-ext-400-normal.woff": "./static/media/roboto-greek-ext-400-normal.16eb83b4a3b1ea994243.woff",
62
62
  "index.html": "./index.html",
63
- "main.823e08b6.css.map": "./static/css/main.823e08b6.css.map",
64
- "main.4dd7e165.js.map": "./static/js/main.4dd7e165.js.map",
63
+ "main.288dc3f6.css.map": "./static/css/main.288dc3f6.css.map",
64
+ "main.69c73b51.js.map": "./static/js/main.69c73b51.js.map",
65
65
  "453.abd36b29.chunk.js.map": "./static/js/453.abd36b29.chunk.js.map"
66
66
  },
67
67
  "entrypoints": [
68
- "static/css/main.823e08b6.css",
69
- "static/js/main.4dd7e165.js"
68
+ "static/css/main.288dc3f6.css",
69
+ "static/js/main.69c73b51.js"
70
70
  ]
71
71
  }
@@ -1 +1 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="./"><link rel="icon" href="./matterbridge 32x32.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Matterbridge</title><link rel="manifest" href="./manifest.json"/><script defer="defer" src="./static/js/main.4dd7e165.js"></script><link href="./static/css/main.823e08b6.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="./"><link rel="icon" href="./matterbridge 32x32.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Matterbridge</title><link rel="manifest" href="./manifest.json"/><script defer="defer" src="./static/js/main.69c73b51.js"></script><link href="./static/css/main.288dc3f6.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
@@ -1,2 +1,2 @@
1
- @font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-cyrillic-ext-300-normal.80947a31d23c70204b47.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-300-normal.795dbc8140e3fef82983.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-cyrillic-300-normal.1b79538ccd585c259996.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-300-normal.5f077fd7b977d1715acf.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-greek-ext-300-normal.d6049cb54aa6fbe14c42.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-300-normal.b590dbe5c639944366d1.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-greek-300-normal.285f3e6261d8eb20417d.woff2) format("woff2"),url(../../static/media/roboto-greek-300-normal.889beddda1c9bd9f97df.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-vietnamese-300-normal.c96b16e5c05c7b7c3e89.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-300-normal.f5e7cea32756dfe7af40.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-latin-ext-300-normal.97cbc447d4a8d41a9543.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-300-normal.14982a9e4857a93b6dce.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-latin-300-normal.b850f1ff581ea232fac9.woff2) format("woff2"),url(../../static/media/roboto-latin-300-normal.c4bc0593c9954d79cb3a.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-cyrillic-ext-400-normal.5cec61a21cc20180fbe1.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-400-normal.135d076fa32aa0b4d105.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-cyrillic-400-normal.a9e19870cf6c4b973427.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-400-normal.5d2930082227d172f62c.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-greek-ext-400-normal.1df4abad55796d11a0c8.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-400-normal.16eb83b4a3b1ea994243.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-greek-400-normal.2c32b1315be61477013a.woff2) format("woff2"),url(../../static/media/roboto-greek-400-normal.160a791a8e4f46bca3cc.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-vietnamese-400-normal.d3f8e26d6c27de8102b6.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-400-normal.0dc97c66f9b542d6fa17.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-latin-ext-400-normal.2eeae187764baf05867d.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-400-normal.27da5b36b6d3a16f53f4.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-latin-400-normal.297d48e1b5a10c0831a9.woff2) format("woff2"),url(../../static/media/roboto-latin-400-normal.047a7839f69b209db815.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-cyrillic-ext-500-normal.6de16332fda843a3dc3d.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-500-normal.c0a0638f90b31d6454ba.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-cyrillic-500-normal.0ae2428323939af5e1ad.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-500-normal.dd7bc8a52c6c70c5a3f5.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-greek-ext-500-normal.4a96ba31abcce0f5d52b.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-500-normal.fd28d9c008bf3af1bed7.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-greek-500-normal.f95e757c5483310f9c11.woff2) format("woff2"),url(../../static/media/roboto-greek-500-normal.60810e07c7b0273013aa.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-vietnamese-500-normal.090fabef926bdc0e9b9f.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-500-normal.23b7b8a2524d2d4b637b.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-latin-ext-500-normal.9a18d7bb9ff7a6af7b32.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-500-normal.06c30711d588145a4541.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-latin-500-normal.7077203b1982951ecf76.woff2) format("woff2"),url(../../static/media/roboto-latin-500-normal.68d40d6d01c6f85d24ba.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-cyrillic-ext-700-normal.4750292c47fa2bc6ac1a.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-700-normal.ca247189fc12d00de361.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-cyrillic-700-normal.4fdfc29a10e7d4b7c527.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-700-normal.3f6e1548bd5175a8c342.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-greek-ext-700-normal.2dd6febad11502dec6a6.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-700-normal.4abdc9fff4507f17d726.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-greek-700-normal.77dd370f2001e184ba0d.woff2) format("woff2"),url(../../static/media/roboto-greek-700-normal.df87b053fae3d7ad5f7a.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-vietnamese-700-normal.0a79a9fabfc32e33f360.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-700-normal.35ed0597568ff6f19c16.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-latin-ext-700-normal.18841836e391d39e83a8.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-700-normal.3c5bcdd0e69c4c3ffafe.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-latin-700-normal.4535474e1cf8598695ad.woff2) format("woff2"),url(../../static/media/roboto-latin-700-normal.9f6a16a7770c87b2042b.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.tooltip-container{display:inline-block;position:relative}.tooltip-text{background-color:#555;border-radius:6px;bottom:calc(100% + 10px);color:#fff;font-size:12px;left:50%;margin-left:-60px;opacity:0;padding:5px;position:absolute;text-align:center;transition:opacity .3s;visibility:hidden;z-index:1}.tooltip-container:hover{cursor:pointer}.tooltip-container:hover .tooltip-text{opacity:1;visibility:visible}.status-enabled{background-color:green}.status-disabled,.status-enabled{border-radius:.25rem;box-shadow:2px 2px 2px #0003;color:#fff;cursor:pointer;font-size:12px;padding:.2rem;text-align:center}.status-disabled{background-color:red}.status-information{background-color:#9e9e9e;color:#fff}.status-information,.status-warning{border-radius:.25rem;box-shadow:2px 2px 2px #0003;cursor:pointer;font-size:12px;padding:2px 10px;text-align:center}.status-warning{background-color:#e9db18;color:#000}.status-sponsor{background-color:#b6409c;padding:2px 10px}.status-blue,.status-sponsor{border-radius:.25rem;box-shadow:2px 2px 2px #0003;color:#fff;cursor:pointer;font-size:12px;text-align:center}.status-blue{background-color:#5f8c9e;padding:.2rem}.PluginsIconButton{color:#000;gap:0;padding:0}.removeHeaderButton{color:#4caf50}.menu-background{background-color:#e2e2e2}.main-background{background-color:#c4c2c2}.header{gap:20px;height:40px;justify-content:flex-start;margin:0;padding:0}.header,nav{align-items:center;display:flex}.nav-link{color:#333;font-size:20px;margin:0 10px;text-decoration:none;transition:color .3s ease}.nav-link:hover{color:#007bff}.nav-link:hodddver{color:red}table{border-collapse:collapse;width:100%}thead{border:1px solid #ddd;position:sticky;top:0;z-index:auto}thead th{background:#4caf50;color:#fff}tbody td,thead th{border:1px solid #ddd;padding:5px 10px;text-align:left}tbody td{font-size:14px;margin:0}.table-content-even{background-color:#bdbdbd}.table-content-odd{background-color:#9e9e9e}.table-content-selected{background-color:#5f8c9e}h3{margin:0}.MbfPageDiv{gap:20px;height:calc(100% - 60px);margin:0;padding:0;width:100%}.MbfPageDiv,.MbfWindowDiv{display:flex;flex-direction:column}.MbfWindowDiv{background-color:#9e9e9e;border:1px solid #ddd;box-shadow:5px 5px 10px #888;box-sizing:border-box}.MbfWindowDivTable{display:flex;display:block;flex:1 1 auto;flex-direction:column;gap:0;margin:-1px;overflow:auto;padding:0}.MbfWindowHeader{background-color:#4caf50;border-bottom:1px solid #ddd;box-sizing:border-box;padding:0;width:100%}.MbfWindowFooter,.MbfWindowHeader{align-items:center;display:"flex";margin:0}.MbfWindowFooter{color:#000;height:40px;justify-content:center;padding:0 10px 10px}.MbfWindowHeaderText{color:#fff;font-weight:700;margin:0;padding:5px 10px}.MbfWindowBodyColumn{flex:1 1 auto;flex-direction:column;padding:10px 0;width:100%}.MbfWindowBodyColumn,.MbfWindowBodyRow{display:flex;gap:0;margin:0;overflow:auto}.MbfWindowBodyRow{flex:1 1 auto;flex-direction:row;height:100%;padding:0}.MbfScreen{background-color:#c4c2c2;display:flex;flex-direction:column;gap:20px;height:calc(100vh - 40px);margin:0;padding:20px;width:calc(100vw - 40px)}@media (max-width:1600px){.MbfScreen{height:800px;width:1600px}}
2
- /*# sourceMappingURL=main.823e08b6.css.map*/
1
+ @font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-cyrillic-ext-300-normal.80947a31d23c70204b47.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-300-normal.795dbc8140e3fef82983.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-cyrillic-300-normal.1b79538ccd585c259996.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-300-normal.5f077fd7b977d1715acf.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-greek-ext-300-normal.d6049cb54aa6fbe14c42.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-300-normal.b590dbe5c639944366d1.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-greek-300-normal.285f3e6261d8eb20417d.woff2) format("woff2"),url(../../static/media/roboto-greek-300-normal.889beddda1c9bd9f97df.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-vietnamese-300-normal.c96b16e5c05c7b7c3e89.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-300-normal.f5e7cea32756dfe7af40.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-latin-ext-300-normal.97cbc447d4a8d41a9543.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-300-normal.14982a9e4857a93b6dce.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:300;src:url(../../static/media/roboto-latin-300-normal.b850f1ff581ea232fac9.woff2) format("woff2"),url(../../static/media/roboto-latin-300-normal.c4bc0593c9954d79cb3a.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-cyrillic-ext-400-normal.5cec61a21cc20180fbe1.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-400-normal.135d076fa32aa0b4d105.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-cyrillic-400-normal.a9e19870cf6c4b973427.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-400-normal.5d2930082227d172f62c.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-greek-ext-400-normal.1df4abad55796d11a0c8.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-400-normal.16eb83b4a3b1ea994243.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-greek-400-normal.2c32b1315be61477013a.woff2) format("woff2"),url(../../static/media/roboto-greek-400-normal.160a791a8e4f46bca3cc.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-vietnamese-400-normal.d3f8e26d6c27de8102b6.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-400-normal.0dc97c66f9b542d6fa17.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-latin-ext-400-normal.2eeae187764baf05867d.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-400-normal.27da5b36b6d3a16f53f4.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../../static/media/roboto-latin-400-normal.297d48e1b5a10c0831a9.woff2) format("woff2"),url(../../static/media/roboto-latin-400-normal.047a7839f69b209db815.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-cyrillic-ext-500-normal.6de16332fda843a3dc3d.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-500-normal.c0a0638f90b31d6454ba.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-cyrillic-500-normal.0ae2428323939af5e1ad.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-500-normal.dd7bc8a52c6c70c5a3f5.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-greek-ext-500-normal.4a96ba31abcce0f5d52b.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-500-normal.fd28d9c008bf3af1bed7.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-greek-500-normal.f95e757c5483310f9c11.woff2) format("woff2"),url(../../static/media/roboto-greek-500-normal.60810e07c7b0273013aa.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-vietnamese-500-normal.090fabef926bdc0e9b9f.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-500-normal.23b7b8a2524d2d4b637b.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-latin-ext-500-normal.9a18d7bb9ff7a6af7b32.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-500-normal.06c30711d588145a4541.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../../static/media/roboto-latin-500-normal.7077203b1982951ecf76.woff2) format("woff2"),url(../../static/media/roboto-latin-500-normal.68d40d6d01c6f85d24ba.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-cyrillic-ext-700-normal.4750292c47fa2bc6ac1a.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-ext-700-normal.ca247189fc12d00de361.woff) format("woff");unicode-range:u+0460-052f,u+1c80-1c88,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-cyrillic-700-normal.4fdfc29a10e7d4b7c527.woff2) format("woff2"),url(../../static/media/roboto-cyrillic-700-normal.3f6e1548bd5175a8c342.woff) format("woff");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-greek-ext-700-normal.2dd6febad11502dec6a6.woff2) format("woff2"),url(../../static/media/roboto-greek-ext-700-normal.4abdc9fff4507f17d726.woff) format("woff");unicode-range:u+1f??}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-greek-700-normal.77dd370f2001e184ba0d.woff2) format("woff2"),url(../../static/media/roboto-greek-700-normal.df87b053fae3d7ad5f7a.woff) format("woff");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-vietnamese-700-normal.0a79a9fabfc32e33f360.woff2) format("woff2"),url(../../static/media/roboto-vietnamese-700-normal.35ed0597568ff6f19c16.woff) format("woff");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-latin-ext-700-normal.18841836e391d39e83a8.woff2) format("woff2"),url(../../static/media/roboto-latin-ext-700-normal.3c5bcdd0e69c4c3ffafe.woff) format("woff");unicode-range:u+0100-02af,u+0304,u+0308,u+0329,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:700;src:url(../../static/media/roboto-latin-700-normal.4535474e1cf8598695ad.woff2) format("woff2"),url(../../static/media/roboto-latin-700-normal.9f6a16a7770c87b2042b.woff) format("woff");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+2074,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}[frontend-theme=classic]{--main-bg-color:#c4c2c2;--main-text-color:#000;--main-grey-color:#616161;--main-light-color:#959595;--main-dark-color:#333;--main-blue-color:#1976d2;--main-icon-color:#4d4d4d;--main-log-color:var(--main-text-color);--main-button-color:#fff;--main-button-bg-color:#4caf50;--main-menu-color:#26292d;--main-menu-bg-color:#e2e2e2;--main-menu-hover-color:#959595;--main-label-color:#616161;--header-bg-color:#4caf50;--header-text-color:#fff;--footer-bg-color:#c4c2c2;--footer-text-color:#000;--ttip-bg-color:#555;--ttip-text-color:#fff;--table-border-color:#ddd;--table-text-color:#white;--table-even-bg-color:#bdbdbd;--table-odd-bg-color:#9e9e9e;--table-selected-bg-color:#5f8c9e;--div-bg-color:#9e9e9e;--div-text-color:#000;--div-shadow-color:#888;--div-border-color:#8b8b8b;--div-border-radius:0px;--div-title-bg-color:var(--div-bg-color);--div-title-text-color:#000}[frontend-theme=classic],[frontend-theme=dark]{background-color:var(--main-bg-color);color:var(--main-text-color);font-family:Roboto,Helvetica,Arial,sans-serif}[frontend-theme=dark]{--main-bg-color:#26292d;--main-text-color:#fff;--main-grey-color:#616161;--main-light-color:#959595;--main-dark-color:#333;--main-blue-color:#1976d2;--main-icon-color:var(--main-light-color);--main-log-color:var(--main-light-color);--main-button-color:#fff;--main-button-bg-color:var(--main-blue-color);--main-menu-color:var(--main-bg-color);--main-menu-bg-color:#e2e2e2;--main-menu-hover-color:#959595;--main-label-color:var(--main-grey-color);--header-bg-color:#1b1d21;--header-text-color:var(--main-blue-color);--footer-bg-color:#1b1d21;--footer-text-color:var(--main-grey-color);--ttip-bg-color:#555;--ttip-text-color:#fff;--table-border-color:var(--div-bg-color);--table-text-color:var(--main-light-color);--table-even-bg-color:var(--div-bg-color);--table-odd-bg-color:var(--div-bg-color);--table-selected-bg-color:var(--main-bg-color);--div-bg-color:#1b1d21;--div-text-color:var(--main-light-color);--div-shadow-color:#34373d;--div-border-color:#1b1d21;--div-border-radius:5px;--div-title-bg-color:#1b1d21;--div-title-text-color:var(--main-blue-color)}.tooltip-container{display:inline-block;position:relative}.tooltip-text{background-color:var(--ttip-bg-color);border-radius:6px;bottom:calc(100% + 10px);color:var(--ttip-text-color);font-size:12px;left:50%;margin-left:-60px;opacity:0;padding:5px;position:absolute;text-align:center;transition:opacity .3s;visibility:hidden;z-index:1}.tooltip-container:hover{cursor:pointer}.tooltip-container:hover .tooltip-text{opacity:1;visibility:visible}.status-enabled{background-color:green}.status-disabled,.status-enabled{border-radius:.25rem;box-shadow:2px 2px 2px #0003;color:#fff;cursor:pointer;font-size:12px;padding:.2rem;text-align:center}.status-disabled{background-color:red}.status-information{background-color:#9e9e9e;color:#fff}.status-information,.status-warning{border-radius:.25rem;box-shadow:2px 2px 2px #0003;cursor:pointer;font-size:12px;padding:2px 10px;text-align:center}.status-warning{background-color:#e9db18;color:#000}.status-sponsor{background-color:#b6409c;padding:2px 10px}.status-blue,.status-sponsor{border-radius:.25rem;box-shadow:2px 2px 2px #0003;color:#fff;cursor:pointer;font-size:12px;text-align:center}.status-blue{background-color:#5f8c9e;padding:.2rem}.PluginsIconButton{color:#000;gap:0;padding:0}.main-background{background-color:var(--main-bg-color)}.header{gap:20px;height:40px;justify-content:flex-start;margin:0;padding:0}.header,nav{align-items:center;display:flex}.nav-link{color:var(--main-icon-color);font-size:20px;margin:0 10px;text-decoration:none;transition:color .3s ease}.nav-link:hover{color:var(--main-blue-color)}table{border-collapse:collapse;width:100%}thead{border:1px solid var(--table-border-color);position:sticky;top:0;z-index:auto}thead th{background:var(--header-bg-color);color:var(--header-text-color)}tbody td,thead th{border:1px solid var(--table-border-color);padding:5px 10px;text-align:left}tbody td{font-size:14px;margin:0}.table-content-even{background-color:var(--table-even-bg-color);color:var(--table-text-color)}.table-content-odd{background-color:var(--table-odd-bg-color);color:var(--table-text-color)}.table-content-selected{background-color:var(--table-selected-bg-color);color:var(--table-text-color)}h3{margin:0}.MbfPageDiv{gap:20px;height:calc(100% - 60px);margin:0;padding:0;width:100%}.MbfPageDiv,.MbfWindowDiv{display:flex;flex-direction:column}.MbfWindowDiv{background-color:var(--div-bg-color);border:1px solid var(--table-border-color);border-radius:var(--div-border-radius);box-shadow:5px 5px 10px var(--div-shadow-color);box-sizing:border-box}.MbfWindowDivTable{display:flex;display:block;flex:1 1 auto;flex-direction:column;gap:0;margin:-1px;overflow:auto;padding:0}.MbfWindowHeader{background-color:var(--header-bg-color);border-bottom:1px solid var(--table-border-color);box-sizing:border-box;color:var(--header-text-color);padding:0;width:100%}.MbfWindowFooter,.MbfWindowHeader{align-items:center;display:"flex";margin:0}.MbfWindowFooter{background-color:var(--footer-bg-color);color:var(--footer-text-color);height:40px;justify-content:center;padding:0 10px 10px}.MbfWindowHeaderText{color:var(--header-text-color);font-weight:700;margin:0;padding:5px 10px}.MbfWindowBodyColumn{flex:1 1 auto;flex-direction:column;padding:10px 0;width:100%}.MbfWindowBodyColumn,.MbfWindowBodyRow{display:flex;gap:0;margin:0;overflow:auto}.MbfWindowBodyRow{flex:1 1 auto;flex-direction:row;height:100%;padding:0}.MbfScreen{background-color:var(--main-bg-color);display:flex;flex-direction:column;gap:20px;height:calc(100vh - 40px);margin:0;padding:20px;width:calc(100vw - 40px)}@media (max-width:1400px){.MbfScreen{height:700px;width:1400px}}
2
+ /*# sourceMappingURL=main.288dc3f6.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static/css/main.288dc3f6.css","mappings":"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","sources":["../node_modules/@fontsource/roboto/300.css","../node_modules/@fontsource/roboto/400.css","../node_modules/@fontsource/roboto/500.css","../node_modules/@fontsource/roboto/700.css","index.css","App.css"],"sourcesContent":["/* roboto-cyrillic-ext-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-cyrillic-ext-300-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-300-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-cyrillic-300-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-300-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-greek-ext-300-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-300-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-greek-300-normal.woff2) format('woff2'), url(./files/roboto-greek-300-normal.woff) format('woff');\n unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;\n}\n\n/* roboto-vietnamese-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-vietnamese-300-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-300-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-latin-ext-300-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-300-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-300-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 300;\n src: url(./files/roboto-latin-300-normal.woff2) format('woff2'), url(./files/roboto-latin-300-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","/* roboto-cyrillic-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-ext-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-400-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-400-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-ext-400-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-400-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-400-normal.woff2) format('woff2'), url(./files/roboto-greek-400-normal.woff) format('woff');\n unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;\n}\n\n/* roboto-vietnamese-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-vietnamese-400-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-400-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-ext-400-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-400-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-400-normal.woff2) format('woff2'), url(./files/roboto-latin-400-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","/* roboto-cyrillic-ext-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-cyrillic-ext-500-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-500-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-cyrillic-500-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-500-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-greek-ext-500-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-500-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-greek-500-normal.woff2) format('woff2'), url(./files/roboto-greek-500-normal.woff) format('woff');\n unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;\n}\n\n/* roboto-vietnamese-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-vietnamese-500-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-500-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-latin-ext-500-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-500-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-500-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url(./files/roboto-latin-500-normal.woff2) format('woff2'), url(./files/roboto-latin-500-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","/* roboto-cyrillic-ext-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-cyrillic-ext-700-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-700-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-cyrillic-700-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-700-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-greek-ext-700-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-700-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-greek-700-normal.woff2) format('woff2'), url(./files/roboto-greek-700-normal.woff) format('woff');\n unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;\n}\n\n/* roboto-vietnamese-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-vietnamese-700-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-700-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-latin-ext-700-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-700-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-700-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 700;\n src: url(./files/roboto-latin-700-normal.woff2) format('woff2'), url(./files/roboto-latin-700-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}","body {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n","/* App.css */\r\n\r\n/* Define the style for the body element */\r\n\r\n/* Classic Mode */\r\n[frontend-theme=\"classic\"] {\r\n --main-bg-color: #c4c2c2;\r\n --main-text-color: black;\r\n --main-grey-color: #616161;\r\n --main-light-color: #959595;\r\n --main-dark-color: #333;\r\n --main-blue-color: #1976d2;\r\n --main-icon-color: #4d4d4d;\r\n --main-log-color: var(--main-text-color);\r\n --main-button-color: #ffffff;\r\n --main-button-bg-color: #4CAF50;\r\n --main-menu-color: #26292d;\r\n --main-menu-bg-color: #e2e2e2;\r\n --main-menu-hover-color: #959595;\r\n --main-label-color: #616161;\r\n\r\n --header-bg-color: #4CAF50;\r\n --header-text-color: white;\r\n\r\n --footer-bg-color: #c4c2c2;\r\n --footer-text-color: black;\r\n\r\n --ttip-bg-color: #555;\r\n --ttip-text-color: #fff;\r\n\r\n --table-border-color: #ddd;\r\n --table-text-color: #white;\r\n --table-even-bg-color: #bdbdbd;\r\n --table-odd-bg-color: #9e9e9e;\r\n --table-selected-bg-color: #5f8c9e;\r\n\r\n --div-bg-color: #9e9e9e;\r\n --div-text-color: black;\r\n --div-shadow-color: #888;\r\n --div-border-color: rgb(139, 139, 139);\r\n --div-border-radius: 0px;\r\n --div-title-bg-color: var(--div-bg-color);\r\n --div-title-text-color: black;\r\n\r\n background-color: var(--main-bg-color);\r\n color: var(--main-text-color);\r\n font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;\r\n}\r\n\r\n/* Dark Mode */\r\n[frontend-theme=\"dark\"] {\r\n --main-bg-color: #26292d;\r\n --main-text-color: #ffffff;\r\n --main-grey-color: #616161;\r\n --main-light-color: #959595;\r\n --main-dark-color: #333;\r\n --main-blue-color: #1976d2;\r\n --main-icon-color: var(--main-light-color);\r\n --main-log-color: var(--main-light-color);\r\n --main-button-color: #ffffff;\r\n --main-button-bg-color: var(--main-blue-color);\r\n --main-menu-color: var(--main-bg-color);\r\n --main-menu-bg-color: #e2e2e2;\r\n --main-menu-hover-color: #959595;\r\n --main-label-color: var(--main-grey-color);\r\n\r\n --header-bg-color: #1b1d21;\r\n --header-text-color: var(--main-blue-color);\r\n\r\n --footer-bg-color: #1b1d21;\r\n --footer-text-color: var(--main-grey-color);\r\n\r\n --ttip-bg-color: #555;\r\n --ttip-text-color: #fff;\r\n\r\n --table-border-color: var(--div-bg-color);\r\n --table-text-color: var(--main-light-color);\r\n --table-even-bg-color: var(--div-bg-color);\r\n --table-odd-bg-color: var(--div-bg-color);\r\n --table-selected-bg-color: var(--main-bg-color);\r\n\r\n --div-bg-color: #1b1d21;\r\n --div-text-color: var(--main-light-color);\r\n --div-shadow-color: #34373d;\r\n --div-border-color: #1b1d21;\r\n --div-border-radius: 5px;\r\n --div-title-bg-color: #1b1d21;\r\n --div-title-text-color: var(--main-blue-color);\r\n\r\n background-color: var(--main-bg-color);\r\n color: var(--main-text-color);\r\n font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;\r\n}\r\n\r\n/* Tooltip style */\r\n.tooltip-container {\r\n position: relative;\r\n display: inline-block;\r\n}\r\n\r\n.tooltip-text {\r\n visibility: hidden;\r\n background-color: var(--ttip-bg-color);\r\n color: var(--ttip-text-color);\r\n text-align: center;\r\n padding: 5px 5px;\r\n border-radius: 6px;\r\n\r\n position: absolute;\r\n z-index: 1;\r\n bottom: calc(100% + 10px);\r\n left: 50%;\r\n margin-left: -60px;\r\n\r\n opacity: 0;\r\n transition: opacity 0.3s;\r\n font-size: 12px;\r\n}\r\n\r\n.tooltip-container:hover {\r\n cursor: pointer;\r\n}\r\n\r\n.tooltip-container:hover .tooltip-text {\r\n visibility: visible;\r\n opacity: 1;\r\n}\r\n\r\n/* StatusIndicator style */\r\n.status-enabled {\r\n background-color: green;\r\n color: white;\r\n padding: 0.2rem;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-disabled {\r\n background-color: red;\r\n color: white;\r\n padding: 0.2rem;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-information {\r\n background-color: #9e9e9e;\r\n color: white;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n padding-bottom: 2px;\r\n padding-top: 2px;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-warning {\r\n background-color: #e9db18;\r\n color: black;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n padding-bottom: 2px;\r\n padding-top: 2px;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-sponsor {\r\n background-color: #b6409c;\r\n color: white;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n padding-bottom: 2px;\r\n padding-top: 2px;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n.status-blue {\r\n background-color: #5f8c9e;\r\n color: white;\r\n padding: 0.2rem;\r\n border-radius: 0.25rem;\r\n text-align: center;\r\n font-size: 12px;\r\n cursor: pointer;\r\n box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n/* Home page style */\r\n\r\n.PluginsIconButton {\r\n color: #000000;\r\n padding: 0;\r\n gap: 0;\r\n}\r\n\r\n.main-background {\r\n background-color: var(--main-bg-color);\r\n}\r\n\r\n/* Header style */\r\n.header {\r\n display: flex;\r\n align-items: center;\r\n justify-content: flex-start;\r\n gap: 20px;\r\n margin: 0;\r\n padding: 0;\r\n height: 40px;\r\n}\r\n\r\n/* Navigation style */\r\nnav {\r\n display: flex;\r\n align-items: center;\r\n}\r\n\r\n/* Navigation in Header.js style */\r\n.nav-link {\r\n margin: 0 10px;\r\n font-size: 20px;\r\n text-decoration: none;\r\n color: var(--main-icon-color);\r\n transition: color 0.3s ease;\r\n}\r\n\r\n.nav-link:hover {\r\n color: var(--main-blue-color);\r\n}\r\n\r\n/* Table style */\r\ntable {\r\n border-collapse: collapse;\r\n width: 100%;\r\n}\r\n\r\nthead {\r\n position: sticky;\r\n top: 0;\r\n border: 1px solid var(--table-border-color);\r\n z-index: auto;\r\n}\r\n\r\nthead th {\r\n border: 1px solid var(--table-border-color);\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n color: var(--header-text-color);\r\n background: var(--header-bg-color);\r\n text-align: left;\r\n}\r\n\r\ntbody td {\r\n border: 1px solid var(--table-border-color);\r\n margin: 0;\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n text-align: left;\r\n font-size: 14px;\r\n}\r\n\r\n.table-content-even {\r\n color: var(--table-text-color);\r\n background-color: var(--table-even-bg-color);\r\n}\r\n\r\n.table-content-odd {\r\n color: var(--table-text-color);\r\n background-color: var(--table-odd-bg-color);\r\n}\r\n\r\n.table-content-selected {\r\n color: var(--table-text-color);\r\n background-color: var(--table-selected-bg-color);\r\n}\r\n\r\nh3 {\r\n margin: 0;\r\n}\r\n\r\n/* Define the style for the main page element */\r\n.MbfPageDiv {\r\n display: flex;\r\n flex-direction: column;\r\n height: calc(100% - 60px);\r\n width: 100%;\r\n margin: 0px;\r\n padding: 0px;\r\n gap: 20px;\r\n}\r\n\r\n/* Define the style for the main div element */\r\n.MbfWindowDiv {\r\n display: flex;\r\n flex-direction: column;\r\n box-shadow: 5px 5px 10px var(--div-shadow-color);\r\n border: 1px solid var(--table-border-color);\r\n border-radius: var(--div-border-radius);\r\n box-sizing: border-box;\r\n background-color: var(--div-bg-color);\r\n}\r\n\r\n/* Define the style for the main div element */\r\n.MbfWindowDivTable {\r\n display: flex;\r\n flex-direction: column;\r\n flex: 1 1 auto;\r\n margin: -1px;\r\n padding: 0;\r\n gap: 0;\r\n overflow: auto;\r\n display: block;\r\n}\r\n\r\n/* Define the style for the header element */\r\n.MbfWindowHeader {\r\n display: 'flex';\r\n align-items: center;\r\n width: 100%;\r\n border-bottom: 1px solid var(--table-border-color);\r\n color: var(--header-text-color);\r\n background-color: var(--header-bg-color);\r\n margin: 0px;\r\n padding: 0px;\r\n box-sizing: border-box;\r\n}\r\n\r\n/* Define the style for the footer element */\r\n.MbfWindowFooter {\r\n display: 'flex';\r\n align-items: center;\r\n justify-content: center;\r\n height: 40px;\r\n color: var(--footer-text-color);\r\n background-color: var(--footer-bg-color);\r\n margin: 0px;\r\n padding: 10px;\r\n padding-top: 0px;\r\n}\r\n\r\n/* Define the style for the header text element */\r\n.MbfWindowHeaderText {\r\n color: var(--header-text-color);\r\n font-weight: bold;\r\n margin: 0px;\r\n padding: 5px;\r\n padding-right: 10px;\r\n padding-left: 10px;\r\n}\r\n\r\n/* Define the style for the body element */\r\n.MbfWindowBodyColumn {\r\n display: flex;\r\n flex-direction: column;\r\n flex: 1 1 auto;\r\n width: 100%;\r\n margin: 0px;\r\n padding: 10px 0px 10px 0px;\r\n gap: 0px;\r\n overflow: auto;\r\n}\r\n\r\n/* Define the style for the body element */\r\n.MbfWindowBodyRow {\r\n display: flex;\r\n flex-direction: row;\r\n flex: 1 1 auto;\r\n height: 100%;\r\n padding: 0px 10px 0px 10px;\r\n margin: 0px;\r\n padding: 0px;\r\n gap: 0px;\r\n overflow: auto;\r\n}\r\n\r\n/* Main screen style */\r\n.MbfScreen {\r\n display: flex;\r\n flex-direction: column;\r\n width: calc(100vw - 40px);\r\n height: calc(100vh - 40px);\r\n gap: 20px;\r\n margin: 0;\r\n padding: 20px;\r\n background-color: var(--main-bg-color);\r\n}\r\n\r\n/* Styles for mobile screens */\r\n@media (max-width: 1400px) {\r\n .MbfScreen {\r\n width: 1400px;\r\n height: 700px;\r\n }\r\n}"],"names":[],"sourceRoot":""}