Skip to content

Commit

Permalink
CSS changes
Browse files Browse the repository at this point in the history
  • Loading branch information
a85 committed Apr 17, 2012
1 parent 7c8e4f6 commit c35ca10
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
5 changes: 4 additions & 1 deletion chrome/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -597,11 +597,14 @@ li .right {

#sidebarFooter {
background-color: #000;
color: #fff;
font-size: 11px;
font-weight: bold;
position: fixed;
bottom: 0;
width: 350px;
height: 20px;
opacity: 0.5;
opacity: 0.8;
z-index: 50;
text-align: center;
padding: 5px 0 5px 0;
Expand Down
12 changes: 4 additions & 8 deletions chrome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@
<body>
<div id="container" class="clearfix">
<div id="sidebarFooter">
<a data-toggle="modal" id="spreadTheWord" href="#modalSpreadTheWord">
Like Postman? Help make it better!
</a>
Help make Postman better!
</div>
<div id="sidebar">
<div id="header" class="clearfix">
Expand All @@ -61,7 +59,7 @@
<a href="http://www.twitter.com/postmanclient"
rel="tooltip" target="_blank"
data-original-title="Get Postman updates and
API tips"
API tips on Twitter"
data-placement="bottom">
<img src="img/twitter-icon.png"/>
</a>
Expand Down Expand Up @@ -341,9 +339,7 @@ <h5 id="requestName"></h5>
id="addToCollection"
href="#formModalAddToCollection"
data-toggle="modal" data-backdrop="static"
data-keyboard="true">
Add to collection
</button>
data-keyboard="true">Add to collection</button>
<button class="btn" id="requestActionsReset">Reset</button>
</div>
</div>
Expand Down Expand Up @@ -538,7 +534,7 @@ <h3>Add request to a collection</h3>
</form>
</div>
<div class="modal-footer">
<a href="javascript:void(0);" class="btn btn-primary"></a>
<a href="javascript:void(0);" class="btn btn-primary">Add to collection</a>
<a href="javascript:void(0);" data-dismiss="modal" class="btn btn-secondary">Cancel</a>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions chrome/js/requester.js
Original file line number Diff line number Diff line change
Expand Up @@ -3021,6 +3021,7 @@ postman.envManager = {

$('#environments-list').on("click", ".environment-action-delete", function () {
var id = $(this).attr('data-id');
$('a[rel="tooltip"]').tooltip('hide');
postman.envManager.deleteEnvironment(id);
});

Expand Down

0 comments on commit c35ca10

Please sign in to comment.