Skip to content

Commit

Permalink
Merge pull request #5448 from benjaoming/fix-button-wrap
Browse files Browse the repository at this point in the history
Add line breaks in buttons so text isn't cut
  • Loading branch information
benjaoming committed Apr 14, 2017
2 parents 0786c8c + 5b61330 commit 8bce7a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/installguide/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Bug fixes
* Print server address after ``kalite start`` :url-issue:`5441`
* Log everything from automatic initialization in ``kalite start`` and ``kalite manage setup`` :url-issue:`5408`
* Remove unused Django package installed in ``kalite/packages/dist`` :url-issue:`5419`
* Add line breaks in buttons so text isn't cut :url-issue:`5004`


Known issues
^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion kalite/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def get_pid():

listen_port = port or DEFAULT_LISTEN_PORT

# Timeout is 1 second, we don't want the status command to be slow
# Timeout is 3 seconds, we don't want the status command to be slow
conn = httplib.HTTPConnection("127.0.0.1", listen_port, timeout=3)
try:
conn.request("GET", PING_URL)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ form .input-group {
/* ===================================
Buttons
=================================== */
.btn
{
white-space: normal;
}

.btn-success {
background-color: @k-accent-color !important;
Expand Down

0 comments on commit 8bce7a7

Please sign in to comment.