From bbd85d25163e99ba9c1ff8db8a6720947e82503d Mon Sep 17 00:00:00 2001 From: KodeStar Date: Thu, 8 Feb 2018 22:51:12 +0000 Subject: [PATCH] Some fixes --- CHANGELOG.md | 3 ++- public/css/app.css | 24 ++++++++++++++++++++++-- public/mix-manifest.json | 4 ++-- readme.md | 18 ++++++++++++++++++ resources/assets/sass/_app.scss | 23 +++++++++++++++++++++-- 5 files changed, 65 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d4eca03..504b6522 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,14 @@ - guzzlehttp/guzzle as a dependency - Variable polling, so interval is increased when an app is idle and decreased when it's active - Turkish language translation +- Added Sabnzbd supported application ### Changed - Updated composer dependencies - Added live stats to Nzbget supported application ### Fixed - +- Fixed autocomplete being hard to see ## v1.2.0 (2018-02-07) diff --git a/public/css/app.css b/public/css/app.css index 9bf5ec11..fbb5d444 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -877,14 +877,16 @@ input:checked + .slider:before { @-webkit-keyframes autofill { to { background: #f5f5f5; - color: #fff; + color: #2f313a; + font-weight: bold; } } @keyframes autofill { to { background: #f5f5f5; - color: #fff; + color: #2f313a; + font-weight: bold; } } @@ -1132,6 +1134,24 @@ hr { line-height: 1; } +input:-webkit-autofill, +input:-webkit-autofill:hover, +input:-webkit-autofill:focus +input:-webkit-autofill, +textarea:-webkit-autofill, +textarea:-webkit-autofill:hover +textarea:-webkit-autofill:focus, +select:-webkit-autofill, +select:-webkit-autofill:hover, +select:-webkit-autofill:focus { + border: inherit; + -webkit-text-fill-color: inherit; + -webkit-box-shadow: inherit; + -webkit-transition: inherit; + transition: inherit; + color: #2f313a !important; +} + /*! Huebee v2.0.0 http://huebee.buzz ---------------------------------------------- */ diff --git a/public/mix-manifest.json b/public/mix-manifest.json index 61c11f6b..b490b54b 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -1,4 +1,4 @@ { - "/css/app.css": "/css/app.css?id=1d47190e8f6991332083", - "/js/app.js": "/js/app.js?id=7b83db042da1287c25dd" + "/css/app.css": "/css/app.css?id=931fc4476963f6f50154", + "/js/app.js": "/js/app.js?id=1740b16555d4a8660c9b" } \ No newline at end of file diff --git a/readme.md b/readme.md index 2ba90550..f31c423d 100644 --- a/readme.md +++ b/readme.md @@ -10,6 +10,24 @@ Why not use it as your browser start page? It even has the ability to include a ## Video If you want to see a quick video of it in use, go to https://drive.google.com/file/d/1cijXgmjem_q2OfKMp36qVuXRiyOzvhWC/view +## Supported applications +You can use the app to link to any site or application, but "Supported" apps will auto fill in the icon for the app and supply a default color for the tile. In addition *enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboad. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size and download speed while something is downloading. + +**Enhanced** +- NZBGet +- Sabnzbd + +**Supported** +- Duplicati +- Emby +- NZBGet +- pFsense +- Pihole +- Plex +- Portainer +- UniFi +- Sabnzbd + ## Installing Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support. diff --git a/resources/assets/sass/_app.scss b/resources/assets/sass/_app.scss index 8db715ab..478a019c 100644 --- a/resources/assets/sass/_app.scss +++ b/resources/assets/sass/_app.scss @@ -522,13 +522,15 @@ div.create { @-webkit-keyframes autofill { to { background:#f5f5f5; - color:#fff; + color:$app-text; + font-weight: bold; } } @keyframes autofill { to { background:#f5f5f5; - color:#fff; + color:$app-text; + font-weight: bold; } } @@ -754,4 +756,21 @@ hr { } } +} + +input:-webkit-autofill, +input:-webkit-autofill:hover, +input:-webkit-autofill:focus +input:-webkit-autofill, +textarea:-webkit-autofill, +textarea:-webkit-autofill:hover +textarea:-webkit-autofill:focus, +select:-webkit-autofill, +select:-webkit-autofill:hover, +select:-webkit-autofill:focus { + border: inherit; + -webkit-text-fill-color: inherit; + -webkit-box-shadow: inherit; + transition: inherit; + color: $app-text!important; } \ No newline at end of file