From 1d859bfe676ceae30298bb8414fec4928824eac5 Mon Sep 17 00:00:00 2001 From: PDB Dev Date: Wed, 7 Sep 2022 17:43:53 +0500 Subject: [PATCH 1/2] Compatibility with Redmine 5.0.2 --- init.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.rb b/init.rb index 5dded29..5e37943 100644 --- a/init.rb +++ b/init.rb @@ -1,5 +1,5 @@ require 'redmine' -require_dependency 'redmine_omniauth_google/hooks' +require_dependency File.dirname(__FILE__) + '/lib/redmine_omniauth_google/hooks' Redmine::Plugin.register :redmine_omniauth_google do name 'Redmine Omniauth Google plugin' From b17dcdd9ad6b7018953ef64979d0ca5566e3e749 Mon Sep 17 00:00:00 2001 From: PDB Dev Date: Wed, 7 Sep 2022 18:14:40 +0500 Subject: [PATCH 2/2] Changed Button Style --- assets/stylesheets/buttons.css | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/assets/stylesheets/buttons.css b/assets/stylesheets/buttons.css index aaf823d..9971f49 100644 --- a/assets/stylesheets/buttons.css +++ b/assets/stylesheets/buttons.css @@ -1,5 +1,15 @@ -.button-login { - position: relative; +a button.button-login { + background: #FF5757; /* var(--color-red); */ + color: #fff; /*var(--color-fff); */ + font-weight: bold; + width: 100%; + border: 0px; + padding: 10px 5px; + height: auto; + border-radius: 8px; + line-height:24px; + margin:30px 0px; + /*position: relative; left: 45%; display: inline-block; border: 1px solid #999; @@ -7,17 +17,22 @@ margin-top: 10px; width: 135px; height: 25px; - padding: 0; + padding: 0;*/ + +} +a button.button-login:hover{ + background: #fdcccc; /* var(--color-red-superlight) */ + color: #FF5757; /* var(--color-red) */ } .button-login-icon { float: left; - height: 18px; + max-height: 24px; padding: 1px 0px 0px 4px; } .button-login-text { - line-height: 21px; + /*line-height: 21px; background-image: -webkit-linear-gradient(bottom, #ddd, white); - font-size: 12px; + font-size: 12px; */ }