From e73743453e7743d51cb7ac2958f837f55edfef65 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 24 Sep 2016 12:59:12 +0500 Subject: [PATCH 1/2] css: display: table, table-row, table-cell --- sass/_display.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sass/_display.scss b/sass/_display.scss index 4fdf44c..8cb63db 100644 --- a/sass/_display.scss +++ b/sass/_display.scss @@ -2,6 +2,9 @@ -----------------------------------------------------------------------------*/ [display~=initial] { display: initial !important } +[display~=table] { display: table } +[display~=table-cell] { display: table-cell } +[display~=table-row] { display: table-row } [display~=hidden], [hidden] { display: none } [display~=visible] { visibility: visible } [display~=insivible] { visibility: hidden } From 075f29a0615f9519f59c20562fc661e4a03e081a Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 24 Sep 2016 13:38:29 +0500 Subject: [PATCH 2/2] css: display: table, table-row, table-cell --- sass/_display.scss | 6 +++--- sass/_grid.scss | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/sass/_display.scss b/sass/_display.scss index 8cb63db..ff6eb3f 100644 --- a/sass/_display.scss +++ b/sass/_display.scss @@ -2,9 +2,9 @@ -----------------------------------------------------------------------------*/ [display~=initial] { display: initial !important } -[display~=table] { display: table } -[display~=table-cell] { display: table-cell } -[display~=table-row] { display: table-row } +[display~=table] { display: table !important } +[display~=table-cell] { display: table-cell !important } +[display~=table-row] { display: table-row !important } [display~=hidden], [hidden] { display: none } [display~=visible] { visibility: visible } [display~=insivible] { visibility: hidden } diff --git a/sass/_grid.scss b/sass/_grid.scss index f3962f5..be89893 100644 --- a/sass/_grid.scss +++ b/sass/_grid.scss @@ -14,7 +14,7 @@ [cols~='9'] { width: 75%; } [cols~='10'] { width: 83.33333%; } [cols~='11'] { width: 91.66667%; } -[cols~='12'] { width: 100%; } +[cols~='12'],[width~="full"] { width: 100%; } /* =Grid @@ -32,3 +32,6 @@ [grid~="8"] > * { width:12.5% } [grid~="9"] > * { width:11.111111111% } [grid~="10"] > * { width:10% } + +/* =width +-----------------------------------------------------------------------------*/ \ No newline at end of file