remove tooltip style and provide wiki hooks
This commit is contained in:
parent
b1f7a2161b
commit
f5f8ea41dc
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
- Move assign to me button to assign to block
|
- Move assign to me button to assign to block
|
||||||
- svg icons support for Redmine 6
|
- svg icons support for Redmine 6
|
||||||
|
- remove tooltip css style, which overwrote default redmine style
|
||||||
|
|
||||||
## 3.4.0
|
## 3.4.0
|
||||||
|
|
||||||
|
@ -177,7 +177,7 @@ The following modules are available :
|
|||||||
* [redmine_reporting](https://alphanodes.com/redmine-reporting)
|
* [redmine_reporting](https://alphanodes.com/redmine-reporting)
|
||||||
* [redmine_servicedesk](https://alphanodes.com/redmine-servicedesk)
|
* [redmine_servicedesk](https://alphanodes.com/redmine-servicedesk)
|
||||||
* [redmine_sudo](https://github.com/alphanodes/redmine_sudo)
|
* [redmine_sudo](https://github.com/alphanodes/redmine_sudo)
|
||||||
* [redmine_wki_guide](https://alphanodes.com/redmine-wiki-guide)
|
* [redmine_wiki_guide](https://alphanodes.com/redmine-wiki-guide)
|
||||||
|
|
||||||
If you know other plugins, which are using *additionals*, please let us know or create a [PR](https://github.com/alphanodes/additionals/pulls).
|
If you know other plugins, which are using *additionals*, please let us know or create a [PR](https://github.com/alphanodes/additionals/pulls).
|
||||||
|
|
||||||
|
9
app/overrides/wiki_date_index.rb
Normal file
9
app/overrides/wiki_date_index.rb
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module WikiDateIndex
|
||||||
|
Deface::Override.new virtual_path: 'wiki/date_index',
|
||||||
|
name: 'reporting-add-wiki-index-pdf-options-modal',
|
||||||
|
insert_before: 'erb[silent]:contains("content_for :header_tags")',
|
||||||
|
original: '991dfe298b3aac07f291fcbabaebbd32b0cec720',
|
||||||
|
partial: 'hooks/view_wiki_date_index_bottom'
|
||||||
|
end
|
9
app/overrides/wiki_index.rb
Normal file
9
app/overrides/wiki_index.rb
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
module WikiIndex
|
||||||
|
Deface::Override.new virtual_path: 'wiki/index',
|
||||||
|
name: 'reporting-add-wiki-index-pdf-options-modal',
|
||||||
|
insert_before: 'erb[silent]:contains("content_for :header_tags")',
|
||||||
|
original: '991dfe298b3aac07f291fcbabaebbd32b0cec720',
|
||||||
|
partial: 'hooks/view_wiki_index_bottom'
|
||||||
|
end
|
1
app/views/hooks/_view_wiki_date_index_bottom.html.slim
Normal file
1
app/views/hooks/_view_wiki_date_index_bottom.html.slim
Normal file
@ -0,0 +1 @@
|
|||||||
|
= call_hook :view_wiki_date_index_bottom, pages: @pages
|
1
app/views/hooks/_view_wiki_index_bottom.html.slim
Normal file
1
app/views/hooks/_view_wiki_index_bottom.html.slim
Normal file
@ -0,0 +1 @@
|
|||||||
|
= call_hook :view_wiki_index_bottom, pages: @pages
|
@ -232,17 +232,6 @@ h2#page-title.live-search input {
|
|||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tooltips */
|
|
||||||
.ui-tooltip {
|
|
||||||
background: #000;
|
|
||||||
color: #fff;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.85;
|
|
||||||
padding: 8px;
|
|
||||||
max-width: inherit;
|
|
||||||
box-shadow: 0 0 6px #888;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.macro-box {
|
div.macro-box {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user