diff options
| author | Kumar Priyansh <[email protected]> | 2019-12-30 07:48:18 +0530 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2019-12-30 07:48:18 +0530 |
| commit | f4b18505c0668593149ed0de51f611fe33a814c6 (patch) | |
| tree | 482c05e267cee7031f12e2f0d9adfab6431a0fab | |
| parent | 9cfc73544a66358510854d856553380ec941d3e4 (diff) | |
| download | nativekit-f4b18505c0668593149ed0de51f611fe33a814c6.tar.xz nativekit-f4b18505c0668593149ed0de51f611fe33a814c6.zip | |
Added styles for Vibrant Window
| -rw-r--r-- | dist/mac/css/all.css | 4 | ||||
| -rw-r--r-- | templates/mac/index.html | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dist/mac/css/all.css b/dist/mac/css/all.css index 3909594..2029542 100644 --- a/dist/mac/css/all.css +++ b/dist/mac/css/all.css @@ -562,6 +562,10 @@ body { flex-direction: column; } +.window-vibrant.dark { + color: white; +} + .content { position: relative; overflow-y: auto; diff --git a/templates/mac/index.html b/templates/mac/index.html index c03cd3b..fbc128d 100644 --- a/templates/mac/index.html +++ b/templates/mac/index.html @@ -10,7 +10,7 @@ </head> <body> - <div class="window dark"> + <div class="window"> <header class="titlebar draggable"> <h1 class="window-title">macOS Native Kit</h1> <div class="toolbars"> @@ -56,7 +56,7 @@ </div> </div> </header> - <div class="content "></div> + <div class="content"></div> <footer class="titlebar statusbar"> <h1 class="window-title">Native Kit</h1> </footer> @@ -64,7 +64,7 @@ <script src="./../../dist/mac/scripts/nativekit.js"></script> <script> var target = document.getElementById('progress-spinner'); - var spinner = new Spinner().spin(target); + var spinner = new Spinner({color: white}).spin(target); </script> </body> |
