Merge pull request #884 from SISheogorath/fix/nightMode
Fix some night mode colors
This commit is contained in:
commit
762cff677c
4 changed files with 17 additions and 4 deletions
|
@ -310,7 +310,16 @@ body.night{
|
||||||
overflow: hidden;
|
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;
|
background: #222;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -214,3 +214,7 @@
|
||||||
.markdown-body figure {
|
.markdown-body figure {
|
||||||
margin: 1em 40px;
|
margin: 1em 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown-body img {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
|
@ -233,7 +233,7 @@
|
||||||
</button>
|
</button>
|
||||||
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
||||||
</div>
|
</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>
|
<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>
|
<strong class="ui-delete-modal-item"><%= __('All users will lose their connection.') %></strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -168,7 +168,7 @@
|
||||||
</button>
|
</button>
|
||||||
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body" style="color:black;">
|
<div class="modal-body">
|
||||||
<h5 class="ui-delete-history-modal-msg"></h5>
|
<h5 class="ui-delete-history-modal-msg"></h5>
|
||||||
<strong class="ui-delete-history-modal-item"></strong>
|
<strong class="ui-delete-history-modal-item"></strong>
|
||||||
</div>
|
</div>
|
||||||
|
@ -188,7 +188,7 @@
|
||||||
</button>
|
</button>
|
||||||
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
<h4 class="modal-title" id="myModalLabel"><%= __('Are you sure?') %></h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body" style="color:black;">
|
<div class="modal-body">
|
||||||
<h5 class="ui-delete-user-modal-msg"><%= __('Do you really want to delete your user account?') %></h5>
|
<h5 class="ui-delete-user-modal-msg"><%= __('Do you really want to delete your user account?') %></h5>
|
||||||
<strong class="ui-delete-user-modal-item"><%= __('This will delete your account, all notes that are owned by you and remove all references to your account from other notes.') %></strong>
|
<strong class="ui-delete-user-modal-item"><%= __('This will delete your account, all notes that are owned by you and remove all references to your account from other notes.') %></strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue