Skip to content

Commit

Permalink
Fix read-only-mode class property order
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmj committed Sep 27, 2018
1 parent ef23361 commit 76613d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions assets/css/base/_general.scss
Expand Up @@ -162,9 +162,9 @@ input[type="checkbox"] {
}

.read-only-mode {
color: #721c24;
background-color: #f8d7da;
padding: 10px;
font-weight: bold;
font-size: 1.2em;
font-weight: bold;
color: #721c24;
background-color: #f8d7da;
}
3 changes: 2 additions & 1 deletion lib/hexpm/release_tasks.ex
Expand Up @@ -68,6 +68,7 @@ defmodule Hexpm.ReleaseTasks do
end

defp start_app() do
IO.puts("Starting app...")
Application.put_env(:phoenix, :serve_endpoints, false)
Application.put_env(:hexpm, :topologies, [])
{:ok, _} = Application.ensure_all_started(:hexpm)
Expand All @@ -89,7 +90,7 @@ defmodule Hexpm.ReleaseTasks do
end

defp stop() do
IO.puts("Success!")
IO.puts("Stopping...")
:init.stop()
end

Expand Down
2 changes: 0 additions & 2 deletions lib/hexpm/repo.ex
Expand Up @@ -69,8 +69,6 @@ defmodule Hexpm.RepoBase do
registry: 1
}

# TODO: certs

def init(_reason, opts) do
if url = System.get_env("HEXPM_DATABASE_URL") do
pool_size_env = System.get_env("HEXPM_DATABASE_POOL_SIZE")
Expand Down

0 comments on commit 76613d4

Please sign in to comment.