summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-11-01 00:03:34 -0400
committerMalf Furious <m@lfurio.us>2018-11-01 00:03:34 -0400
commit61d5b3e37b4dc6da4f7da48751b741ad49245cb1 (patch)
treea64f867a640b1905f687ea15325e7a21043661cd
parentcd6a58c4dd233109e0ccddd42e6b636391845036 (diff)
downloadscrott-61d5b3e37b4dc6da4f7da48751b741ad49245cb1.tar.gz
scrott-61d5b3e37b4dc6da4f7da48751b741ad49245cb1.zip
Update issue message submit buttons
I'm going to be adding another button down here in the btn-group (more later). So to make room, I'm removing the text on these buttons, leaving only the icons. The text will instead be a tooltip, visible when the button is hovered. In the case of the 'Close issue' button, it is changed from btn-success to btn-default. I will tweak colors once this portion of the UI matures. For now, I don't want the rainbow in my face. Signed-off-by: Malf Furious <m@lfurio.us>
-rw-r--r--app/view/issue.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/view/issue.php b/app/view/issue.php
index 2d781ba..a0e2535 100644
--- a/app/view/issue.php
+++ b/app/view/issue.php
@@ -115,12 +115,12 @@ require_once "class/issue.class.php";
<?=\formctrl\textarea( "New message", "mesg", 5 )?>
<div class="btn-group pull-right">
- <button type="submit" name="input[postMesg]" class="btn btn-primary">
- <span class="glyphicon glyphicon-envelope"></span> Post message
+ <button type="submit" name="input[postMesg]" class="btn btn-primary" title="Post message">
+ <span class="glyphicon glyphicon-envelope"></span>
</button>
- <button type="submit" name="input[closeIssue]" class="btn btn-success">
- <span class="glyphicon glyphicon-ok"></span> Close issue
+ <button type="submit" name="input[closeIssue]" class="btn btn-default" title="Close issue">
+ <span class="glyphicon glyphicon-ok"></span>
</button>
</div>