custom-electron-titlebar 3.2.8 → 3.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -19
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  This project is a typescript library for electron that allows you to configure a fully customizable title bar.
4
4
 
5
- ## IMPORTANT
6
- **This project has been archived and is now read-only. I thank all the people who supported the project with issues, pull request, ideas, etc. <br/>Because I do not have the time to continue with the development of it I have decided to close this project, but, you can always rely on the code to develop something better 😉**
7
-
8
- ### **It is a library for electron, it cannot be used on a basic website.**
9
-
10
5
  [![LICENSE](https://img.shields.io/github/license/AlexTorresSk/custom-electron-titlebar.svg)](https://github.com/AlexTorresSk/custom-electron-titlebar/blob/master/LICENSE)
11
6
  [![NPM Version](https://img.shields.io/npm/v/custom-electron-titlebar.svg)](https://npmjs.org/package/custom-electron-titlebar)
12
7
 
@@ -201,20 +196,20 @@ titlebar.dispose();
201
196
  ## CSS Classes
202
197
  The following CSS classes exist and can be used to customize the titlebar
203
198
 
204
- | Class name | Description |
205
- | --------------------------- | ----------------------------------------------- |
206
- | .titlebar | Styles the titlebar. |
207
- | .window-appicon | Styles the app icon on the titlebar. |
208
- | .window-title | Styles the window title. (Example: font-size) |
209
- | .window-controls-container | Styles the window controls section. |
210
- | .resizer top | Description missing |
211
- | .resizer left | Description missing |
212
- | .menubar | Description missing |
213
- | .menubar-menu-button | Styles the main menu elements. (Example: color) |
214
- | .menubar-menu-button open | Description missing |
215
- | .menubar-menu-title | Description missing |
216
- | .action-item | Description missing |
217
- | .action-menu-item | Styles action menu elements. (Example: color) |
199
+ | Class name | Description |
200
+ | --------------------------- | -----------------------------------------------------------------|
201
+ | .titlebar | Styles the titlebar. |
202
+ | .window-appicon | Styles the app icon on the titlebar. |
203
+ | .window-title | Styles the window title. (Example: font-size) |
204
+ | .window-controls-container | Styles the window controls section. |
205
+ | .resizer top | Styles the resizer invisible top bar |
206
+ | .resizer left | Styles the resizer invisible left bar |
207
+ | .menubar | Styles the top menus |
208
+ | .menubar-menu-button | Styles the main menu elements. (Example: color) |
209
+ | .menubar-menu-button open | Styles the main menu elements when open menu. (Example: color) |
210
+ | .menubar-menu-title | Description missing |
211
+ | .action-item | Description missing |
212
+ | .action-menu-item | Styles action menu elements. (Example: color) |
218
213
 
219
214
 
220
215
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "custom-electron-titlebar",
3
- "version": "3.2.8",
3
+ "version": "3.2.9",
4
4
  "description": "Custom Electron Titlebar is a library for electron that allows you to configure a fully customizable title bar.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",