Skip to content

Instantly share code, notes, and snippets.

@skammer
Last active August 29, 2015 14:06
Show Gist options
  • Save skammer/2f4d81d08f3669e93d92 to your computer and use it in GitHub Desktop.
Save skammer/2f4d81d08f3669e93d92 to your computer and use it in GitHub Desktop.

Revisions

  1. skammer revised this gist Sep 11, 2014. 1 changed file with 4 additions and 8 deletions.
    12 changes: 4 additions & 8 deletions gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -16,15 +16,11 @@ html, body {
    -ms-flex-direction: column;
    flex-direction: column;
    }

    #calendar {
    -webkit-flex-basis: 230px;
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
    min-height: 140px
    }

    #options {
    -webkit-flex-basis: 120px;
    -ms-flex-preferred-size: 120px;
    flex-basis: 120px;
    min-height: 65px
    }
  2. skammer revised this gist Sep 11, 2014. 1 changed file with 17 additions and 7 deletions.
    24 changes: 17 additions & 7 deletions gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -1,20 +1,30 @@

    html, body {
    height: 100%;
    }

    #sidebar {
    position: relative;
    float: left;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }

    #calendar {
    min-height: 140px
    -webkit-flex-basis: 230px;
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
    }

    #options {
    min-height: 65px
    -webkit-flex-basis: 120px;
    -ms-flex-preferred-size: 120px;
    flex-basis: 120px;
    }
  3. skammer revised this gist Sep 10, 2014. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,4 @@

    html, body {
    height: 100%;
    }
    @@ -11,9 +12,9 @@ html, body {
    }

    #calendar {
    flex-basis: 230px;
    min-height: 140px
    }

    #options {
    flex-basis: 120px;
    min-height: 65px
    }
  4. skammer revised this gist Sep 10, 2014. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -11,9 +11,9 @@ html, body {
    }

    #calendar {
    flex-basis: 155px;
    flex-basis: 230px;
    }

    #options {
    flex-basis: 90px;
    flex-basis: 120px;
    }
  5. skammer revised this gist Sep 10, 2014. 1 changed file with 6 additions and 15 deletions.
    21 changes: 6 additions & 15 deletions gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -2,27 +2,18 @@ html, body {
    height: 100%;
    }

    #channels {
    #sidebar {
    position: relative;
    float: left;
    overflow-y: scroll;
    overflow-x: hidden;
    }

    #calendar, #options {
    background-color: #FAFAFA;
    position: fixed;
    width: 145px;
    height: 100%;
    display: flex;
    flex-direction: column;
    }

    #calendar {
    top: 0;
    flex-basis: 155px;
    }

    #options {
    top: 153px;
    }

    #channels ul {
    padding-top: 245px;
    flex-basis: 90px;
    }
  6. skammer revised this gist Sep 10, 2014. 1 changed file with 20 additions and 1 deletion.
    21 changes: 20 additions & 1 deletion gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,26 @@ html, body {
    }

    #channels {
    position: static;
    position: relative;
    float: left;
    overflow-y: scroll;
    overflow-x: hidden;
    }

    #calendar, #options {
    background-color: #FAFAFA;
    position: fixed;
    width: 145px;
    }

    #calendar {
    top: 0;
    }

    #options {
    top: 153px;
    }

    #channels ul {
    padding-top: 245px;
    }
  7. skammer created this gist Sep 10, 2014.
    9 changes: 9 additions & 0 deletions gistfile1.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    html, body {
    height: 100%;
    }

    #channels {
    position: static;
    float: left;
    overflow-y: scroll;
    }