mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
Fix some night mode colors
We have some issues with night mode and the font color. This should fix this in the permission table and the delete node modal. As well as some picture styling. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
4e38d1836e
commit
1de8160008
3 changed files with 15 additions and 2 deletions
|
@ -310,7 +310,16 @@ body.night{
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.night .dropdown-menu{
|
||||
.night .dropdown-menu > li > a {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
.night .dropdown-menu > li > a:focus,
|
||||
.night .dropdown-menu > li > a:hover {
|
||||
color: #262626
|
||||
}
|
||||
|
||||
.night .dropdown-menu {
|
||||
background: #222;
|
||||
}
|
||||
|
||||
|
|
|
@ -214,3 +214,7 @@
|
|||
.markdown-body figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
.markdown-body img {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
|
|
@ -233,7 +233,7 @@
|
|||
</button>
|
||||
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
||||
</div>
|
||||
<div class="modal-body" style="color:black;">
|
||||
<div class="modal-body">
|
||||
<h5 class="ui-delete-modal-msg"><%= __('Do you really want to delete this note?') %></h5>
|
||||
<strong class="ui-delete-modal-item"><%= __('All users will lose their connection.') %></strong>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue