discourse/app/assets/stylesheets/application/mobile.scss
Sam Saffron 70058c9ebe live reload bug
minor sanity check for phone
2013-02-20 16:11:56 +11:00

25 lines
504 B
SCSS

@media only screen
and (min-width : 320px)
and (max-width : 480px) {
// and (min-device-width : 320px)
// and (max-device-width : 480px) {
#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;
}
}
}
}