diff --git a/README.md b/README.md index 2483978..8109fcb 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,6 @@ git clone https://git.licsber.site/ruby/open_explorer ## ChangeLog ``` -250823周六:(0.0.7)修改按钮出现位置;优化样式 +250823周六:(0.0.8)修改按钮出现位置;优化样式 250823周六:(0.0.1)基础功能 ``` diff --git a/app/views/hooks/_view_issues_show_details_bottom.html.erb b/app/views/hooks/_view_issues_show_details_bottom.html.erb index a814ef9..524a121 100644 --- a/app/views/hooks/_view_issues_show_details_bottom.html.erb +++ b/app/views/hooks/_view_issues_show_details_bottom.html.erb @@ -25,51 +25,38 @@ border-radius: 8px; display: inline-flex; align-items: center; - gap: 8px; + gap: 4px; transition: all 0.3s ease; - font-size: 16px; + font-size: 14px; position: relative; overflow: hidden; - text-decoration: none; + text-decoration: none !important; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border: none; cursor: pointer; } - - .archive-button::after { - content: ''; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - height: 2px; - background: white; - transform: scaleX(0); - transform-origin: right; - transition: transform 0.3s ease; - } - + .archive-button:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); background: #444; } - + .archive-button:hover::after { transform: scaleX(1); transform-origin: left; } - + .archive-button:active { transform: translateY(1px); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } - + .archive-icon { font-size: 20px; transition: transform 0.3s ease; } - + .archive-button:hover .archive-icon { transform: scale(1.2) rotate(10deg); } diff --git a/init.rb b/init.rb index 0811e50..2fe5f11 100644 --- a/init.rb +++ b/init.rb @@ -2,7 +2,7 @@ Redmine::Plugin.register :open_explorer do name 'Open Explorer plugin' author 'licsber' description 'Open archive path using explorer.' - version '0.0.7' + version '0.0.8' url 'https://git.licsber.site/ruby/open_explorer' author_url 'https://licsber.site' end