-
diff --git a/admin/scss/grid.scss b/admin/scss/grid.scss
index 7a5f8db1..2a2fb48a 100644
--- a/admin/scss/grid.scss
+++ b/admin/scss/grid.scss
@@ -15,7 +15,8 @@ $gutter-width: 20px;
// Break point
$screen-tablet: 768px;
-$screen-desktop: 992px; // Not implemented yet
+$screen-desktop: 992px;
+$screen-wide: 1200px;
// Column group
.col-group {
@@ -136,6 +137,45 @@ $screen-desktop: 992px; // Not implemented yet
}
+/*
+ * Widescreen and up
+ */
+
+@media (min-width: $screen-wide) {
+ .container {
+ max-width: $screen-wide - ($gutter-width * 2);
+ }
+
+ // Colunms
+ @for $index from 1 through $columns {
+ .col-wd-#{$index} {
+ width: $column-width * $index;
+ }
+ }
+
+ // Offset
+ @for $index from 0 through $columns {
+ .col-offset-#{$index} {
+ margin-left: $column-width * $index;
+ }
+ }
+
+ // Pull
+ @for $index from 0 through $columns {
+ .col-pull-#{$index} {
+ right: $column-width * $index;
+ }
+ }
+
+ // Push
+ @for $index from 0 through $columns {
+ .col-push-#{$index} {
+ left: $column-width * $index;
+ }
+ }
+}
+
+
// Clearfix
.clearfix {
zoom: 1;
diff --git a/admin/write-post.php b/admin/write-post.php
index 949fc470..f17c2852 100644
--- a/admin/write-post.php
+++ b/admin/write-post.php
@@ -18,11 +18,11 @@ Typecho_Widget::widget('Widget_Contents_Post_Edit')->to($post);
Typecho_Common::url('/action/contents-post-edit?do=deleteDraft&cid=' . $post->cid, $options->index)); ?>
-
+
-
+
-
+
content($post); ?>
@@ -79,8 +79,8 @@ Typecho_Widget::widget('Widget_Contents_Post_Edit')->to($post);