Skip to content

Commit

Permalink
Moved the sales static files to a static folder inside the app sales.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbdavide committed Oct 10, 2017
1 parent 9fe4137 commit f520fe4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions app/static/css/styles.css → sales/static/css/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.input-right {
text-align: right;
}

.label {
font-size: 13px;
}
8 changes: 4 additions & 4 deletions sales/templates/sales/register.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Ingresar registro</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/icons.css">
<link rel="stylesheet" type="text/css" href="/static/css/styles.css">
<link rel="stylesheet" type="text/css" href="/static/css/icons.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
</head>
<body>
Expand Down Expand Up @@ -36,11 +36,11 @@ <h3>Producto</h3>
<label for="product-amount">Cantidad: </label>
<div class="input-group">
<button type="button" id="add_product" class="btn btn-danger">
<span class="icon-minus"></span>
<span class="icon-minus label"></span>
</button>
<input type="text" class="form-control input-right" id="amount" placeholder="0" readonly>
<button type="button" id="remove_product" class="btn btn-success">
<span class="icon-plus"></span>
<span class="icon-plus label"></span>
</button>
</div>
</div>
Expand Down

0 comments on commit f520fe4

Please sign in to comment.