Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
6e82ead6
Commit
6e82ead6
authored
Nov 16, 2016
by
Phil Höfer
Browse files
Quicktip fixes
parent
b54f8003
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
public/css/themes/default.css
View file @
6e82ead6
...
@@ -6672,7 +6672,19 @@ button.close {
...
@@ -6672,7 +6672,19 @@ button.close {
display
:
none
!important
;
display
:
none
!important
;
}
}
}
}
details
summary
::-webkit-details-marker
{
summary
::-webkit-details-marker
{
display
:
none
;
}
summary
::-moz-details-marker
{
display
:
none
;
}
summary
::-ms-details-marker
{
display
:
none
;
}
summary
::-o-details-marker
{
display
:
none
;
}
summary
::details-marker
{
display
:
none
;
display
:
none
;
}
}
summary
{
summary
{
...
...
public/css/themes/default.css.map
View file @
6e82ead6
This diff is collapsed.
Click to expand it.
resources/assets/less/metager/base.less
View file @
6e82ead6
details summary::-webkit-details-marker {
display:none;
summary::-webkit-details-marker { display:none; }
}
summary::-moz-details-marker { display:none; }
summary::-ms-details-marker { display:none; }
summary::-o-details-marker { display:none; }
summary::details-marker { display:none; }
summary {
summary {
cursor: pointer;
cursor: pointer;
...
...
resources/views/quicktip.blade.php
View file @
6e82ead6
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
@endif
@endif
<div
class=
"media-body"
>
<div
class=
"media-body"
>
<h2
class=
"qtheader"
><a
href=
"{{ $mq['URL'] }}"
target=
"_blank"
rel=
"noopener"
>
{{ $mq['title'] }}
</a></h2>
<h2
class=
"qtheader"
><a
href=
"{{ $mq['URL'] }}"
target=
"_blank"
rel=
"noopener"
>
{{ $mq['title'] }}
</a></h2>
<div>
{!! $mq['
descr
'] !!}
</div>
<div>
{!! $mq['
summary
'] !!}
</div>
</div>
</div>
@if( isset($mq['details']) )
@if( isset($mq['details']) )
<div
class=
"media-right"
>
<div
class=
"media-right"
>
...
@@ -40,4 +40,4 @@
...
@@ -40,4 +40,4 @@
</div>
</div>
@endforeach
@endforeach
</body>
</body>
</html>
</html>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment