diff options
author | Azul <azul@riseup.net> | 2016-03-24 11:28:56 +0100 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-05-02 08:28:43 -0300 |
commit | 431ceda256c91980a7c3ac807548eb7c776a09f0 (patch) | |
tree | 58146d3b28f5e859d7680223c4784194bc22ac56 /app/assets | |
parent | afc1daac6745cd6b4543d2b542c6f03cfc32e1eb (diff) |
upgrade: bootstrap 3 does not have -responsive
We can also remove the backports now. :)
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/application.scss | 3 | ||||
-rw-r--r-- | app/assets/stylesheets/backport.scss | 24 |
2 files changed, 0 insertions, 27 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 9cd3a55..e6eeda2 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -10,9 +10,6 @@ // import bootstrap. // @import "bootstrap"; -@import "bootstrap-responsive"; -// backport bootstrap 3.2 features -@import "backport"; // // LEAP web app specific overrides diff --git a/app/assets/stylesheets/backport.scss b/app/assets/stylesheets/backport.scss deleted file mode 100644 index cadb035..0000000 --- a/app/assets/stylesheets/backport.scss +++ /dev/null @@ -1,24 +0,0 @@ -// -// Backporting styles from bootstrap 3.2 -// - - -// List options - -// Unstyled keeps list items block level, just removes default browser padding and list-style -.list-unstyled { - padding-left: 0; - list-style: none; -} - -// Inline turns list items into inline-block -.list-inline { - @extend .list-unstyled; - margin-left: -5px; - - > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; - } -} |