discourse/app/assets/stylesheets/application/mobile.scss

24 lines
447 B
SCSS
Raw Normal View History

@media only screen
2013-02-20 00:11:41 -05:00
and (min-device-width : 320px)
2013-02-20 20:06:58 -05:00
and (max-device-width : 540px) {
#reply-control {
.toggle-preview { display:none; }
#reply-title { width: 250px; }
.wmd-controls {
#wmd-input {
width: 100%;
border-top: 0;
}
.preview-wrapper {
display: none;
}
.textarea-wrapper {
width: 100%;
}
.wmd-button-bar {
display: none;
}
}
}
}