Skip to content
Snippets Groups Projects
Commit 1c9a87e5 authored by Jared Hancock's avatar Jared Hancock
Browse files

Fix title hovers and styling of quick edit buttons

parent b5525a7e
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ if ($ext_id && $note->ext_id != $ext_id) { ?> ...@@ -11,7 +11,7 @@ if ($ext_id && $note->ext_id != $ext_id) { ?>
<?php } <?php }
if (isset($show_options) && $show_options) { ?> if (isset($show_options) && $show_options) { ?>
<div class="options"> <div class="options">
<a href="#" class="action edit-note no-pjax" title="edit"><i class="icon-edit"></i></a> <a href="#" class="action edit-note no-pjax" title="edit"><i class="icon-pencil"></i></a>
<a href="#" class="action save-note no-pjax" style="display:none" title="save"><i class="icon-save"></i></a> <a href="#" class="action save-note no-pjax" style="display:none" title="save"><i class="icon-save"></i></a>
<a href="#" class="action cancel-edit no-pjax" style="display:none" title="undo"><i class="icon-undo"></i></a> <a href="#" class="action cancel-edit no-pjax" style="display:none" title="undo"><i class="icon-undo"></i></a>
<a href="#" class="action delete no-pjax" title="delete"><i class="icon-trash"></i></a> <a href="#" class="action delete no-pjax" title="delete"><i class="icon-trash"></i></a>
......
...@@ -45,8 +45,8 @@ if ($info['error']) { ...@@ -45,8 +45,8 @@ if ($info['error']) {
<div class="tab_content" id="info-tab"> <div class="tab_content" id="info-tab">
<div class="floating-options"> <div class="floating-options">
<a href="#" id="edituser" class="action" title="edit"><i class="icon-edit"></i></a> <a href="#" id="edituser" class="action" title="Edit"><i class="icon-edit"></i></a>
<a href="users.php?id=<?php echo $user->getId(); ?>" title="manage" <a href="users.php?id=<?php echo $user->getId(); ?>" title="Manage User"
class="action no-pjax"><i class="icon-share"></i></a> class="action no-pjax"><i class="icon-share"></i></a>
</div> </div>
<table class="custom-info"> <table class="custom-info">
...@@ -67,7 +67,7 @@ if ($info['error']) { ...@@ -67,7 +67,7 @@ if ($info['error']) {
<div class="tab_content" id="organization-tab" style="display:none"> <div class="tab_content" id="organization-tab" style="display:none">
<div class="floating-options"> <div class="floating-options">
<a href="orgs.php?id=<?php echo $org->getId(); ?>" title="manage" <a href="orgs.php?id=<?php echo $org->getId(); ?>" title="Manage Organization"
class="action no-pjax"><i class="icon-share"></i></a> class="action no-pjax"><i class="icon-share"></i></a>
</div> </div>
<table class="custom-info" width="100%"> <table class="custom-info" width="100%">
......
...@@ -1676,17 +1676,28 @@ tr.disabled th { ...@@ -1676,17 +1676,28 @@ tr.disabled th {
} }
.quicknote a.action, .quicknote a.action,
.floating-options a.action { .floating-options a.action {
padding: 2px 4px; box-sizing: content-box;
margin: 1px; -moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
display: inline-block;
width: 15px;
text-align: center;
padding: 2px 2px;
color: black !important; color: black !important;
background-color: #eee;
background-color: rgba(0, 0, 0, 0.05);
border-width: 1px;
border-style: solid;
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.1);
border-radius: 4px;
} }
.quicknote a.action:hover, .quicknote a.action:hover,
.floating-options a.action:hover { .floating-options a.action:hover {
text-decoration: none; text-decoration: none;
border: 1px solid #ff9100; border-color: #ff9100;
background-color: rgba(255, 145, 0, 0.05);
border-radius: 3px; border-radius: 3px;
color: #ff9100 !important;
margin: 0;
} }
#new-note { #new-note {
margin-top: 10px; margin-top: 10px;
...@@ -1717,7 +1728,7 @@ tr.disabled th { ...@@ -1717,7 +1728,7 @@ tr.disabled th {
display: inline-block; display: inline-block;
position: absolute; position: absolute;
right: 0; right: 0;
top: 10px; top: 5px;
padding-right: 5px; padding-right: 5px;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment