shrink buttons for smaller screens

This commit is contained in:
Matthew Scragg 2014-09-26 11:58:06 -05:00
vanhempi 8f6823676a
commit e7e2ecfc4d
3 muutettua tiedostoa jossa 10 lisäystä ja 43 poistoa

Näytä tiedosto

@ -68,45 +68,6 @@
margin:0;
}
/*
#preview {
overflow: auto;
position: absolute;
height: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
padding: 20px;
border: 1px solid #EEE;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-flex: 1;
-moz-box-flex: 1;
-ms-box-flex: 1;
-o-box-flex: 1;
box-flex: 1;
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
#editor {
position: absolute;
height: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
font-family: Inconsolata, monospace;
font-size: 1.1em;
line-height: 1.3em;
}
*/
.ace_gutter-cell {
font-size: 1em;
line-height: 1em;

Näytä tiedosto

@ -52,7 +52,7 @@
<input id="page-message" type="text" class="form-control input-sm" name="page-message" placeholder="Comment" value="" />
</div>
<div class="col-md-6 col-xs-4">
<div class="col-md-6 col-xs-4">
<div class="pull-right">
<button class="btn btn-default btn-sm" id="start-togetherjs" type="button"
@ -94,9 +94,15 @@
<li><a tabindex="-1" href="#" data-value="ace/theme/vibrant_ink" >Vibrant Ink</a></li>
</ul>
{% if name in config.LOCKED %}
<a class="btn btn-danger btn-sm"><i class="fa fa-lock"></i> Locked</a>
<a class="btn btn-danger btn-sm">
<i class="fa fa-lock"></i>
<span class="hidden-xs">Locked</span>
</a>
{% else %}
<a id="save-native" class="btn btn-primary btn-sm"><i class="fa fa-save"></i> Save</a>
<a id="save-native" class="btn btn-primary btn-sm">
<i class="fa fa-save"></i>
<span class="hidden-xs">Save</span>
</a>
{% endif %}
</div>
</div>

Näytä tiedosto

@ -8,7 +8,7 @@ with open('README.md') as f:
with open('requirements.txt') as f:
required = f.read().splitlines()
VERSION = '0.2.0'
VERSION = '0.2.1'
CLASSIFIERS = [
'Intended Audience :: Developers',