a little styling
This commit is contained in:
parent
1ab46b5070
commit
45ee555646
@ -1,4 +1,16 @@
|
|||||||
body {
|
body {
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
width: 850px;
|
width: calc(100% - 20px);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 769px) {
|
||||||
|
body { width: 750px; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 900px) {
|
||||||
|
body { width: 850px; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1100px) {
|
||||||
|
body { width: 1000px; }
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
.passwd {
|
.passwd {
|
||||||
width: 20em;
|
min-width: 12em;
|
||||||
|
font-family: monospace;
|
||||||
|
|
||||||
a,
|
a,
|
||||||
i {
|
i {
|
||||||
|
@ -1,11 +1,46 @@
|
|||||||
table {
|
table {
|
||||||
|
// border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th,
|
||||||
|
td {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
thead {
|
||||||
padding: 5px 0;
|
th {
|
||||||
|
background-color: #888;
|
||||||
|
border: 1px solid #888;
|
||||||
|
color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
th:first-of-type { border-radius: 5px 0 0 0; }
|
||||||
|
th:last-of-type { border-radius: 0 5px 0 0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody {
|
||||||
|
tr:nth-of-type(odd) {
|
||||||
|
td {
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
td:first-of-type { border-left: 1px solid #888;}
|
||||||
|
td:last-of-type { border-right: 1px solid #888;}
|
||||||
|
tr:last-of-type {
|
||||||
|
td {
|
||||||
|
border-bottom: 1px solid #888;
|
||||||
|
|
||||||
|
&:first-of-type {
|
||||||
|
border-radius: 0 0 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-of-type {
|
||||||
|
border-radius: 0 0 5px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
<div class="field" data-id="genpass">
|
<div class="field" data-id="genpass">
|
||||||
<%= f.label :password %>
|
<%= f.label :password %>
|
||||||
<%= f.text_field :password %>
|
<%= f.text_field :password, class: "passwd" %>
|
||||||
<%= link_to 'Generate', genpass_url, remote: true %>
|
<%= link_to 'Generate', genpass_url, remote: true %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -28,7 +28,11 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
<span>********</span>
|
<span>********</span>
|
||||||
</td>
|
</td>
|
||||||
<td><%= account.contact_email %></td>
|
<td>
|
||||||
|
<a href="mailto: <%= account.contact_email %>">
|
||||||
|
<%= account.contact_email %>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
<td><%= link_to 'Show', account %></td>
|
<td><%= link_to 'Show', account %></td>
|
||||||
<td><%= link_to 'Edit', edit_account_path(account) %></td>
|
<td><%= link_to 'Edit', edit_account_path(account) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user