Simple CSS changes to help with lower width screens such as Surface tablet
This commit is contained in:
parent
f129693942
commit
1e43eac600
|
@ -1,11 +1,11 @@
|
||||||
<div class='admin-controls'>
|
<div class='admin-controls'>
|
||||||
<div class='span15 search controls'>
|
<div class='search controls'>
|
||||||
<label>
|
<label>
|
||||||
{{view Ember.Checkbox checkedBinding="controller.onlyOverridden"}}
|
{{view Ember.Checkbox checkedBinding="controller.onlyOverridden"}}
|
||||||
{{i18n admin.site_settings.show_overriden}}
|
{{i18n admin.site_settings.show_overriden}}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class='span5 controls'>
|
<div class='search controls'>
|
||||||
{{view Discourse.TextField valueBinding="controller.filter" placeholderKey="type_to_filter"}}
|
{{view Discourse.TextField valueBinding="controller.filter" placeholderKey="type_to_filter"}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
<a href="/admin/users/{{unbound username_lower}}">{{avatar this imageSize="small"}}</a>
|
<a href="/admin/users/{{unbound username_lower}}">{{avatar this imageSize="small"}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td><a href="/admin/users/{{unbound username_lower}}">{{unbound username}}</a></td>
|
<td><a href="/admin/users/{{unbound username_lower}}">{{unbound username}}</a></td>
|
||||||
<td>{{unbound email}}</td>
|
<td>{{shorten email}}</td>
|
||||||
<td>{{{unbound last_emailed_age}}}</td>
|
<td>{{{unbound last_emailed_age}}}</td>
|
||||||
<td>{{{unbound last_seen_age}}}</td>
|
<td>{{{unbound last_seen_age}}}</td>
|
||||||
<td>{{{unbound topics_entered}}}</td>
|
<td>{{{unbound topics_entered}}}</td>
|
||||||
|
|
|
@ -67,12 +67,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.search {
|
.search {
|
||||||
|
float: right;
|
||||||
|
margin-left: 10px;
|
||||||
label {
|
label {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
input[type=text] {
|
|
||||||
float: right;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue